    @font-face {
      font-family: 'Conthrax';
      src: url('../fonts/conthrax-sb.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

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

    :root {
      --pink: #ff62fd;
      --purple: #866cfe;
      --blue: #0078ff;
      --bg-deep: #0a0915;
      --bg-dark: #12111f;
      --bg-dark-card: #18172a;
      --bg-light-warm: #faf9fc;
      --bg-light: #f5f3fa;
      --bg-white: #ffffff;
      --white: #ffffff;
      --text-primary: rgba(255,255,255,0.96);
      --text-secondary: rgba(255,255,255,0.82);
      --text-muted: rgba(255,255,255,0.62);
      --text-dark: #1a1a2e;
      --text-dark-sub: #3a3854;
      --text-dark-muted: #5e5c7a;
      --glass-bg: rgba(255,255,255,0.025);
      --glass-border: rgba(134,108,254,0.12);
      --font-display: 'Conthrax', sans-serif;
      --font-heading: 'General Sans', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --max-width: 1140px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text-secondary);
      background: var(--bg-deep);
      line-height: 1.7;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection { background: rgba(134,108,254,0.35); color: var(--white); }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-deep); }
    ::-webkit-scrollbar-thumb { background: rgba(134,108,254,0.25); border-radius: 3px; }

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

    /* ── Film Grain ──────────────────────────────── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.02;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ── Typography ──────────────────────────────── */
    .section-label {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.76rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #d8cfff;
      background: rgba(134,108,254,0.16);
      border: 1px solid rgba(186,170,255,0.34);
      padding: 9px 20px;
      border-radius: 100px;
      display: inline-block;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .section-label--light {
      background: rgba(134,108,254,0.08);
      border-color: rgba(134,108,254,0.18);
      color: #4f39cf;
    }

    /* ── Buttons ─────────────────────────────────── */
    .btn {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.96rem;
      padding: 16px 36px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(115deg, #ff62fd 0%, #ff8ffe 100%);
      color: #170d27;
      box-shadow: 0 0 24px rgba(255,98,253,0.25);
    }
    .btn-primary:hover {
      background: linear-gradient(115deg, #ff7bfe 0%, #ffb0ff 100%);
      transform: translateY(-2px);
      box-shadow: 0 0 40px rgba(255,98,253,0.45), 0 8px 32px rgba(255,98,253,0.2);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.18);
    }
    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.45);
      background: rgba(255,255,255,0.04);
      transform: translateY(-1px);
    }

    .btn-secondary--dark {
      color: var(--text-dark);
      border-color: rgba(26,26,46,0.18);
    }
    .btn-secondary--dark:hover {
      border-color: rgba(26,26,46,0.45);
      background: rgba(26,26,46,0.04);
    }

    /* ── Navigation ──────────────────────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(134,108,254,0.08);
      padding-top: env(safe-area-inset-top);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-logo img { height: 40px; width: auto; }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: clamp(16px, 1.6vw, 30px);
      flex: 1 1 auto;
      min-width: 0;
      padding: 0 12px 0 clamp(26px, 3vw, 42px);
    }

    .nav-links a {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--text-dark);
      transition: color 0.2s ease;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--purple); }
    .nav-links a:focus-visible {
      outline: 2px solid var(--purple);
      outline-offset: 4px;
      border-radius: 2px;
    }

    .nav-cta {
      flex-shrink: 0;
    }
    .nav-cta .btn {
      padding: 12px 20px;
      font-size: 0.88rem;
      min-height: 44px;
      white-space: nowrap;
    }

    .nav-mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      min-height: 44px;
      padding: 10px;
      border-radius: 8px;
      transition: background 0.2s ease;
    }
    .nav-mobile-toggle[aria-expanded="true"] { background: rgba(134,108,254,0.1); }
    .nav-mobile-toggle span {
      width: 22px;
      height: 2px;
      background: var(--text-dark);
      border-radius: 1px;
      transition: all 0.3s ease;
    }

    .nav-lang {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      color: var(--text-dark);
      background: rgba(134,108,254,0.06);
      border: 1px solid rgba(134,108,254,0.2);
      border-radius: 6px;
      padding: 6px 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      line-height: 1;
      text-decoration: none;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav-lang:hover {
      color: var(--purple);
      background: rgba(134,108,254,0.14);
      border-color: rgba(134,108,254,0.4);
    }
    .nav-lang:focus-visible {
      outline: 2px solid var(--purple);
      outline-offset: 2px;
    }

    /* ── Hero — Before/After Slider ─────────────── */
    /* ── Hero (V6 — copy + dual USP, no slider) ──────────────── */
    .hero {
      position: relative;
      background: var(--bg-deep);
      overflow: hidden;
      padding: calc(140px + env(safe-area-inset-top)) 24px 96px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .hero-bg::before,
    .hero-bg::after {
      content: '';
      position: absolute;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      filter: blur(110px);
      opacity: 0.6;
    }
    .hero-bg::before {
      background: radial-gradient(circle, rgba(134,108,254,0.30), rgba(0,120,255,0.12), transparent 70%);
      top: -220px;
      left: -160px;
    }
    .hero-bg::after {
      background: radial-gradient(circle, rgba(255,98,253,0.22), rgba(134,108,254,0.10), transparent 70%);
      bottom: -260px;
      right: -160px;
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(134,108,254,0.10) 1px, transparent 1px);
      background-size: 26px 26px;
      -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 35%, transparent 78%);
      mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 35%, transparent 78%);
      opacity: 0.7;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-size: 0.76rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-secondary);
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 100px;
      padding: 11px 18px;
      margin-bottom: 30px;
      animation: fadeInUp 0.7s ease both;
      line-height: 1.35;
    }
    .hero-eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--pink);
      animation: heroPulse 2.4s ease-out infinite;
    }

    .hero-headline {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(2.4rem, 6vw, 4.4rem);
      line-height: 1.02;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      color: var(--text-primary);
      margin-bottom: 26px;
      animation: fadeInUp 0.7s ease 0.08s both;
    }
    .hero-headline .grad {
      background: linear-gradient(115deg, var(--pink) 0%, var(--purple) 48%, var(--blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      max-width: 620px;
      margin: 0 auto 18px;
      font-family: var(--font-heading);
      font-weight: 500;
      font-size: clamp(1.05rem, 2vw, 1.3rem);
      line-height: 1.55;
      color: var(--text-primary);
      animation: fadeInUp 0.7s ease 0.16s both;
    }
    .hero-proof {
      max-width: 560px;
      margin: 0 auto 38px;
      font-size: 1rem;
      color: var(--text-muted);
      animation: fadeInUp 0.7s ease 0.24s both;
    }

    .hero-cta-row {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 64px;
      animation: fadeInUp 0.7s ease 0.32s both;
    }

    .hero-usp {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      text-align: left;
      animation: fadeInUp 0.8s ease 0.42s both;
    }
    .hero-usp-card {
      position: relative;
      background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
      border: 1px solid var(--glass-border);
      border-radius: 18px;
      padding: 30px 28px;
      overflow: hidden;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .hero-usp-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      opacity: 0.85;
    }
    .hero-usp-card--ai::before { background: linear-gradient(90deg, var(--pink), var(--purple)); }
    .hero-usp-card--human::before { background: linear-gradient(90deg, var(--purple), var(--blue)); }
    .hero-usp-card:hover {
      transform: translateY(-4px);
      border-color: rgba(134,108,254,0.32);
      box-shadow: 0 18px 48px rgba(10,9,21,0.5);
    }

    .hero-usp-top {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 44px;
      margin-bottom: 16px;
    }
    .hero-usp-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(134,108,254,0.12);
      border: 1px solid rgba(134,108,254,0.22);
    }
    .hero-usp-icon svg { width: 22px; height: 22px; stroke: currentColor; }
    .hero-usp-card--ai .hero-usp-icon { color: var(--pink); }
    .hero-usp-card--human .hero-usp-icon { color: var(--blue); }
    .hero-usp-badge {
      margin-left: auto;
      font-family: var(--font-display);
      font-size: 0.64rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
      background: rgba(255,98,253,0.16);
      border: 1px solid rgba(255,98,253,0.35);
      border-radius: 100px;
      padding: 5px 12px;
    }
    .hero-usp-card h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.18rem;
      color: var(--text-primary);
      margin-bottom: 10px;
      letter-spacing: 0.01em;
    }
    .hero-usp-card p {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--text-secondary);
    }

    @keyframes heroPulse {
      0%   { box-shadow: 0 0 0 0 rgba(255,98,253,0.55); }
      70%  { box-shadow: 0 0 0 9px rgba(255,98,253,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,98,253,0); }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      /* Ensure scroll-revealed content is shown even if the observer is skipped. */
      .js .fade-up {
        opacity: 1 !important;
        transform: none !important;
      }
    }


    @keyframes fadeInLayer {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes fadeInHandle {
      from { opacity: 0; transform: translateX(-50%) scale(0.85); }
      to { opacity: 1; transform: translateX(-50%) scale(1); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── Brand Stripe ───────────────────────────── */
    .brand-stripe {
      display: flex;
      height: 4px;
    }
    .brand-stripe span {
      flex: 1;
    }
    .brand-stripe span:nth-child(1) { background: var(--pink); }
    .brand-stripe span:nth-child(2) { background: var(--purple); }
    .brand-stripe span:nth-child(3) { background: var(--blue); }

    /* ── Side Labels ────────────────────────────── */
    .section-with-label {
      position: relative;
    }

    .side-label {
      position: absolute;
      left: 24px;
      top: 50%;
      transform: rotate(-90deg) translateX(-50%);
      transform-origin: left center;
      font-family: var(--font-display);
      font-size: 0.64rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      white-space: nowrap;
      pointer-events: none;
      z-index: 2;
    }

    .side-label--light {
      color: var(--text-dark-muted);
    }

    .side-label--dark {
      color: var(--text-muted);
    }

    /* ── How It Works (Light) ───────────────────── */
    .how-it-works {
      padding: 112px 24px 108px 80px;
      background: var(--bg-light-warm);
      position: relative;
      overflow: hidden;
    }

    .how-it-works .section-header {
      max-width: 760px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .how-it-works .section-header h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .how-it-works .section-header p {
      color: var(--text-dark-sub);
      max-width: 580px;
      margin: 0 auto;
    }

    /* Timeline */
    .timeline {
      max-width: var(--max-width);
      margin: 0 auto;
      position: relative;
    }

    .timeline-line {
      position: absolute;
      top: 36px;
      left: 36px;
      right: 36px;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
      border-radius: 2px;
      z-index: 1;
    }

    .timeline-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
      z-index: 2;
    }

    .timeline-step {
      text-align: center;
    }

    .timeline-marker {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      font-family: var(--font-display);
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      color: var(--white);
      position: relative;
    }

    .timeline-marker::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid transparent;
    }

    .timeline-step:nth-child(1) .timeline-marker {
      background: var(--blue);
      box-shadow: 0 4px 24px rgba(0,120,255,0.25);
    }
    .timeline-step:nth-child(1) .timeline-marker::before {
      border-color: rgba(0,120,255,0.2);
    }

    .timeline-step:nth-child(2) .timeline-marker {
      background: var(--purple);
      box-shadow: 0 4px 24px rgba(134,108,254,0.25);
    }
    .timeline-step:nth-child(2) .timeline-marker::before {
      border-color: rgba(134,108,254,0.2);
    }

    .timeline-step:nth-child(3) .timeline-marker {
      background: var(--pink);
      box-shadow: 0 4px 24px rgba(255,98,253,0.25);
    }
    .timeline-step:nth-child(3) .timeline-marker::before {
      border-color: rgba(255,98,253,0.2);
    }

    .timeline-card {
      background: var(--bg-white);
      border-radius: 8px;
      padding: 30px 24px;
      text-align: left;
      box-shadow: 0 2px 20px rgba(26,26,46,0.06);
      border: 1px solid rgba(134,108,254,0.06);
    }

    .timeline-step:nth-child(1) .timeline-card { border-top: 3px solid var(--blue); }
    .timeline-step:nth-child(2) .timeline-card { border-top: 3px solid var(--purple); }
    .timeline-step:nth-child(3) .timeline-card { border-top: 3px solid var(--pink); }

    .timeline-card h3 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .timeline-card p {
      color: var(--text-dark-sub);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    /* ── Features (Dark) ────────────────────────── */
    .features {
      padding: 116px 24px 112px 80px;
      background: var(--bg-deep);
      position: relative;
      overflow: hidden;
    }

    .features-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      text-align: center;
    }

    .features-header h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .features-header > p {
      color: var(--text-secondary);
      max-width: 640px;
      margin: 0 auto;
    }

    .features-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .feature-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 36px 30px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-left: 3px solid;
      border-image: linear-gradient(180deg, var(--pink), var(--purple), var(--blue)) 1;
      transition: border-color 0.3s ease, background 0.3s ease;
    }

    .feature-card:hover {
      background: rgba(255,255,255,0.04);
    }

    .feature-card-watermark {
      position: absolute;
      top: -8px;
      right: 16px;
      font-family: var(--font-display);
      font-size: 5.5rem;
      line-height: 1;
      color: rgba(134,108,254,0.04);
      pointer-events: none;
      user-select: none;
    }

    .feature-card h3 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--text-primary);
      margin-bottom: 12px;
      position: relative;
    }

    .feature-card p {
      color: var(--text-secondary);
      font-size: 0.92rem;
      line-height: 1.75;
      position: relative;
    }

    /* ── Platforms (Light) ──────────────────────── */
    .platforms {
      padding: 112px 24px 104px 80px;
      background: var(--bg-light-warm);
      position: relative;
      overflow: hidden;
    }

    .platforms-header {
      max-width: 760px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .platforms-header h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .platforms-header p {
      color: var(--text-dark-sub);
      max-width: 620px;
      margin: 0 auto;
    }

    .platforms-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
      gap: clamp(36px, 5vw, 72px);
      align-items: start;
    }

    .platforms-text {
      max-width: none;
      display: grid;
      gap: 18px;
    }

    .platform-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .platform-copy-list {
      margin-top: 2px;
    }

    .platform-copy-item {
      background: rgba(255,255,255,0.74);
      border: 1px solid rgba(134,108,254,0.12);
      border-radius: 14px;
      padding: 22px 22px;
      box-shadow: 0 10px 30px rgba(26,26,46,0.05);
    }

    .platform-copy-item[hidden] {
      display: none !important;
    }

    .platform-copy-item h3 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .platform-copy-item p {
      margin: 0;
      font-size: 0.96rem;
      line-height: 1.7;
      color: var(--text-dark-sub);
    }

    .platforms-note {
      margin-top: 0;
      padding-left: 16px;
      border-left: 2px solid rgba(134,108,254,0.35);
      font-size: 0.92rem;
      line-height: 1.6;
      color: var(--text-dark-sub);
    }

    .platform-item {
      --platform-accent: transparent;
      appearance: none;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 18px;
      background: var(--bg-white);
      border: 1px solid rgba(134,108,254,0.1);
      border-radius: 6px;
      border-left: 3px solid var(--platform-accent);
      box-shadow: 0 1px 8px rgba(26,26,46,0.04);
      transition: all 0.3s ease;
      text-align: left;
      cursor: pointer;
    }

    .platform-item:hover {
      box-shadow: 0 2px 16px rgba(26,26,46,0.08);
      transform: translateX(4px);
    }

    .platform-item.is-active {
      border-top-color: rgba(134,108,254,0.18);
      border-right-color: rgba(134,108,254,0.18);
      border-bottom-color: rgba(134,108,254,0.18);
      box-shadow: 0 12px 30px rgba(26,26,46,0.08);
      transform: translateX(0);
    }

    .platform-item:focus-visible {
      outline: 2px solid rgba(134,108,254,0.55);
      outline-offset: 3px;
    }

    .platform-item--google { --platform-accent: var(--blue); }
    .platform-item--facebook { --platform-accent: var(--purple); }
    .platform-item--instagram { --platform-accent: var(--pink); }

    .platform-item-main {
      min-width: 0;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex: 1 1 auto;
    }

    .platform-item-icon {
      width: 34px;
      height: 34px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-light);
    }

    .platform-item span {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--text-dark);
    }

    .platform-item-toggle {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(134,108,254,0.14);
      background: rgba(134,108,254,0.05);
      color: var(--text-dark-muted);
      transition: transform 0.24s ease, color 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }

    .platform-item-toggle-label {
      font-family: var(--font-display);
      font-size: 0.62rem !important;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: inherit !important;
    }

    .platform-item-toggle svg {
      display: block;
      transition: transform 0.24s ease;
    }

    .platform-item:hover .platform-item-toggle {
      border-color: rgba(134,108,254,0.24);
      background: rgba(134,108,254,0.09);
      color: var(--purple);
    }

    .platform-item.is-active .platform-item-toggle svg {
      transform: rotate(180deg);
    }

    .platform-item--google.is-active .platform-item-toggle {
      border-color: rgba(0,120,255,0.22);
      background: rgba(0,120,255,0.08);
      color: var(--blue);
    }

    .platform-item--facebook.is-active .platform-item-toggle {
      border-color: rgba(134,108,254,0.22);
      background: rgba(134,108,254,0.08);
      color: var(--purple);
    }

    .platform-item--instagram.is-active .platform-item-toggle {
      border-color: rgba(255,98,253,0.22);
      background: rgba(255,98,253,0.08);
      color: var(--pink);
    }

    @media (max-width: 640px) {
      .platform-item-toggle {
        padding: 0 10px;
      }

      .platform-item-toggle-label {
        display: none;
      }
    }

    .platforms-visual {
      position: sticky;
      top: 112px;
      align-self: start;
    }

    .platforms-mockup {
      background: var(--bg-white);
      border: 1px solid rgba(134,108,254,0.1);
      border-radius: 8px;
      padding: 34px 36px;
      box-shadow: 0 4px 32px rgba(26,26,46,0.06);
      max-width: 680px;
      margin-left: auto;
    }

    .mockup-header {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--text-dark);
      margin-bottom: 28px;
    }

    .mockup-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(134,108,254,0.06);
    }
    .mockup-row:last-of-type { border-bottom: none; }

    .mockup-bar {
      height: 10px;
      border-radius: 2px;
      flex-grow: 1;
    }

    .mockup-value {
      font-family: var(--font-display);
      font-size: 0.8rem;
      letter-spacing: 0.05em;
      color: var(--text-dark);
      white-space: nowrap;
      min-width: 54px;
      text-align: right;
    }

    .mockup-label {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--text-dark-muted);
      min-width: 80px;
    }

    .mockup-footer {
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(134,108,254,0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mockup-footer-label {
      font-family: var(--font-heading);
      font-size: 0.8rem;
      color: var(--text-dark-muted);
    }

    .mockup-footer-value {
      font-family: var(--font-display);
      font-size: 0.76rem;
      letter-spacing: 0.08em;
      color: var(--blue);
    }

    /* ── AI Showcase (Dark) ─────────────────────── */
    .ai-showcase {
      padding: 104px 24px 0;
      background: var(--bg-dark);
    }

    .ai-showcase-header {
      max-width: 760px;
      margin: 0 auto 28px;
      text-align: center;
    }

    .ai-showcase-header h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .ai-showcase-header p {
      max-width: 660px;
      margin: 0 auto;
      color: var(--text-secondary);
    }

    .ai-showcase-highlights {
      max-width: 980px;
      margin: 0 auto 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: start;
    }

    .ai-showcase-highlight {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-primary);
      padding-left: 20px;
      position: relative;
      line-height: 1.5;
    }

    .ai-showcase-highlight::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--purple);
    }

    .ai-showcase-image {
      max-width: var(--max-width);
      margin: 0 auto;
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      border: 1px solid var(--glass-border);
      border-bottom: none;
      background: var(--bg-dark-card);
    }

    .ai-showcase-image-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      background: var(--bg-dark-card);
      border-bottom: 1px solid var(--glass-border);
    }

    .ai-showcase-image-bar span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .ai-showcase-image-bar span:nth-child(1) { background: var(--pink); }
    .ai-showcase-image-bar span:nth-child(2) { background: var(--purple); }
    .ai-showcase-image-bar span:nth-child(3) { background: var(--blue); }

    .ai-showcase-image img {
      width: 100%;
      display: block;
    }

    .ai-showcase-footer {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 18px 0 104px;
    }

    .ai-showcase-caption {
      font-family: var(--font-display);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── Budget (Light) ─────────────────────────── */
    .budget-flex {
      padding: 140px 24px;
      background: var(--bg-light-warm);
      position: relative;
    }

    .budget-flex-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .budget-flex h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 24px;
    }

    .budget-flex p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text-dark-sub);
      max-width: 640px;
      margin: 0 auto;
    }

    .budget-highlights {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .budget-highlight {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--text-dark);
    }

    .budget-highlight-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .budget-highlight:nth-child(1) .budget-highlight-dot { background: var(--blue); }
    .budget-highlight:nth-child(2) .budget-highlight-dot { background: var(--purple); }
    .budget-highlight:nth-child(3) .budget-highlight-dot { background: var(--pink); }

    /* ── Social Proof (Dark) ────────────────────── */
    .social-proof {
      padding: 116px 24px 112px;
      background: var(--bg-deep);
      position: relative;
      overflow: hidden;
    }

    .social-proof-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .social-proof-header {
      max-width: 760px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .social-proof-header h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .social-proof-header p {
      max-width: 560px;
      margin: 0 auto;
    }

    /* Key facts: row 1 = first 3 stats, row 2 = last 2 stats centered.
       6-column grid; each stat spans 2 columns, the 4th/5th are offset to
       center the second row. Layout lives here so the page copy (5 stats)
       stays editable in wp-admin without touching markup. */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: clamp(36px, 4vw, 64px) clamp(16px, 2.5vw, 40px);
      margin-bottom: 72px;
    }

    .stat {
      grid-column: span 2;
      min-width: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .stat:nth-child(4) {
      grid-column: 2 / span 2;
    }

    .stat:nth-child(5) {
      grid-column: 4 / span 2;
    }

    .stat-number {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: clamp(2.35rem, 4vw, 3.7rem);
      letter-spacing: -0.04em;
      line-height: 1;
      display: inline-block;
      margin-bottom: 14px;
      background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
      overflow: visible;
    }

    .stat-label {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* Testimonials — glass cards */
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .testimonial-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 32px 28px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      position: relative;
    }

    .testimonial-card--featured {
      grid-column: 1 / -1;
    }

    .testimonial-card::before {
      content: '\201C';
      font-family: var(--font-display);
      font-size: 4rem;
      line-height: 0.6;
      display: block;
      margin-bottom: 16px;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .testimonial-card--featured::before {
      font-size: 5.5rem;
    }

    .testimonial-card p {
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--text-secondary);
      font-style: italic;
      margin-bottom: 24px;
    }

    .testimonial-card--featured p {
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      line-height: 1.65;
      color: var(--text-primary);
    }

    .testimonial-card footer {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: var(--font-display);
      font-size: 0.5rem;
      letter-spacing: 0.06em;
      color: var(--white);
    }

    .testimonial-name {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--text-primary);
    }

    .testimonial-role {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* ── CTA — macOS Window (Light) ─────────────── */
    .cta {
      padding: 104px 24px 112px;
      background: var(--bg-light-warm);
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .cta::before,
    .cta::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.55;
      pointer-events: none;
    }
    .cta::before {
      width: 340px;
      height: 340px;
      left: 8%;
      top: 24%;
      background: radial-gradient(circle, rgba(134,108,254,0.18), transparent 72%);
    }
    .cta::after {
      width: 300px;
      height: 300px;
      right: 10%;
      bottom: 18%;
      background: radial-gradient(circle, rgba(255,98,253,0.14), transparent 72%);
    }

    .cta-window {
      position: relative;
      z-index: 1;
      max-width: var(--max-width);
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(10,9,21,0.2), 0 8px 32px rgba(10,9,21,0.1);
    }

    .cta-window-bar {
      background: var(--bg-dark-card);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid rgba(134,108,254,0.1);
    }

    .cta-window-dots {
      display: flex;
      gap: 7px;
    }

    .cta-window-dots span {
      width: 11px;
      height: 11px;
      border-radius: 50%;
    }
    .cta-window-dots span:nth-child(1) { background: var(--pink); }
    .cta-window-dots span:nth-child(2) { background: var(--purple); }
    .cta-window-dots span:nth-child(3) { background: var(--blue); }

    .cta-window-title {
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-left: 12px;
    }

    .cta-window-body {
      background: var(--bg-deep);
      padding: 52px 56px 54px;
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.92fr);
      gap: 44px;
      align-items: center;
    }

    .cta-copy {
      max-width: 600px;
    }

    .cta-logo {
      margin: 0 0 24px;
    }

    .cta-logo img {
      height: 48px;
      width: auto;
      filter: drop-shadow(0 0 12px rgba(134,108,254,0.35));
    }

    .cta h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(1.5rem, 3vw, 2rem);
      line-height: 1.25;
      color: var(--white);
      margin-bottom: 14px;
    }

    .cta-window-body > p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      max-width: 480px;
      margin: 0 auto 32px;
      line-height: 1.75;
    }

    .cta-copy p {
      font-size: 0.98rem;
      color: var(--text-secondary);
      max-width: 560px;
      line-height: 1.75;
      margin: 0;
    }

    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .cta-support {
      margin-top: 22px;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.88rem;
      letter-spacing: 0.02em;
      color: var(--text-muted);
      max-width: 440px;
    }

    .cta-actions {
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
      border: 1px solid rgba(134,108,254,0.14);
      border-radius: 16px;
      padding: 22px;
      width: 100%;
      max-width: 360px;
      justify-self: end;
    }

    .cta-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .cta-actions-note {
      margin-top: 14px;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.86rem;
      letter-spacing: 0.01em;
      color: var(--text-muted);
      text-align: center;
    }

    .cta .btn-primary {
      animation: glow-pulse 3.5s ease-in-out infinite;
    }

    @keyframes glow-pulse {
      0%, 100% { box-shadow: 0 0 24px rgba(255,98,253,0.3); }
      50% { box-shadow: 0 0 48px rgba(255,98,253,0.5), 0 0 100px rgba(255,98,253,0.15); }
    }

    /* ── Footer ──────────────────────────────────── */
    .footer {
      padding: 56px 24px 32px;
      background: var(--bg-deep);
      color: var(--white);
      border-top: 3px solid;
      border-image: linear-gradient(90deg, var(--blue), var(--purple), var(--pink), var(--blue)) 1;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand { overflow: hidden; }
    .footer-brand img { height: 36px; margin-bottom: 16px; filter: drop-shadow(0 0 1px rgba(255,255,255,0.45)) drop-shadow(0 0 3px rgba(134,108,254,0.3)); }
    .footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 300px; line-height: 1.65; }
    .footer-affiliation {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 14px 18px;
      min-height: 64px;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      text-decoration: none;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .footer-affiliation:hover {
      transform: translateY(-2px);
      border-color: rgba(230,45,45,0.26);
      box-shadow: 0 16px 34px rgba(10,9,21,0.22);
    }
    .footer-affiliation:focus-visible {
      outline: 2px solid #e84855;
      outline-offset: 4px;
    }
    .footer-affiliation-mark {
      flex: 0 0 auto;
      width: 50px;
      display: flex;
      align-items: center;
    }
    .footer-affiliation-mark img {
      width: 100%;
      height: auto;
      margin: 0;
      filter: none;
    }
    .footer-affiliation-copy {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }
    .footer-affiliation-copy strong {
      font-family: var(--font-heading);
      font-size: 0.98rem;
      line-height: 1.15;
      color: var(--white);
    }
    .footer-affiliation-copy span {
      font-size: 0.82rem;
      line-height: 1.35;
      color: rgba(255,255,255,0.72);
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: var(--text-muted);
    }

    .footer-col a {
      display: block;
      font-size: 0.94rem;
      color: var(--text-secondary);
      margin-bottom: 12px;
      transition: color 0.2s ease;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-col a:focus-visible,
    .footer-bottom-links a:focus-visible {
      outline: 2px solid var(--pink);
      outline-offset: 4px;
      border-radius: 3px;
    }

    .footer-bottom {
      max-width: var(--max-width);
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.84rem;
      color: var(--text-muted);
    }

    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { transition: color 0.2s ease; }
    .footer-bottom-links a:hover { color: var(--white); }

    /* ── Animations ──────────────────────────────── */
    /* Hidden state only applies when JS is available (see header.php).
       Without JS the content renders immediately — no blank sections. */
    .js .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .js .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Responsive ──────────────────────────────── */
    @media (max-width: 900px) {
      .hero {
        padding: calc(120px + env(safe-area-inset-top)) 22px 80px;
      }
      .hero-usp {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

      .side-label { display: none; }

      .how-it-works,
      .features,
      .platforms,
      .social-proof {
        padding-left: 24px;
      }

      .timeline-line { display: none; }
      .timeline-steps {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .platforms-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .platforms-visual {
        position: static;
        top: auto;
        order: -1;
      }

      .ai-showcase-highlights {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 720px;
        margin-bottom: 28px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
      }

      .stat,
      .stat:nth-child(4),
      .stat:nth-child(5) {
        grid-column: auto;
      }

      /* Lone 5th stat spans the full width so it stays centered. */
      .stat:nth-child(5) {
        grid-column: 1 / -1;
      }

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

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

      .cta-window-body {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .cta-actions {
        max-width: 520px;
        width: 100%;
        justify-self: start;
      }
    }

    @media (max-width: 1500px) {
      .nav-inner {
        gap: 14px;
      }

      .nav-logo img {
        height: 36px;
      }

      .nav-links {
        gap: 14px;
      }

      .nav-links a {
        font-size: 0.83rem;
      }

      .nav-cta .btn {
        padding: 12px 16px;
        font-size: 0.84rem;
      }
    }

    @media (max-width: 1220px) {
      .social-proof .side-label {
        display: none;
      }

      .nav-inner {
        gap: 14px;
      }

      .nav-links {
        gap: 16px;
      }

      .nav-links a {
        font-size: 0.82rem;
      }

      .nav-cta .btn {
        padding: 12px 16px;
        font-size: 0.82rem;
      }
    }

    @media (max-width: 1120px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-mobile-toggle { display: flex; }
      .nav-lang { order: -1; margin-right: auto; margin-left: 12px; }

      .section-label {
        font-size: 0.78rem;
        padding: 10px 18px;
      }

      .hero-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        padding: 12px 16px;
      }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(72px + env(safe-area-inset-top));
        left: 0;
        right: 0;
        min-height: calc(100svh - 72px - env(safe-area-inset-top));
        background: rgba(255,255,255,0.99);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 32px 24px 40px;
        gap: 12px;
        border-bottom: 1px solid rgba(134,108,254,0.08);
        box-shadow: 0 24px 56px rgba(26,26,46,0.12);
      }

      .nav-links.open a {
        color: var(--text-dark-sub);
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        min-height: 44px;
      }
    }

    @media (max-width: 1240px) {
      html[lang^="es"] .nav-links { display: none; }
      html[lang^="es"] .nav-cta { display: none; }
      html[lang^="es"] .nav-mobile-toggle { display: flex; }
      html[lang^="es"] .nav-lang { order: -1; margin-right: auto; margin-left: 12px; }

      html[lang^="es"] .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(72px + env(safe-area-inset-top));
        left: 0;
        right: 0;
        min-height: calc(100svh - 72px - env(safe-area-inset-top));
        background: rgba(255,255,255,0.99);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 32px 24px 40px;
        gap: 12px;
        border-bottom: 1px solid rgba(134,108,254,0.08);
        box-shadow: 0 24px 56px rgba(26,26,46,0.12);
      }

      html[lang^="es"] .nav-links.open a {
        color: var(--text-dark-sub);
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        min-height: 44px;
      }
    }

    @media (max-width: 640px) {

      .hero { padding: calc(104px + env(safe-area-inset-top)) 18px 64px; }

      .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
      }
      .hero-cta-row .btn {
        width: 100%;
        justify-content: center;
      }
      .hero-usp-card { padding: 24px 22px; }

      .how-it-works { padding: 100px 20px; }
      .features { padding: 100px 20px; }
      .platforms { padding: 100px 20px; }
      .ai-showcase { padding: 96px 20px 0; }
      .ai-showcase-footer { padding-bottom: 80px; }
      .budget-flex { padding: 100px 20px; }
      .social-proof { padding: 100px 20px; }
      .cta { padding: 80px 16px; }

      .cta-window-body {
        padding: 38px 24px;
        gap: 22px;
      }

      .cta-logo {
        margin-bottom: 22px;
      }

      .cta-actions {
        padding: 18px;
      }

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

      .stat,
      .stat:nth-child(4),
      .stat:nth-child(5) {
        grid-column: auto;
      }

      .platforms-mockup {
        padding: 28px 22px;
      }

      .mockup-row {
        gap: 12px;
      }

      .budget-highlights {
        flex-direction: column;
        gap: 14px;
      }

      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .footer-affiliation {
        width: 100%;
        justify-content: space-between;
      }
      .footer-affiliation-mark {
        width: 132px;
      }
    }

/* ── M2C subpage styles (added for WordPress migration) ────────────── */

.m2c-page { padding-top: 0; }

.page-hero {
  background: var(--bg-light-warm);
  padding: 180px 32px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,108,254,0.08), rgba(255,98,253,0.04), transparent 70%);
  top: -20%;
  right: -10%;
  filter: blur(80px);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--text-dark);
  line-height: 1.1;
  margin: 18px auto 22px;
  max-width: 18ch;
}
.page-hero-subtitle {
  color: var(--text-dark-sub);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 60ch;
  margin: 0 auto;
}

.m2c-page--hiw .page-hero {
  padding-bottom: 56px;
}

.m2c-page--hiw .how-it-works--no-intro {
  padding-top: 48px;
}

.m2c-prose {
  background: var(--bg-light);
  padding: 80px 32px;
}
.m2c-prose-inner {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-dark-sub);
  font-size: 1.05rem;
  line-height: 1.75;
}
.m2c-prose--narrow .m2c-prose-inner { max-width: 680px; }
.m2c-prose-inner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.7rem;
  margin: 48px 0 16px;
  line-height: 1.25;
}
.m2c-prose-inner h2:first-child { margin-top: 0; }
.m2c-prose-inner h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.2rem;
  margin: 32px 0 12px;
}
.m2c-prose-inner p { margin-bottom: 18px; }
.m2c-prose-inner ul,
.m2c-prose-inner ol { margin: 0 0 22px 1.2em; padding-left: 0.8em; }
.m2c-prose-inner ul { list-style: disc; }
.m2c-prose-inner ol { list-style: decimal; }
.m2c-prose-inner li { margin-bottom: 8px; }
.m2c-prose-inner a {
  color: var(--purple);
  border-bottom: 1px solid rgba(134,108,254,0.3);
  transition: border-color 0.2s ease;
}
.m2c-prose-inner a:hover { border-bottom-color: var(--purple); }
.m2c-prose-inner a:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 3px;
}
.m2c-prose-inner strong { color: var(--text-dark); }

/* FAQ list */
.faq-section {
  background: var(--bg-light-warm);
  padding: 80px 32px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-category {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4f39cf;
  margin: 28px 0 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(134,108,254,0.18);
  line-height: 1.3;
}
.faq-category:first-child {
  margin-top: 0;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid rgba(134,108,254,0.12);
  border-radius: 12px;
  padding: 22px 26px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(134,108,254,0.32);
  box-shadow: 0 8px 28px rgba(134,108,254,0.08);
}
.faq-question {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
  line-height: 1.5;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 6px;
  border-radius: 6px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--purple);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  margin-top: 14px;
  color: var(--text-dark-sub);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* Pricing (V6 — pricing philosophy) */
.pricing-section {
  background: var(--bg-light);
  padding: 90px 32px 110px;
}
.pricing-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg-white);
  border: 1px solid rgba(134,108,254,0.16);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(26,26,46,0.06);
}
.pricing-card h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.pricing-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark-sub);
}
.pricing-cta {
  text-align: center;
  margin-top: 56px;
}
@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-section { padding: 70px 20px 90px; }
}

/* People (V6 — /about founders + who/where) */
.people {
  background: var(--bg-light-warm);
  padding: 100px 32px;
}
.people-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.people-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.people-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin: 16px 0 18px;
}
.people-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark-sub);
}
.people-founders {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.founder-card {
  background: var(--bg-white);
  border: 1px solid rgba(134,108,254,0.16);
  border-radius: 16px;
  padding: 28px 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(26,26,46,0.06);
  min-width: 200px;
}
.founder-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--blue));
}
.founder-card:nth-child(2) .founder-photo {
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
.founder-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
}
.people-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}
.people-col h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.people-col p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark-sub);
}
@media (max-width: 720px) {
  .people { padding: 80px 20px; }
  .people-cols { grid-template-columns: 1fr; gap: 28px; }
}

/* Contact card */
.contact-card-section {
  background: var(--bg-light);
  padding: 60px 32px 100px;
}

/* Contact layout (V6 — form + trust aside) */
.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-col {
  background: var(--bg-white);
  border: 1px solid rgba(134,108,254,0.16);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 12px 40px rgba(26,26,46,0.06);
}
.contact-sidebar {
  display: grid;
  gap: 24px;
  align-self: start;
}
.contact-form-col .wpforms-field-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 8px;
}
.contact-form-col input[type="text"],
.contact-form-col input[type="email"],
.contact-form-col input[type="tel"],
.contact-form-col select,
.contact-form-col textarea {
  font-family: var(--font-body);
  border: 1px solid rgba(26,26,46,0.16);
  border-radius: 8px;
  font-size: 1rem !important;
  line-height: 1.5;
  color: var(--text-dark);
  min-height: 48px;
}
.contact-form-col textarea { min-height: 148px; }
.contact-form-col input:focus,
.contact-form-col select:focus,
.contact-form-col textarea:focus {
  border-color: var(--purple);
  outline: none;
  box-shadow: 0 0 0 3px rgba(134,108,254,0.15);
}
.contact-form-col input:focus-visible,
.contact-form-col select:focus-visible,
.contact-form-col textarea:focus-visible {
  outline: 2px solid transparent;
}
.contact-form-col .wpforms-submit {
  font-family: var(--font-heading);
  font-weight: 700;
  background: linear-gradient(115deg, #ff62fd 0%, #ff8ffe 100%) !important;
  color: #170d27 !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 14px 32px !important;
  box-shadow: 0 0 24px rgba(255,98,253,0.25);
  transition: all 0.25s ease;
  font-size: 1rem !important;
  min-height: 48px;
}
.contact-form-col .wpforms-submit:hover {
  background: linear-gradient(115deg, #ff7bfe 0%, #ffb0ff 100%) !important;
  transform: translateY(-2px);
}
.contact-form-col .wpforms-submit:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}
.contact-trust {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(134,108,254,0.14);
  border-radius: 18px;
  padding: 28px 28px 30px;
  box-shadow: 0 12px 34px rgba(26,26,46,0.05);
}
.contact-trust h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.contact-trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-trust-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-dark-sub);
  font-size: 1rem;
  line-height: 1.65;
}
.contact-trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(-45deg);
}
.contact-trust-email {
  font-size: 0.95rem;
  color: var(--text-dark-sub);
}
.contact-trust-email a {
  color: var(--purple);
  font-family: var(--font-heading);
  font-weight: 600;
}
.contact-location-card {
  background:
    radial-gradient(circle at top left, rgba(255,98,253,0.16), transparent 38%),
    radial-gradient(circle at top right, rgba(0,120,255,0.16), transparent 42%),
    linear-gradient(180deg, #151427 0%, #0d0c1a 100%);
  border: 1px solid rgba(134,108,254,0.16);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(10,9,21,0.18);
  color: var(--text-primary);
}
.contact-location-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    linear-gradient(135deg, rgba(134,108,254,0.12), rgba(255,98,253,0.08));
}
.contact-location-visual::before,
.contact-location-visual::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
}
.contact-location-visual::before {
  width: 180px;
  height: 180px;
  top: -48px;
  right: -42px;
  background: rgba(255,98,253,0.12);
}
.contact-location-visual::after {
  width: 160px;
  height: 160px;
  left: -34px;
  bottom: -46px;
  background: rgba(0,120,255,0.12);
}
.contact-location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.contact-map-block {
  fill: rgba(255,255,255,0.045);
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
}
.contact-map-road {
  stroke: rgba(255,255,255,0.3);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-map-road--major {
  stroke: rgba(255,255,255,0.4);
  stroke-width: 12;
}
.contact-map-road--minor {
  stroke: rgba(255,255,255,0.22);
  stroke-width: 5;
}
.contact-map-poi {
  fill: rgba(255,255,255,0.8);
  opacity: 0.72;
}
.contact-map-label {
  fill: rgba(255,255,255,0.62);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.contact-location-pin {
  position: absolute;
  left: 56%;
  top: 48%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(12,11,24,0.72);
  box-shadow: 0 12px 30px rgba(10,9,21,0.26);
}
.contact-location-pin-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 0 5px rgba(255,98,253,0.12);
}
.contact-location-pin-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
}
.contact-location-pin-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
}
.contact-location-copy {
  padding: 26px 28px 30px;
}
.contact-location-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(216,207,255,0.9);
}
.contact-location-copy h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-location-copy p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.contact-location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-location-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.92);
}
.contact-location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #f2eaff;
}
.contact-location-link::after {
  content: '↗';
  font-size: 0.92em;
}
.contact-location-link:hover {
  color: var(--pink);
}
.contact-location-link:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-sidebar {
    gap: 20px;
  }
}
.contact-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid rgba(134,108,254,0.16);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(26,26,46,0.06);
}
.contact-card h2 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.contact-card p {
  color: var(--text-dark-sub);
  font-size: 0.98rem;
  margin-bottom: 24px;
}
.contact-card-meta {
  margin-top: 22px;
  font-size: 0.9rem;
}
.contact-card-meta a {
  color: var(--purple);
  font-family: var(--font-heading);
  font-weight: 600;
}

@media (max-width: 640px) {
  .page-hero { padding: 140px 20px 60px; }
  .m2c-prose, .faq-section, .contact-card-section { padding-left: 20px; padding-right: 20px; }
  .contact-card { padding: 32px 24px; }
}

/* ── Section CTA links (front-page only, link to subpage detail) ────── */
.section-cta {
  display: flex;
  justify-content: center;
  margin: 56px auto 0;
  padding: 0 32px;
}
.section-cta--inline {
  justify-content: flex-start;
  margin: 26px 0 0;
  padding: 0;
}
.section-cta-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple);
  border-bottom: 1px solid rgba(134,108,254,0.4);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.section-cta-link:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
  transform: translateX(4px);
}
.section-cta-link:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 6px;
  border-radius: 2px;
}
.section-cta-link--dark {
  color: #c8b9ff;
  border-bottom-color: rgba(200,185,255,0.4);
}
.section-cta-link--dark:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* ── Accessibility helpers ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--purple);
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 6px 0;
  z-index: 10000;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--pink);
  outline-offset: -3px;
}

/* Focus-visible defaults for interactive elements */
.btn:focus-visible,
.nav-mobile-toggle:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

body.nav-open {
  overflow: hidden;
}

/* Higher-contrast tweaks for body-level low-contrast spots
   without changing the existing layout. */
.footer-bottom span,
.footer-bottom a { color: rgba(255,255,255,0.78); }
.footer-bottom a:hover { color: var(--white); }

/* ── Service Cards section (on /services) ───────────────────────────── */
.services-grid-section {
  background: var(--bg-light);
  padding: 100px 32px;
  position: relative;
}
.services-grid-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.services-grid-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.services-grid-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin: 18px 0 16px;
}
.services-grid-header p {
  color: var(--text-dark-sub);
  font-size: 1rem;
  line-height: 1.65;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid rgba(134,108,254,0.14);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: rgba(134,108,254,0.22);
}
.service-card:hover {
  border-color: rgba(134,108,254,0.32);
  box-shadow: 0 14px 40px rgba(134,108,254,0.1);
  transform: translateY(-3px);
}
.service-card--google::before { background: var(--blue); }
.service-card--facebook::before { background: var(--purple); }
.service-card--instagram::before { background: var(--pink); }
.service-card--budget::before { background: linear-gradient(180deg, var(--purple), var(--pink)); }
.service-card--google:hover {
  border-color: rgba(44, 123, 255, 0.32);
  box-shadow: 0 14px 40px rgba(44, 123, 255, 0.11);
}
.service-card--facebook:hover {
  border-color: rgba(134,108,254,0.32);
  box-shadow: 0 14px 40px rgba(134,108,254,0.12);
}
.service-card--instagram:hover {
  border-color: rgba(255,98,253,0.32);
  box-shadow: 0 14px 40px rgba(255,98,253,0.12);
}
.service-card--budget:hover {
  border-color: rgba(220,102,255,0.26);
  box-shadow: 0 14px 40px rgba(181,101,255,0.12);
}
.service-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light-warm);
  border-radius: 10px;
  margin-bottom: 18px;
}
.service-card--google .service-card-icon { background: rgba(44, 123, 255, 0.08); }
.service-card--facebook .service-card-icon { background: rgba(134,108,254,0.08); }
.service-card--instagram .service-card-icon { background: rgba(255,98,253,0.08); }
.service-card--budget .service-card-icon { background: rgba(210,119,255,0.08); }
.service-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card-lead {
  color: var(--text-dark-sub);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.service-card-meta {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-card-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card-bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dark-sub);
  font-size: 0.92rem;
  line-height: 1.5;
}
.service-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-section { padding: 72px 20px; }
}

/* ── Origin story / brand box (on /about) ───────────────────────────── */
.origin-story {
  background: var(--bg-dark);
  color: var(--text-secondary);
  padding: 88px 32px;
  position: relative;
  overflow: hidden;
}
.origin-story::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,108,254,0.18), rgba(255,98,253,0.06), transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(80px);
  pointer-events: none;
}
.origin-story-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.origin-story h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.2;
  margin: 16px 0 22px;
}
.origin-story p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.origin-story-credits {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.origin-story-credit {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(134,108,254,0.3);
  padding: 8px 16px;
  border-radius: 100px;
}

@media (max-width: 640px) {
  .origin-story { padding: 64px 20px; }
}

/* ===== Services — real ad examples (editable page-content block) ===== */
.m2c-ad-examples {
  width: min(var(--max-width), 92vw);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 64px auto 8px;
  text-align: center;
}
.m2c-prose-inner .m2c-ad-examples h2 {
  margin: 0 0 14px;
  font-size: 1.7rem;
}
.m2c-ad-examples__intro {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--text-dark-sub);
}
.m2c-ad-examples__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}
.m2c-ad-example {
  margin: 0;
}
.m2c-ad-example__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--bg-white);
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 50px -30px rgba(26, 26, 46, 0.55);
}
.m2c-ad-example__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.m2c-ad-example__caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.m2c-ad-example__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--platform-accent, var(--purple));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--platform-accent, var(--purple)) 18%, transparent);
}
.m2c-ad-example--google { --platform-accent: var(--blue); }
.m2c-ad-example--instagram { --platform-accent: var(--pink); }
.m2c-ad-example--facebook { --platform-accent: var(--purple); }
/* Lead-in: when this block IS the page's prose content (e.g. How It Works),
   reduce the gap above so it stays connected to the section before it without
   reading as the end of the page. Only the section's own top padding is trimmed
   (no negative margin), so the block stays cleanly inside its own background and
   the section boundary is preserved. Scoped via :has() so other prose pages keep
   their normal spacing. */
.m2c-prose:has(.m2c-ad-examples) {
  padding-top: 32px;
}
.m2c-prose:has(.m2c-ad-examples) .m2c-prose-inner > p:first-child {
  margin: 0;
}
.m2c-prose:has(.m2c-ad-examples) .m2c-ad-examples {
  margin-top: 8px;
}
@media (max-width: 720px) {
  .m2c-ad-examples { margin-top: 44px; }
  .m2c-ad-examples__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
    gap: 22px;
  }
}
