/* ===== TOKENS ===== */
:root {
  --orange: #ff6b1a;
  --orange-dark: #e85a0c;
  --orange-soft: #fff1e8;
  --orange-glow: rgba(255, 107, 26, 0.18);
  --ink: #1a140f;
  --ink-soft: #4a4138;
  --navy: #14213d;
  --navy-light: #1a2c52;
  --beige: #f3ecdf;
  --beige-light: #fbf7f1;
  --muted: #7a6f63;
  --white: #ffffff;
  --cream: #fffaf5;
  --line: #f0e4d8;
  --shadow: 0 20px 60px rgba(26, 20, 15, 0.08);
  --shadow-lg: 0 30px 80px rgba(255, 107, 26, 0.18);
  --radius: 24px;
  --radius-sm: 14px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --grad: linear-gradient(120deg, #ff6b1a, #ff9a3c);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(820px, 92%); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* ===== BUTTONS ===== */.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255,107,26,.28); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--orange-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.10); }
.btn-small { padding: 10px 22px; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo-img {
  height: 42px; width: auto; display: block; object-fit: contain;
}
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
.logo-accent { color: var(--orange); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; z-index: 110; }
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero-reels {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 46%, var(--cream) 100%);
  overflow: hidden;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 0 0;
  overflow: hidden;
  background: transparent;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.5; }
.blob-1 { width: 500px; height: 500px; background: var(--orange-glow); top: -160px; right: -100px; animation: float 12s infinite; }
.blob-2 { width: 380px; height: 380px; background: var(--orange-glow); bottom: -100px; left: -120px; animation: float 15s infinite reverse; }
.blob-3 { width: 200px; height: 200px; background: rgba(255,154,60,0.2); top: 40%; right: 30%; animation: float 18s infinite; }
.grain { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(#000 1px, transparent 1px); background-size: 24px 24px; }

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.hero-title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; text-align: center; }
.hero-sub { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; display: block; color: var(--ink); margin-top: 4px; white-space: nowrap; }
.hero-desc { max-width: 620px; margin: 24px auto; font-size: 1.15rem; color: var(--muted); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }

.hero-stats { display: none; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 24px 16px; display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--orange); }
.stat-plus, .stat-pct { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ===== MARQUEE ===== */
.marquee { background: var(--ink); color: #fff; padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: scroll 22s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.08em; padding-right: 40px; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
.section-desc { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ===== SERVICES / FEATURE SPLIT ===== */
.services { background: var(--beige-light); overflow: hidden; }
.feature-split {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 56px;
  align-items: stretch;
}

/* Left — feature list */
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-card {
  background: var(--beige);
  border-radius: 30px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.35s ease, transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.feature-card:hover { background: #ece2d0; }
.feature-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.feature-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  background: #fff;
  border-radius: 16px;
  transition: background 0.35s ease, color 0.35s ease;
}
.feature-body { flex: 1; }
.feature-body h3 { font-size: 1.4rem; font-weight: 700; }
.feature-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  height: 0;
  opacity: 0;
  overflow: hidden;
  will-change: height, opacity;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
}
.feature-arrow {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--navy);
  opacity: 0.35;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.feature-card:hover .feature-arrow { transform: translateX(4px); opacity: 0.7; }

.feature-active { background: var(--navy); }
.feature-active:hover { background: var(--navy-light); }
.feature-active .feature-icon { background: var(--beige); color: var(--navy); }
.feature-active .feature-body h3 { color: #ffffff; }
.feature-active .feature-body p { color: rgba(255,255,255,0.85); }
.feature-active .feature-desc { opacity: 1; margin-top: 6px; }
.feature-active .feature-arrow { opacity: 1; color: var(--orange); transform: none; }

/* Right — editorial bento */
.feature-bento {
  display: grid;
  grid-template-columns: 58% 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  height: 100%;
}
.bento-large, .bento-item {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.bento-large { min-height: 0; }
.bento-stack { display: flex; flex-direction: column; gap: 20px; }
.bento-item { flex: 1; min-height: 0; }
.feature-bento img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-bento { grid-template-columns: 55% 1fr; }
  .bento-large { min-height: 440px; }
}
@media (max-width: 720px) {
  .feature-split { gap: 34px; }
  .feature-bento { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-row: span 2; min-height: 0; }
  .bento-stack { height: 100%; }
  .feature-card { padding: 22px 24px; gap: 16px; }
}

/* ===== PARTNERS ===== */
.partners { background: var(--white); padding: 70px 0; overflow: hidden; }
.partners-head { text-align: center; margin-bottom: 44px; }
.partners-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.partners-marquee {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 28s linear infinite;
}
.partners-set { display: flex; gap: 18px; padding-right: 18px; }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 34px;
  min-width: 220px;
  height: 88px;
  background: var(--beige);
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.partner-logo:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-4px);
}
.pl-icon { color: var(--orange); font-size: 1rem; transition: color 0.3s ease; flex-shrink: 0; }
.partner-logo:hover .pl-icon { color: var(--orange); }
.pl-logo { max-height: 44px; max-width: 160px; object-fit: contain; display: block; }
.partner-logo.has-logo:hover { background: #ede6d8; transform: translateY(-4px); }

@keyframes partners-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ===== SLIDER (showcase) ===== */
.showcase { background: var(--cream); }
.slider { position: relative; }
.slider-viewport { overflow: hidden; border-radius: var(--radius); }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.slide { min-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.slide-media { border-radius: var(--radius); min-height: 340px; display: grid; place-items: center; background: linear-gradient(135deg, hsl(var(--hue), 90%, 96%), hsl(var(--hue), 90%, 90%)); position: relative; overflow: hidden; }
.slide-img { width: 100%; height: 100%; min-height: 340px; max-height: 420px; object-fit: cover; transition: transform 0.6s ease; }
.slide:hover .slide-img { transform: scale(1.04); }

.slide-meta .slide-cat { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); }
.slide-meta h3 { font-size: 1.6rem; margin: 10px 0 12px; }
.slide-meta p { color: var(--muted); }
.slide-meta b { color: var(--orange); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 30px; }
.slider-btn { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid var(--line); font-size: 1.3rem; color: var(--ink); transition: 0.3s; }
.slider-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: scale(1.05); }
.dots { display: flex; gap: 8px; }
.dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--line); transition: 0.3s; }
.dots button.active { background: var(--orange); width: 28px; border-radius: 10px; }

/* ===== REELS ===== */
.reels { position: relative; overflow: hidden; background: transparent; padding: 0; width: 100%; }
.reels-wrapper { overflow: hidden; margin: 0 0 0; padding: 30px 0 60px; }
.reels-track { display: flex; animation: reels-scroll 40s linear infinite; width: max-content; will-change: transform; }
.reel-set { display: flex; gap: 22px; padding-right: 22px; }
.reel {
  position: relative; width: 230px; height: 400px; border-radius: 24px; overflow: hidden;
  flex-shrink: 0; cursor: pointer;
  border: 4px solid #fff;
  transition: transform 0.35s ease;
}
.reel:hover { transform: translateY(-10px); border-color: var(--orange); }
.reel img, .reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel iframe { width: 100%; height: 100%; border: 0; display: block; }
.reel video { pointer-events: none; }
.reel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(26,20,15,0.65));
}
.reel-views {
  position: absolute; bottom: 14px; left: 12px; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
}

@keyframes reels-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ===== PLANS ===== */
.plans { background: var(--white); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.plan {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan-featured { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.plan-featured:hover { transform: scale(1.03) translateY(-8px); }
.plan-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 100px; letter-spacing: 0.06em; }
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.plan-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin-top: 10px; line-height: 1.1; }
.price-from { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.per { font-size: 0.95rem; font-weight: 500; color: var(--muted); margin-left: 5px; }
.plan-featured .per { color: rgba(255,255,255,0.6); }
.plan-featured .price-from { color: rgba(255,255,255,0.6); }
.plan-desc { color: var(--muted); margin: 16px 0 24px; font-size: 0.95rem; }
.plan-featured .plan-desc { color: rgba(255,255,255,0.7); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; flex: 1; }
.plan-feats li { display: flex; gap: 10px; font-size: 0.95rem; align-items: flex-start; }
.plan-feats li.off { opacity: 0.4; }
.check { color: var(--orange); font-weight: 700; }

/* ===== PROCESS ===== */
.process { background: var(--cream); }
.steps-slider { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.step-slide {
  position: relative; padding: 50px 40px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow);
}
.step-num { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--orange-soft); opacity: 0.6; position: absolute; top: 10px; right: 24px; }
.step-emoji { font-size: 3rem; margin-bottom: 20px; }
.step-slide h3 { font-size: 1.6rem; margin-bottom: 12px; }
.step-slide p { color: var(--muted); max-width: 480px; margin: 0 auto; }
.steps-dots { display: none; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); overflow: hidden; }
.quote-marquee {
  overflow: hidden;
  padding: 24px 0 70px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.quote-track {
  display: flex;
  width: max-content;
  animation: quotes-scroll 40s linear infinite;
}
.quote-set { display: flex; gap: 26px; padding-right: 26px; }
.quote {
  width: 420px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: var(--orange); font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 18px; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
  margin-bottom: 22px;
}
.quote figcaption { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: auto; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; }
.av1 { background: var(--grad); }
.av2 { background: var(--navy); }
.av3 { background: #e8795f; }
.av4 { background: var(--orange); }
.quote figcaption div:last-child { text-align: left; }
.quote figcaption strong { display: block; }
.quote figcaption span { font-size: 0.85rem; color: var(--muted); }

@keyframes quotes-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.testimonials-footer { text-align: center; padding-top: 10px; }
.testimonials-footer .btn { padding: 14px 34px; font-size: 1rem; }

/* ===== REVIEW MODAL ===== */
.review-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.review-modal.open { display: flex; }
.review-modal-backdrop { position: absolute; inset: 0; background: rgba(26, 20, 15, 0.55); backdrop-filter: blur(3px); }
.review-modal-card {
  position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 22px;
  padding: 34px 34px 30px; box-shadow: 0 24px 60px rgba(26, 20, 15, 0.25); animation: review-in 0.25s ease;
}
@keyframes review-in { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: none; } }
.review-modal-close { position: absolute; top: 14px; right: 14px; background: var(--cream); border: none; border-radius: 50%; width: 34px; height: 34px; font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; }
.review-modal-close:hover { background: var(--orange); color: #fff; }
.review-modal-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 4px; }
.review-modal-sub { color: var(--muted); margin-bottom: 22px; font-size: 0.95rem; }
.review-field { display: block; margin-bottom: 16px; }
.review-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-row .review-field { margin-bottom: 16px; }
.review-field > span { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.review-field input, .review-field textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 0.95rem; font-family: var(--font); background: #fff; resize: vertical; }
.review-field input:focus, .review-field textarea:focus { outline: 2px solid var(--orange); border-color: transparent; }
.review-stars { display: inline-flex; gap: 4px; }
.rstars { background: none; border: none; font-size: 2rem; line-height: 1; color: #e3d9c8; cursor: pointer; padding: 0; transition: color 0.15s, transform 0.15s; }
.rstars.on { color: var(--orange); }
.rstars:hover { color: var(--orange); transform: scale(1.1); }
.review-form-msg { min-height: 20px; font-size: 0.9rem; margin: 4px 0 12px; }
.review-form-msg.ok { color: #0a8f3c; }
.review-form-msg.err { color: #d92d20; }

.review-thanks { text-align: center; padding: 30px 8px 20px; }
.review-thanks-ico {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; background: var(--grad); color: #fff;
  font-size: 2.2rem; font-weight: 700; box-shadow: 0 12px 28px rgba(255,107,26,.35);
}
.review-thanks h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 10px; }
.review-thanks p { color: var(--muted); font-size: 1.05rem; line-height: 1.6; }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; padding: 22px 26px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--orange); font-size: 1.6rem; font-weight: 400; transition: transform 0.3s; }
.faq-item[open] .faq-chev { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 22px; color: var(--muted); }
.faq-item[open] { border-color: var(--orange); }

/* ===== CTA ===== */
.cta { background: linear-gradient(180deg, var(--white), var(--cream)); padding-bottom: 120px; }
.cta-card { position: relative; background: var(--ink); color: #fff; border-radius: 32px; padding: 60px 50px; text-align: center; overflow: hidden; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,107,26,0.3), transparent 40%), radial-gradient(circle at 80% 80%, rgba(255,154,60,0.25), transparent 40%); }
.cta-card > * { position: relative; }
.cta-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.cta-desc { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 34px; }
.cta-form { max-width: 540px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; }
.cta-form input, .cta-form textarea {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 12px; padding: 14px 18px; font-family: inherit; font-size: 1rem;
  transition: border-color 0.3s;
}
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: var(--orange); }
.cta-form textarea { resize: none; }
.form-note { color: #7ef0a8; font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: rgba(255,255,255,0.8); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 300px; margin-top: 16px; }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; transition: 0.3s; }
.socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: #fff; margin-bottom: 8px; font-size: 1rem; }
.footer-col a, .footer-col span { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: 0.3s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding-top: 26px; font-size: 0.85rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 10px; }
.heart { color: var(--orange); }

/* ===== ANIMATIONS ===== */
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-18px) } }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .8 } 50% { transform: scale(1.4); opacity: 1 } }
@keyframes ping { 0% { transform: scale(1); opacity: .7 } 100% { transform: scale(2.4); opacity: 0 } }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-8px); }
  .slide { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78%, 320px);
    background: #fff; flex-direction: column; gap: 30px; padding: 110px 40px;
    transform: translateX(100%); transition: transform 0.4s; box-shadow: -20px 0 60px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-card { padding: 40px 24px; }
  .section { padding: 70px 0; }
  .hero-title, .hero-sub { font-size: 1.7rem; white-space: nowrap; text-align: center; }
  .reel { width: 180px; height: 320px; }
  .steps-slider { grid-template-columns: 1fr; }
  .quote { width: 320px; padding: 28px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .reels-track { animation: none; }
  .partners-track { animation: none; }
  .quote-track { animation: none; }
  .marquee-track { animation: none; }
  .step-slide, .grad-text, .pulse::after { animation: none; }
}
