/* ============================================================
   THE SOCIAL SNOW — Design System
   Building Brands That Break The Ice.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #0b1024;
  --navy-800: #111735;
  --navy-700: #19204a;
  --navy-600: #232c63;
  --pink-600: #d61f63;
  --pink-500: #e8336d;
  --pink-400: #f4548a;
  --pink-300: #ff7fa8;
  --cream: #faf7f4;
  --white: #ffffff;
  --ink: #141a33;
  --muted: #5c6480;
  --muted-light: #8a90a6;
  --line: rgba(20, 26, 51, 0.08);

  --grad-brand: linear-gradient(120deg, #e8336d 0%, #f4548a 50%, #ff7fa8 100%);
  --grad-navy: linear-gradient(150deg, #19204a 0%, #0b1024 100%);
  --grad-hero: radial-gradient(1200px 600px at 75% -10%, rgba(232, 51, 109, 0.18), transparent 60%),
               radial-gradient(900px 500px at 0% 10%, rgba(35, 44, 99, 0.55), transparent 55%),
               linear-gradient(160deg, #0d1330 0%, #131a3a 60%, #0b1024 100%);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(15, 19, 48, 0.06);
  --shadow: 0 18px 50px -20px rgba(15, 19, 48, 0.28);
  --shadow-pink: 0 16px 40px -14px rgba(232, 51, 109, 0.5);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: var(--pink-400); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-navy { background: var(--grad-navy); color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink-500);
  margin-bottom: 18px;
}
.eyebrow::before { content: "\2744"; font-size: 0.9em; }
.bg-navy .eyebrow { color: var(--pink-300); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}
.section-lead {
  color: var(--muted);
  max-width: 620px;
  margin-top: 18px;
  font-size: 1.08rem;
}
.bg-navy .section-lead { color: rgba(255, 255, 255, 0.72); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.title-italic { font-style: italic; font-weight: 500; }
.text-pink { color: var(--pink-500); }
.bg-navy .text-pink { color: var(--pink-300); }
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem;
  padding: 15px 30px; border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -14px rgba(232, 51, 109, 0.62); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(20, 26, 51, 0.16);
}
.btn-ghost:hover { border-color: var(--pink-500); color: var(--pink-500); transform: translateY(-3px); }
.bg-navy .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.22); }
.bg-navy .btn-ghost:hover { border-color: var(--pink-300); color: var(--pink-300); }
.btn-light { background: #fff; color: var(--navy-800); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4); }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(250, 247, 244, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 6px 18px -8px rgba(0,0,0,.5); }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-size: 1.02rem; letter-spacing: 0.3px; color: #fff; transition: color .4s; }
.brand__name span { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; transition: color .4s; }
.nav.scrolled .brand__name b { color: var(--ink); }
.nav.scrolled .brand__name span { color: var(--muted-light); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 16px; font-weight: 600; font-size: 0.95rem;
  color: rgba(255,255,255,0.85); border-radius: var(--radius-pill); transition: color .25s;
}
.nav.scrolled .nav-links a { color: var(--ink); }
/* the in-menu CTA button is mobile-only; hide on desktop */
.nav-links > .btn { display: none; }
.nav-links a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--grad-brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--pink-300); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--pink-300); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--pink-500); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; position: relative; z-index: 120; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: #fff; transition: .3s; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
/* scrolled state: dark bars over the cream navbar */
.nav.scrolled .nav-toggle span,
.nav.scrolled .nav-toggle span::before,
.nav.scrolled .nav-toggle span::after { background: var(--ink); }
/* open state (✕): hide middle bar, dark diagonal bars on the cream drawer.
   Listed after — and made specific enough — to win over the scrolled rules. */
.nav .nav-toggle.open span,
.nav.scrolled .nav-toggle.open span { background: transparent; }
.nav .nav-toggle.open span::before,
.nav .nav-toggle.open span::after,
.nav.scrolled .nav-toggle.open span::before,
.nav.scrolled .nav-toggle.open span::after { background: var(--ink); }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex;
  flex-direction: column; justify-content: center;
  background: var(--grad-hero); color: #fff; overflow: hidden;
  padding: 150px 0 70px;
}
.hero > .container { width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 26px;
}
.hero__badge b { background: var(--grad-brand); padding: 4px 12px; border-radius: var(--radius-pill); font-weight: 700; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.7rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -1px;
}
.hero h1 em { font-style: italic; color: var(--pink-300); font-weight: 600; }
.hero__sub { margin-top: 24px; font-size: 1.15rem; color: rgba(255,255,255,0.76); max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero__stats .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; }
.hero__stats .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }

.hero__visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.orb {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: var(--grad-brand); filter: blur(8px); opacity: 0.32;
  animation: float 7s ease-in-out infinite;
}
.hero-logo {
  width: 60%; border-radius: 50%; position: relative; z-index: 2;
  box-shadow: 0 40px 90px -30px rgba(232,51,109,0.7), 0 0 0 1px rgba(255,255,255,0.06);
  animation: float 6s ease-in-out infinite;
}
.float-card {
  position: absolute; z-index: 3; background: rgba(255,255,255,0.95); color: var(--ink);
  padding: 12px 16px; border-radius: 14px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.86rem;
  backdrop-filter: blur(6px);
}
.float-card i { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; font-style: normal; }
.float-card.fc-1 { top: 8%; left: -4%; animation: float 5s ease-in-out infinite; }
.float-card.fc-2 { bottom: 14%; right: -6%; animation: float 6.5s ease-in-out infinite 0.5s; }
.float-card.fc-3 { bottom: 0%; left: 6%; animation: float 5.8s ease-in-out infinite 0.3s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero__marquee { margin-top: 70px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; opacity: 0.55; white-space: nowrap; display: inline-flex; align-items: center; gap: 56px; }
.marquee__track span::after { content: "\2744"; font-style: normal; color: var(--pink-300); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- About preview ---------- */
.founder { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.founder__photo { position: relative; }
.founder__photo .frame {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--grad-navy); box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.founder__photo .frame .initials { font-family: var(--font-display); font-size: 7rem; color: #fff; font-weight: 800; opacity: 0.9; }
.founder__photo .tag {
  position: absolute; bottom: 22px; left: -18px; background: #fff; padding: 14px 20px;
  border-radius: 16px; box-shadow: var(--shadow); font-weight: 700;
}
.founder__photo .tag span { display: block; font-size: 0.75rem; color: var(--pink-500); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.founder__photo .deco { position: absolute; inset: -18px auto auto -18px; width: 90px; height: 90px; border-radius: 20px; background: var(--grad-brand); z-index: -1; opacity: .8; }
.wave { display: inline-block; animation: wave 2.4s ease-in-out infinite; transform-origin: 70% 70%; }
@keyframes wave { 0%,60%,100%{transform:rotate(0)} 10%{transform:rotate(14deg)} 20%{transform:rotate(-8deg)} 30%{transform:rotate(14deg)} 40%{transform:rotate(-4deg)} 50%{transform:rotate(10deg)} }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; margin-top: 22px; color: var(--pink-500); }

/* ---------- Services grid ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(232,51,109,0.12), rgba(244,84,138,0.06));
  color: var(--pink-500); margin-bottom: 20px; transition: .4s var(--ease);
}
.card:hover .card__icon { background: var(--grad-brand); color: #fff; transform: rotate(-6deg) scale(1.05); }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.card__list li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--muted); align-items: flex-start; }
.card__list li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--grad-brand); }
.card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--pink-500); }
.card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Services chips (overview) */
.chips { display: flex; flex-wrap: wrap; gap: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy-800); color: #fff; padding: 14px 22px 14px 14px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.98rem;
  transition: transform .35s var(--ease), background .3s; cursor: default;
}
.chip i { width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--navy-800); display: grid; place-items: center; font-style: normal; }
.chip i svg { width: 18px; height: 18px; }
.chip:hover { transform: translateY(-4px) scale(1.02); background: var(--pink-500); }

/* ---------- Why choose / feature cards ---------- */
.feature {
  padding: 30px; border-radius: var(--radius); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); transition: .4s var(--ease);
}
.feature:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); }
.feature .spark { font-size: 1.6rem; display: block; margin-bottom: 16px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: rgba(255,255,255,0.66); font-size: 0.95rem; }
.feature .idx { font-family: var(--font-display); font-size: 0.9rem; color: var(--pink-300); font-weight: 700; letter-spacing: .1em; }

/* ---------- Stats band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.statband .num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
.statband .lbl { color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.bg-navy .statband .lbl { color: rgba(255,255,255,0.65); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testi {
  background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px; transition: .4s var(--ease);
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi .stars { color: #ffb73d; letter-spacing: 2px; }
.testi p { font-size: 1.02rem; color: var(--ink); }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 800; }
.testi .who b { display: block; font-size: 0.95rem; }
.testi .who span { font-size: 0.82rem; color: var(--muted); }
.quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: 0.6; color: var(--pink-400); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan--featured { background: var(--grad-navy); color: #fff; border: none; box-shadow: var(--shadow); }
.plan__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; padding: 7px 18px; border-radius: var(--radius-pill); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; box-shadow: var(--shadow-pink); white-space: nowrap; }
.plan h3 { font-size: 1.3rem; font-weight: 800; }
.plan .desc { color: var(--muted); font-size: 0.92rem; margin-top: 6px; min-height: 42px; }
.plan--featured .desc { color: rgba(255,255,255,0.7); }
.plan .price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; margin: 18px 0 4px; }
.plan .price small { font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.plan--featured .price small { color: rgba(255,255,255,0.6); }
.plan .feat { display: flex; flex-direction: column; gap: 13px; margin: 24px 0 28px; border-top: 1px solid var(--line); padding-top: 24px; }
.plan--featured .feat { border-color: rgba(255,255,255,0.14); }
.plan .feat li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; }
.plan .feat li svg { flex: none; width: 20px; height: 20px; color: var(--pink-500); margin-top: 1px; }
.plan--featured .feat li svg { color: var(--pink-300); }
.plan .btn { margin-top: auto; }

.custom-quote {
  margin-top: 36px; background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg);
  padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: var(--shadow-pink); position: relative; overflow: hidden;
}
.custom-quote h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); }
.custom-quote p { color: rgba(255,255,255,0.85); margin-top: 6px; max-width: 540px; }

/* ---------- Process / timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding-top: 22px; }
.step__n { font-family: var(--font-display); font-size: 1rem; font-weight: 800; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; margin-bottom: 18px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }
.bg-navy .step p { color: rgba(255,255,255,0.65); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--grad-navy); color: #fff; padding: clamp(48px, 7vw, 88px);
  text-align: center; box-shadow: var(--shadow);
}
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.3; background: var(--grad-brand); }
.cta-band::before { width: 320px; height: 320px; top: -120px; right: -80px; }
.cta-band::after { width: 260px; height: 260px; bottom: -120px; left: -60px; opacity: 0.22; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; position: relative; }
.cta-band p { color: rgba(255,255,255,0.74); margin: 16px auto 32px; max-width: 560px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: center; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: .35s var(--ease); }
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: transparent; }
.contact-card .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, rgba(232,51,109,0.12), rgba(244,84,138,0.05)); color: var(--pink-500); display: grid; place-items: center; }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card b { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-light); }
.contact-card span { font-weight: 700; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); color: var(--ink); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(232, 51, 109, 0.1);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success { display: none; padding: 16px; border-radius: 12px; background: rgba(46, 196, 132, 0.12); color: #1c8a5b; font-weight: 600; text-align: center; margin-bottom: 18px; }
.form-success.show { display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--grad-hero); color: #fff; padding: 160px 0 90px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; }
.page-hero p { color: rgba(255,255,255,0.74); max-width: 600px; margin: 18px auto 0; font-size: 1.1rem; }
.crumbs { display: inline-flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.crumbs a:hover { color: var(--pink-300); }

/* ---------- Values / mission ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv {
  padding: 40px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
  position: relative; overflow: hidden; transition: .4s var(--ease);
}
.mv:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mv__ic { width: 60px; height: 60px; border-radius: 18px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; margin-bottom: 22px; }
.mv__ic svg { width: 30px; height: 30px; }
.mv h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 12px; }
.mv p { color: var(--muted); }
.values-list { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.value-pill { padding: 14px 26px; border-radius: var(--radius-pill); background: #fff; border: 1.5px solid var(--line); font-weight: 700; transition: .35s var(--ease); display: inline-flex; align-items: center; gap: 10px; }
.value-pill::before { content: "\2744"; color: var(--pink-500); }
.value-pill:hover { background: var(--navy-800); color: #fff; transform: translateY(-4px); border-color: transparent; }
.value-pill:hover::before { color: var(--pink-300); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #fff; padding: 80px 0 30px; position: relative; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand__name b { color: #fff; }
.footer__about p { color: rgba(255,255,255,0.6); margin-top: 18px; max-width: 320px; font-size: 0.95rem; }
.footer__tag { font-family: var(--font-display); font-style: italic; color: var(--pink-300); margin-top: 14px; font-size: 1.05rem; }
.footer h4 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-300); margin-bottom: 20px; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: rgba(255,255,255,0.68); font-size: 0.95rem; transition: color .25s, padding .25s; }
.footer ul a:hover { color: #fff; padding-left: 6px; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.06); display: grid; place-items: center; transition: .3s var(--ease); }
.socials a:hover { background: var(--grad-brand); transform: translateY(-4px); }
.socials a svg { width: 20px; height: 20px; }
.footer__bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,0.5); font-size: 0.88rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-brand); z-index: 200; transition: width .1s linear; }

/* Back to top */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 50px; height: 50px; border-radius: 50%; background: var(--navy-800); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(20px); transition: .4s var(--ease); z-index: 90; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--pink-500); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .founder, .contact-grid, .split, .mv-grid { grid-template-columns: 1fr; gap: 36px; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .statband { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__about { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav__cta .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; left: auto; bottom: auto;
    height: 100vh; height: 100dvh; width: min(82vw, 340px);
    background: var(--cream); flex-direction: column; align-items: stretch;
    padding: 100px 24px 40px; gap: 6px; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: -20px 0 60px -20px rgba(0,0,0,0.3);
    overflow-y: auto; z-index: 110;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; color: var(--ink); }
  .nav-links a.active { color: var(--pink-500); }
  .nav-links a::after { display: none; }
  .nav-links > .btn { display: inline-flex; margin-top: 12px; color: #fff; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; }
  .page-hero { padding: 116px 0 60px; }
  .hero__marquee { margin-top: 44px; padding-top: 22px; }
  .hero__visual { max-width: 360px; }
  .float-card { font-size: 0.78rem; padding: 10px 13px; }
  .float-card i { width: 30px; height: 30px; }
  .float-card.fc-1 { left: 0; }
  .float-card.fc-2 { right: 0; }
  .cta-band, .custom-quote { padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 560px) {
  .statband, .footer__grid { grid-template-columns: 1fr; }
  .footer__grid { gap: 30px; }
  .steps { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px 28px; }
  .hero__cta { gap: 12px; }
  .hero__cta .btn { flex: 1 1 auto; }
  .custom-quote { flex-direction: column; text-align: center; align-items: stretch; }
  .custom-quote .btn, .cta-band .btn { width: 100%; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 400px) {
  .container { padding-inline: 18px; }
  .hero h1 { font-size: 2.4rem; }
  .hero__visual { max-width: 280px; }
  .float-card { font-size: 0.72rem; }
  .brand__name span { display: none; }
  .testi, .card, .plan, .mv, .feature { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
