  :root {
    --navy: #1F3A5F;
    --navy-deep: #14273F;
    --pink: #FF2D87;
    --pink-light: #FF5DA0;
    --soft-pink: #FFF0F6;
    --off-white: #FAFAFA;
    --body: #1A1A1A;
    --muted: #808080;
    --line: rgba(31, 58, 95, 0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--body);
    background: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
  }

  /* ───────────── NAV ───────────── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    user-select: none;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 33px;
    height: 33px;
    border-radius: 9px;
    background: #FF2D87;
    box-shadow: 0 2px 8px rgba(255,45,135,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav-logo-text { display: flex; flex-direction: column; }
  .nav-logo-name {
    font-weight: 700;
    font-size: 15px;
    color: #1F3A5F;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-logo-name span { color: #FF2D87; }
  .nav-logo-tag {
    font-size: 10px;
    color: #808080;
    font-weight: 400;
    margin-top: -2px;
    line-height: 1.3;
  }
  @media (max-width: 480px) { .nav-logo-tag { display: none; } }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    transition: color 0.2s ease;
  }
  .nav-links a:hover { color: var(--pink); }
  .nav-cta {
    background: var(--pink);
    color: white !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 45, 135, 0.3);
    color: white !important;
  }
  .nav-toggle { display: none; }

  @media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      position: absolute;
      top: 72px; left: 0; right: 0;
      flex-direction: column;
      gap: 0;
      background: var(--off-white);
      padding: 16px 28px 24px;
      border-bottom: 1px solid var(--line);
    }
    .nav-links.open a { padding: 12px 0; }
    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .nav-toggle span {
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
    }
  }

  /* ───────────── HERO ───────────── */
  .hero {
    padding: 160px 0 100px;
    position: relative;
    background:
      radial-gradient(ellipse at 80% 0%, rgba(255, 45, 135, 0.08), transparent 60%),
      radial-gradient(ellipse at 0% 60%, rgba(31, 58, 95, 0.06), transparent 50%),
      var(--off-white);
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 120px; right: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--soft-pink) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 24px;
  }
  .eyebrow::before {
    content: "";
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--pink);
    border-radius: 50%;
  }
  h1 {
    font-family: 'Fraunces', 'Poppins', serif;
    font-weight: 600;
    font-size: clamp(40px, 5.6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 24px;
  }
  h1 em {
    font-style: italic;
    color: var(--pink);
    font-weight: 400;
  }
  .hero-sub {
    font-size: 19px;
    color: #3a3a3a;
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.55;
  }
  .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--pink);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 45, 135, 0.25);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 45, 135, 0.35);
  }
  .btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
  }
  .btn-secondary:hover {
    background: var(--navy);
    color: white;
  }
  .btn .arrow { transition: transform 0.25s ease; }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    max-width: 540px;
  }
  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat-num .pink { color: var(--pink); }
  .stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
  }

  /* Hero visual: AI vs Human comparison card */
  .hero-visual {
    position: relative;
  }
  .compare-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow:
      0 1px 0 rgba(31, 58, 95, 0.04),
      0 30px 60px -20px rgba(31, 58, 95, 0.18),
      0 18px 36px -18px rgba(255, 45, 135, 0.12);
    border: 1px solid rgba(31, 58, 95, 0.06);
    position: relative;
    transform: rotate(-1deg);
  }
  .compare-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    background: linear-gradient(135deg, transparent 60%, rgba(255, 45, 135, 0.04));
  }
  .compare-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-row .left {
    color: var(--muted);
    text-align: left;
    font-weight: 400;
  }
  .compare-row .vs {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.06em;
  }
  .compare-row .right {
    color: var(--navy);
    text-align: right;
    font-weight: 500;
  }
  .compare-row .right.highlight { color: var(--pink); font-weight: 600; }
  .compare-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    margin-bottom: 8px;
  }
  .compare-header .col {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
  }
  .compare-header .col:first-child { color: var(--muted); }
  .compare-header .col:last-child { text-align: right; color: var(--pink); }

  .pulse-dot {
    position: absolute;
    top: -16px; right: 24px;
    background: var(--pink);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transform: rotate(3deg);
    box-shadow: 0 8px 20px rgba(255, 45, 135, 0.3);
  }

  @media (max-width: 880px) {
    .hero { padding: 130px 0 70px; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .stat-num { font-size: 26px; }
  }

  /* ───────────── SECTION HEADERS ───────────── */
  section { padding: 100px 0; }
  .section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
  }
  h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 20px;
  }
  .section-intro {
    font-size: 18px;
    color: #444;
    max-width: 680px;
    line-height: 1.55;
  }
  .section-head { margin-bottom: 60px; max-width: 720px; }

  /* ───────────── PROBLEM ───────────── */
  .problem { background: white; }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 30px;
  }
  .problem-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(31, 58, 95, 0.18);
  }
  .problem-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--pink);
  }
  .problem-num {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .problem-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  @media (max-width: 880px) {
    .problem-grid { grid-template-columns: 1fr; }
  }

  /* ───────────── SOLUTION ───────────── */
  .solution {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .solution::before {
    content: "";
    position: absolute;
    top: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 135, 0.15), transparent 70%);
    border-radius: 50%;
  }
  .solution h2 { color: white; }
  .solution h2 em { color: var(--pink-light); font-style: italic; font-weight: 400; }
  .solution .section-intro { color: rgba(255, 255, 255, 0.7); }
  .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
  }
  .solution-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  .solution-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 93, 160, 0.4);
  }
  .solution-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 24px;
    color: white;
  }
  .solution-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
  }
  .solution-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
  }
  .solution-card li {
    padding: 10px 0 10px 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .solution-card li:last-child { border-bottom: none; }
  .solution-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pink-light);
    font-weight: 600;
  }
  @media (max-width: 880px) {
    .solution-grid { grid-template-columns: 1fr; gap: 24px; }
  }

  /* ───────────── PRICING ───────────── */
  .pricing { background: var(--off-white); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  .price-card {
    background: white;
    border-radius: 18px;
    padding: 32px 26px;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    position: relative;
  }
  .price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -20px rgba(31, 58, 95, 0.2);
    border-color: var(--pink);
  }
  .price-card.featured {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
  }
  .price-card.featured::before {
    content: "Suosituin";
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
  }
  .price-name {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .price-card.featured .price-name { color: white; }
  .price-units {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .price-card.featured .price-units { color: rgba(255, 255, 255, 0.6); }
  .price-amount {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 4px;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .price-card.featured .price-amount { color: var(--pink-light); }
  .price-fine {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .price-card.featured .price-fine { color: rgba(255, 255, 255, 0.6); }
  .price-card hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 18px 0 22px;
  }
  .price-card.featured hr { border-color: rgba(255, 255, 255, 0.12); }
  .price-feat {
    font-size: 14px;
    padding: 7px 0 7px 22px;
    color: #444;
    position: relative;
  }
  .price-card.featured .price-feat { color: rgba(255, 255, 255, 0.85); }
  .price-feat::before {
    content: "✓";
    position: absolute;
    left: 0; top: 7px;
    color: var(--pink);
    font-weight: 700;
  }
  .price-card.featured .price-feat::before { color: var(--pink-light); }
  .price-cta {
    margin-top: 26px;
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    transition: all 0.2s ease;
  }
  .price-card.featured .price-cta {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
  }
  .price-cta:hover {
    background: var(--navy);
    color: white;
  }
  .price-card.featured .price-cta:hover { background: var(--pink-light); border-color: var(--pink-light); }

  .pricing-note {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .pricing-grid { grid-template-columns: 1fr; }
  }

  /* ─── Custom quote card ─── */
  .quote-card {
    background: white;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px -30px rgba(31, 58, 95, 0.18);
    overflow: hidden;
    position: relative;
  }
  .quote-side-decor {
    position: absolute;
    top: 0; right: 0;
    width: 280px; height: 280px;
    background: radial-gradient(circle at top right, var(--soft-pink), transparent 65%);
    pointer-events: none;
  }
  .quote-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    position: relative;
    z-index: 1;
  }
  .quote-process {
    padding: 50px 50px 50px 50px;
  }
  .quote-step {
    display: flex;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }
  .quote-step:first-child { padding-top: 0; }
  .quote-step:last-child { border-bottom: none; padding-bottom: 0; }
  .quote-step-num {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--pink);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    letter-spacing: -0.02em;
  }
  .quote-step-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .quote-step-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }

  .quote-aside {
    background: var(--navy);
    color: white;
    padding: 50px 44px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .quote-aside::before {
    content: "";
    position: absolute;
    bottom: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 45, 135, 0.18), transparent 65%);
    pointer-events: none;
  }
  .quote-aside-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pink-light);
    margin-bottom: 14px;
    position: relative;
  }
  .quote-headline {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 600;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    position: relative;
  }
  .quote-headline-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    position: relative;
  }
  .quote-aside hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0 0 22px;
    position: relative;
  }
  .quote-bullets { position: relative; flex-grow: 1; }
  .quote-bullet {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding: 9px 0 9px 22px;
    position: relative;
  }
  .quote-bullet::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pink-light);
    font-weight: 700;
  }
  .quote-cta {
    margin-top: 28px;
    width: 100%;
    justify-content: center;
    position: relative;
  }

  @media (max-width: 880px) {
    .quote-grid { grid-template-columns: 1fr; }
    .quote-process { padding: 36px 28px; }
    .quote-aside { padding: 36px 28px; }
    .quote-headline { font-size: 44px; }
  }

  /* ───────────── ROI / VALUE ───────────── */
  .value {
    background: var(--soft-pink);
    position: relative;
    overflow: hidden;
  }
  .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .value-text h2 em { color: var(--pink); font-style: italic; font-weight: 400; }
  .value-list {
    margin-top: 30px;
    list-style: none;
  }
  .value-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(31, 58, 95, 0.1);
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .value-list li:last-child { border-bottom: none; }
  .value-num {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--pink);
    flex-shrink: 0;
    width: 56px;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .value-li-body strong {
    color: var(--navy);
    font-weight: 600;
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
  }
  .value-li-body span {
    font-size: 14px;
    color: #555;
    line-height: 1.55;
  }

  .roi-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 30px 60px -20px rgba(31, 58, 95, 0.18);
  }
  .roi-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .roi-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.3;
  }
  .roi-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .roi-line .lbl { color: var(--muted); }
  .roi-line .val { color: var(--navy); font-weight: 500; }
  .roi-line.total {
    border-bottom: none;
    border-top: 2px solid var(--navy);
    margin-top: 8px;
    padding-top: 18px;
  }
  .roi-line.total .lbl { color: var(--navy); font-weight: 600; font-size: 15px; }
  .roi-line.total .val {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--pink);
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  @media (max-width: 880px) {
    .value-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ───────────── FOUNDERS ───────────── */
  .founders { background: white; }
  .founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
  }
  .founder-card {
    background: var(--off-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.3s ease;
  }
  .founder-card:hover { transform: translateY(-4px); }
  .founder-photo-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy);
  }
  .founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
  .founder-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(31, 58, 95, 0.55));
  }
  .founder-name-overlay {
    position: absolute;
    bottom: 24px; left: 28px;
    color: white;
    z-index: 2;
  }
  .founder-name-overlay .role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pink-light);
    margin-bottom: 6px;
  }
  .founder-name-overlay h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .founder-body {
    padding: 30px 32px 34px;
  }
  .founder-tagline {
    font-size: 16px;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1.4;
  }
  .founder-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .founder-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .founder-meta a {
    color: var(--navy);
    font-weight: 500;
    transition: color 0.2s;
  }
  .founder-meta a:hover { color: var(--pink); }

  @media (max-width: 880px) {
    .founders-grid { grid-template-columns: 1fr; }
  }

  /* ───────────── DIFFERENTIATION ───────────── */
  .diff {
    background: var(--off-white);
  }
  .diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .diff-item {
    padding: 28px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
  }
  .diff-item:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
  }
  .diff-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .diff-item p { font-size: 14px; color: #555; line-height: 1.6; }
  @media (max-width: 880px) {
    .diff-grid { grid-template-columns: 1fr; }
  }

  /* ───────────── CTA ───────────── */
  .cta {
    background: var(--navy);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255, 45, 135, 0.15), transparent 60%);
    border-radius: 50%;
  }
  .cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
  .cta h2 { color: white; margin-bottom: 18px; }
  .cta h2 em { color: var(--pink-light); font-style: italic; font-weight: 400; }
  .cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
  }
  .cta .btn-primary { box-shadow: 0 12px 32px rgba(255, 45, 135, 0.35); }

  /* ───────────── FOOTER ───────────── */
  footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    user-select: none;
    margin-bottom: 16px;
  }
  .footer-logo-name {
    font-weight: 700;
    font-size: 15px;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .footer-logo-name span { color: #FF2D87; }
  .founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.2s;
  }
  .founder-linkedin:hover { color: var(--pink); }
  .footer-brand p { font-size: 14px; max-width: 280px; line-height: 1.6; }
  .footer-col h5 {
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    font-weight: 600;
  }
  .footer-col a, .footer-col p {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--pink-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
  }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  /* Reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
