/* =============================================
   MONGINIS FRANCHISE — CINEMATIC PREMIUM
   ============================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #ff2e79;
  --pink-dk: #e52468;
  --pink-glow: rgba(255, 46, 121, 0.15);
  --text: #111111;
  --text-2: #333333;
  --text-3: #666666;
  --text-4: #999999;
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --border: #e6e6e6;
  --dark: #0f0f0f;
  --dark-2: #181818;
  --dark-card: #1e1e1e;
  --green: #2e9e5a;
  --heading: 'Poppins', sans-serif;
  --body: 'DM Sans', sans-serif;
  --script: 'Great Vibes', cursive;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--body);
}

input,
select {
  font-family: var(--body);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}


/* =============================================
   REVEAL SYSTEM
   ============================================= */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.25, .46, .45, .94), transform 0.7s cubic-bezier(.25, .46, .45, .94);
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

.rv-left {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv-right {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv-left.vis,
.rv-right.vis {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger */
.stag>.rv:nth-child(1) {
  transition-delay: 0s;
}

.stag>.rv:nth-child(2) {
  transition-delay: 0.1s;
}

.stag>.rv:nth-child(3) {
  transition-delay: 0.2s;
}

.stag>.rv:nth-child(4) {
  transition-delay: 0.3s;
}

.stag>.rv:nth-child(5) {
  transition-delay: 0.4s;
}

.stag>.rv:nth-child(6) {
  transition-delay: 0.5s;
}


/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 38px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
}

.btn-pink:hover {
  background: var(--pink-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 46, 121, 0.2);
}

.btn-lg {
  padding: 19px 52px;
  font-size: 1rem;
}

.btn-white-inv {
  background: #fff;
  color: var(--pink);
}

.btn-white-inv:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Pulse animation for final CTA button */
@keyframes btnPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

.btn-pulse {
  animation: btnPulse 6s ease-in-out infinite;
}

.btn-pulse:hover {
  animation: none;
  transform: translateY(-2px);
}


/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 28px;
}

.header-logo img {
  height: 38px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--pink);
}

.header-phone svg {
  width: 15px;
  height: 15px;
}


/* =============================================
   HERO SLIDER
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 14s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.07);
  }
}

.hero-slide:nth-child(2) img {
  animation-delay: -7s;
}

/* Overlay — deeper for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.58) 45%,
      rgba(0, 0, 0, 0.38) 100%);
}


/* ---- Hero Content Container ---- */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 28px 160px;
}


/* ---- SLIDE CONTENT LAYER (Base) ---- */
.slide {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-1,
.slide-2 {
  padding: 120px 28px 180px;
}

/* Base text shadow for all slide text */
.slide h1,
.slide h2,
.slide p,
.slide .slide-1-tag,
.slide .slide-2-script-tag {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

/* =============================================
   SLIDE 1 — Business / Authority
   ============================================= */
.slide-1-tag {
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pink);
  margin-bottom: 18px;
  text-shadow: none !important;
}

.slide-1-heading {
  font-family: var(--heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.slide-1-heading-alt {
  font-family: var(--heading);
  font-size: 4.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.slide-1-heading .underline-word {
  position: relative;
  display: inline-block;
}

.slide-1.active .slide-1-heading .underline-word::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--pink);
  border-radius: 2px;
  transform-origin: left;
  animation: ulGrow 0.8s ease-out 0.9s forwards;
  transform: scaleX(0);
}

@keyframes ulGrow {
  to {
    transform: scaleX(1);
  }
}

.slide-1-sub {
  font-family: var(--heading);
  font-size: 1.12rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  line-height: 1.6;
}

/* Slide 1 Staggered Animation */
@keyframes slide1FadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.slide-1.active .s1-anim-1 {
  animation: slide1FadeUp 0.7s ease-out 0.15s forwards;
  opacity: 0;
}

.slide-1.active .s1-anim-2 {
  animation: slide1FadeUp 0.7s ease-out 0.3s forwards;
  opacity: 0;
}

.slide-1.active .s1-anim-3 {
  animation: slide1FadeUp 0.7s ease-out 0.45s forwards;
  opacity: 0;
}

.slide-1.active .s1-anim-4 {
  animation: slide1FadeUp 0.7s ease-out 0.6s forwards;
  opacity: 0;
}

.slide-1.active .s1-anim-5 {
  animation: slide1FadeUp 0.7s ease-out 0.75s forwards;
  opacity: 0;
}

.hero-btn-row {
  margin-top: 34px;
}


/* =============================================
   SLIDE 2 — Emotional / Brand 
   ============================================= */
.slide-2-script-tag {
  font-family: var(--script);
  font-size: 3.4rem;
  color: var(--pink);
  margin-bottom: 8px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0;
}

.slide-2-heading-block {
  opacity: 0;
  max-width: 650px;
}

.slide-2-heading {
  font-family: var(--heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.slide-2-type-wrap {
  font-family: var(--heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  min-height: 4.6rem;
}

/* Typewriter */
.typewriter {
  display: inline-block;
  border-right: 3px solid rgba(255, 255, 255, 0.7);
  animation: blink 0.75s step-end infinite;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 6px;
}

.typewriter.done {
  border-right-color: transparent;
  animation: none;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.slide-2-sub {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  max-width: 500px;
  line-height: 1.7;
}

/* Slide 2 Animations (Independent Fade) */
@keyframes slide2Fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-2.active .s2-anim-1 {
  animation: slide2Fade 0.6s ease-out 0.4s forwards;
}

.slide-2.active .s2-anim-2 {
  animation: slide2Fade 0.6s ease-out 0.6s forwards;
}

.s2-anim-3 {
  opacity: 0;
}

.slide-2.active .s2-anim-3 {
  animation: slide2Fade 0.6s ease-out 1.2s forwards;
}


/* ---- HERO NAV: Dots + Progress ---- */
.hero-nav {
  position: absolute;
  bottom: 42px;
  left: 28px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--pink);
  width: 48px;
}

.hero-progress {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.hero-progress-bar {
  height: 100%;
  background: var(--pink);
  animation: progressFill 6s linear;
}

@keyframes progressFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/* ---- SCROLL INDICATOR ---- */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: opacity 0.4s ease;
}

.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-hint span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}


/* =============================================
   FLOATING FORM CARD
   ============================================= */
.form-float {
  position: relative;
  z-index: 10;
  max-width: 1120px;
  margin: -110px auto 0;
  padding: 0 28px;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(24px);
  animation: formFloatIn 0.8s ease-out 0.5s forwards;
}

@keyframes formFloatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card {
  width: 400px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 36px 30px;
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.14),
    0 2px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.form-card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 4px;
}

.form-card .form-sub {
  font-size: 0.78rem;
  color: var(--text-4);
  text-align: center;
  margin-bottom: 22px;
}


/* ---- Floating Label Inputs ---- */
.fl {
  position: relative;
  margin-bottom: 14px;
}

.fl input,
.fl select {
  width: 100%;
  padding: 18px 14px 8px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.fl select {
  padding-top: 20px;
  padding-bottom: 10px;
}

.fl input:focus,
.fl select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 46, 121, 0.08);
}

.fl label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 0.84rem;
  color: var(--text-4);
  transition: all 0.2s ease;
  pointer-events: none;
}

.fl input:focus~label,
.fl input:not(:placeholder-shown)~label,
.fl select:focus~label,
.fl.has-val label {
  top: 8px;
  transform: translateY(0);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-go {
  width: 100%;
  background: var(--pink);
  color: #fff;
  font-family: var(--heading);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.form-go:hover {
  background: var(--pink-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 46, 121, 0.18);
}

.form-go:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-notes {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-notes span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-4);
}

.form-notes svg {
  width: 11px;
  height: 11px;
  color: var(--green);
  flex-shrink: 0;
}

.form-bottom-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-4);
  margin-top: 14px;
  line-height: 1.5;
}


/* =============================================
   SVG DIVIDER
   ============================================= */
.svg-divider {
  display: block;
  width: 100%;
  margin-top: -2px;
  line-height: 0;
}

.svg-divider svg {
  width: 100%;
  height: 48px;
  display: block;
}


/* =============================================
   METRICS SECTION
   ============================================= */
.metrics {
  padding: 72px 0;
  background: var(--bg);
}

.metrics-row {
  display: flex;
  justify-content: center;
  gap: 72px;
}

.metric {
  text-align: center;
}

.metric-num {
  font-family: var(--heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-4);
  margin-top: 6px;
}


/* =============================================
   SECTION SYSTEM
   ============================================= */
.sec {
  padding: 96px 0;
  position: relative;
}

.sec-alt {
  background: var(--bg-alt);
  background-image: url('/images/pattern-bg.png');
  background-size: 300px;
  background-repeat: repeat;
  background-blend-mode: overlay;
}

/* Very faint pattern overlay for alt sections */
.sec-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-alt);
  opacity: 0.96;
  pointer-events: none;
}

.sec-alt>.container {
  position: relative;
  z-index: 1;
}

.sec-tag {
  font-family: var(--heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}

.sec-title {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.sec-desc {
  font-size: 1rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 520px;
}

.sec-cta {
  margin-top: 48px;
}


/* =============================================
   WHY INVEST — ALTERNATING
   ============================================= */
.why-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.why-block:last-child {
  margin-bottom: 0;
}

.why-block.reverse {
  direction: rtl;
}

.why-block.reverse>* {
  direction: ltr;
}

.why-img {
  border-radius: 8px;
  overflow: hidden;
}

.why-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-img:hover img {
  transform: scale(1.03);
}

.why-text h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.why-text p {
  font-size: 0.92rem;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 20px;
}

.why-text .why-link {
  font-family: var(--heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.why-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.why-link:hover::after {
  width: 100%;
}


/* =============================================
   PRODUCTS
   ============================================= */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.prod-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.prod-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prod-item:hover img {
  transform: scale(1.04);
}

.prod-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 45%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}

.prod-item:hover .prod-over {
  opacity: 1;
}

.prod-over span {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}


/* =============================================
   INVESTMENT — DARK PREMIUM
   ============================================= */
.invest-sec {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.invest-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
}

.invest-card {
  flex: 1;
  text-align: center;
  padding: 48px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  transition: all 0.3s ease;
}

.invest-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.invest-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 46, 121, 0.25);
  box-shadow: 0 0 24px rgba(255, 46, 121, 0.06);
}

.invest-card:hover+.invest-card {
  border-left-color: rgba(255, 46, 121, 0.25);
}

.invest-lbl {
  font-family: var(--heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.invest-val {
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.invest-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
}

.invest-note {
  text-align: center;
  margin-top: 28px;
  font-family: var(--heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}


/* =============================================
   SUPPORT
   ============================================= */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.support-left .sec-desc {
  margin-top: 18px;
}

.sup-list {
  display: flex;
  flex-direction: column;
}

.sup-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s ease;
}

.sup-row:last-child {
  border-bottom: none;
}

.sup-row:hover {
  padding-left: 6px;
}

.sup-ico {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-top: 2px;
}

.sup-ico svg {
  width: 20px;
  height: 20px;
}

.sup-row h4 {
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.sup-row p {
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.55;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
}

.test-item blockquote {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
  padding-left: 16px;
  border-left: 2px solid var(--pink);
}

.test-item h5 {
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.test-item .t-city {
  font-size: 0.78rem;
  color: var(--text-3);
}

.test-meta {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.test-meta span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.01em;
}


/* =============================================
   PROCESS
   ============================================= */
.proc-row {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}

.proc-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 1px;
  background: var(--border);
}

.proc-step {
  flex: 1;
  text-align: center;
  z-index: 1;
  transition: transform 0.2s;
}

.proc-step:hover {
  transform: scale(1.02);
}

.proc-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pink);
  background: #fff;
}

.proc-step h4 {
  font-family: var(--heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.proc-step p {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.55;
  max-width: 210px;
  margin: 0 auto;
}


/* =============================================
   FAQ
   ============================================= */
.faq-wrap {
  max-width: 700px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--pink);
}

.faq-chev {
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: transform 0.3s;
}

.faq-chev svg {
  width: 18px;
  height: 18px;
  color: var(--text-4);
}

.faq-item.open .faq-chev {
  transform: rotate(180deg);
}

.faq-item.open .faq-chev svg {
  color: var(--pink);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 260px;
}

.faq-a p {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.7;
  padding-bottom: 20px;
}


/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: var(--pink);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/pattern-bg.png') center/300px repeat;
  opacity: 0.05;
  pointer-events: none;
}

.final-cta-in {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.final-cta>.container p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.final-cta .sm-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 18px;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 2px solid var(--pink);
  padding: 52px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo img {
  height: 32px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-tag {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--heading);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  display: block;
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}


/* =============================================
   STICKY / WHATSAPP / POPUP
   ============================================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--dark-2);
  padding: 11px 0;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-bar.show {
  transform: translateY(0);
}

.sticky-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.sticky-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.sticky-bar .btn {
  padding: 10px 26px;
  font-size: 0.8rem;
}

.wa-btn {
  position: fixed;
  bottom: 64px;
  right: 18px;
  z-index: 98;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s;
}

.wa-btn:hover {
  transform: scale(1.08);
}

.wa-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* Popup */
.pop-bg {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.pop-bg.on {
  opacity: 1;
  visibility: visible;
}

.pop-card {
  background: #fff;
  padding: 38px 32px;
  max-width: 420px;
  width: 92%;
  border-radius: 14px;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  transform: translateY(14px);
  transition: transform 0.3s;
}

.pop-bg.on .pop-card {
  transform: translateY(0);
}

.pop-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: var(--bg-alt);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.pop-x:hover {
  background: var(--border);
}

.pop-x svg {
  width: 14px;
  height: 14px;
  color: var(--text-3);
}

.pop-card h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pop-card>p {
  font-size: 0.84rem;
  color: var(--text-3);
  margin-bottom: 20px;
}

.pop-card .fl {
  text-align: left;
}


/* Form success */
.form-done {
  text-align: center;
  padding: 20px 0;
}

.form-done svg {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 10px;
}

.form-done h4 {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-done p {
  font-size: 0.84rem;
  color: var(--text-3);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {

  .slide-1-heading,
  .slide-1-heading-alt {
    font-size: 3.2rem;
  }

  .slide-2-script-tag {
    font-size: 3rem;
  }

  .slide-2-heading {
    font-size: 2.8rem;
  }

  .slide-2-type-wrap {
    font-size: 3.2rem;
    min-height: 4rem;
  }

  .form-card {
    width: 380px;
  }
}

@media (max-width: 768px) {
  .sec {
    padding: 72px 0;
  }

  .sec-title {
    font-size: 1.8rem;
  }

  .hero {
    height: 100vh;
    min-height: 680px;
  }

  .slide {
    padding: 100px 28px 160px;
    align-items: flex-start;
  }

  .slide-1-heading,
  .slide-1-heading-alt {
    font-size: 2.8rem;
  }

  .slide-2-script-tag {
    font-size: 2.6rem;
  }

  .slide-2-heading {
    font-size: 2.2rem;
  }

  .slide-2-type-wrap {
    font-size: 2.6rem;
    min-height: 3.5rem;
  }

  .slide-1-sub,
  .slide-2-sub {
    font-size: 1.05rem;
  }

  .scroll-hint {
    display: none;
  }

  .hero-nav {
    bottom: 32px;
  }

  .form-float {
    justify-content: center;
    margin-top: -80px;
  }

  .form-card {
    width: 100%;
    max-width: 420px;
  }

  .metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .metric-num {
    font-size: 2.4rem;
  }

  .why-block,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-block.reverse {
    direction: ltr;
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .invest-row {
    flex-direction: column;
  }

  .invest-card {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
  }

  .invest-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .invest-val {
    font-size: 2.4rem;
  }

  .test-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proc-row {
    flex-direction: column;
    gap: 40px;
  }

  .proc-row::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .sticky-label {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .btn-lg {
    padding: 16px 36px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .header-in {
    padding: 12px 20px;
  }

  .slide-1-heading,
  .slide-1-heading-alt {
    font-size: 2.2rem;
  }

  .slide-2-script-tag {
    font-size: 2.2rem;
    margin-bottom: 4px;
  }

  .slide-2-heading {
    font-size: 1.8rem;
  }

  .slide-2-type-wrap {
    font-size: 2.1rem;
    min-height: 2.8rem;
  }

  .slide {
    padding: 90px 20px 140px;
  }

  .form-card {
    padding: 28px 24px;
    border-radius: 12px;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .sec-title {
    font-size: 1.6rem;
  }

  .metric-num {
    font-size: 2.2rem;
  }

  .wa-btn {
    bottom: 72px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .pop-card {
    padding: 28px 24px;
  }

  .footer-grid {
    gap: 24px;
  }

  .container {
    padding: 0 20px;
  }
}