

    /* ───────── Hero ───────── */
    .hero{
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding: 8rem 0 4rem;
    }
    .hero-bg{
      position: absolute; inset: 0;
      background: url('https://studiozone.hu/img/new/studiozone-2026-136_compressed.webp') center 30%/cover no-repeat;
      transform: scale(1.05);
      filter: brightness(0.55) saturate(1.05);
      z-index: 0;
    }
    .hero-bg::after{
      content: "";
      position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(8,9,12,0.55) 0%, rgba(8,9,12,0.25) 35%, rgba(8,9,12,0.85) 80%, var(--bg-1) 100%),
        linear-gradient(90deg, rgba(8,9,12,0.7), transparent 60%);
    }
    .hero-content{
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--pad);
    }
    .hero h1{
      max-width: 16ch;
      margin: 1.25rem 0 1.5rem;
      text-wrap: balance;
    }
    .hero h1 .y{ color: var(--accent); }
    .hero-lead{
      max-width: 56ch;
      font-size: clamp(1.05rem, 1.4vw, 1.2rem);
      color: var(--text);
      opacity: .9;
      margin-bottom: 2.25rem;
    }
    .hero-lead strong{ color: var(--accent); font-weight: 600; }
    .hero-buttons{ display: flex; gap: .75rem; flex-wrap: wrap; }
    .hero-meta{
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-top: 3.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--line);
    }
    .hero-meta-item{
      display: flex; flex-direction: column; gap: .15rem;
    }
    .hero-meta-item b{ color: var(--accent); font-size: 1.6rem; font-weight: 800; }
    .hero-meta-item span{ font-size: .82rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

    .scroll-cue{
      position: absolute;
      left: 50%; bottom: 1.75rem;
      transform: translateX(-50%);
      z-index: 3;
      color: var(--muted);
      font-size: .72rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
    }
    .scroll-cue::after{
      content: "";
      width: 1px; height: 40px;
      background: linear-gradient(180deg, var(--accent), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine{
      0%,100%{ opacity: .3; height: 24px; }
      50%{ opacity: 1; height: 48px; }
    }

    /* ───────── Marquee ───────── */
    .marquee{
      border-block: 1px solid var(--line);
      background: var(--bg-2);
      padding: 1.4rem 0;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    }
    .marquee-track{
      display: flex; gap: 3rem;
      animation: scroll-x 40s linear infinite;
      width: max-content;
    }
    .marquee-item{
      display: inline-flex; align-items: center; gap: 1rem;
      font-size: clamp(1.2rem, 2vw, 1.8rem);
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .marquee-item .dot{
      width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
      flex-shrink: 0;
    }
    @keyframes scroll-x{
      from{ transform: translateX(0); }
      to{ transform: translateX(-50%); }
    }

    /* ───────── Section base ───────── */
    section.block{
      padding: clamp(4rem, 8vw, 7rem) 0;
      position: relative;
      z-index: 2;
    }
    .section-head{
      max-width: 720px;
      margin-bottom: 3rem;
    }
    .section-head.center{
      margin-left: auto; margin-right: auto; text-align: center;
    }
    .section-head h2{ margin: 1rem 0 1rem; text-wrap: balance; }
    .section-head p{ font-size: 1.05rem; line-height: 1.65; }

    /* ───────── Stats / ON AIR ───────── */
    .onair-q-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin: 2.5rem 0 4rem;
    }
    .onair-q{
      padding: 1.75rem 1.5rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-2);
      color: var(--text);
      font-size: 1.05rem;
      line-height: 1.55;
      position: relative;
      transition: border-color .3s ease, transform .3s ease, background .3s ease;
    }
    .onair-q::before{
      content: "?";
      position: absolute;
      top: -14px; left: 1.5rem;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--accent);
      color: #0a0a0a;
      font-weight: 800; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
    }
    .onair-q:hover{
      transform: translateY(-3px);
      border-color: rgba(251,191,36,0.4);
      background: var(--bg-3);
    }

    .onair-summary{
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3rem;
    }
    .onair-summary .accent-line{
      color: var(--accent); font-size: 1.4rem; font-weight: 700; margin-bottom: .75rem;
    }

    .video-frame{
      position: relative;
      aspect-ratio: 16/9;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--line-strong);
      margin-bottom: 5rem;
    }
    .video-frame iframe{
      position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
    }

    .stats-card{
      background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
      border: 1px solid var(--line-strong);
      border-radius: var(--radius-lg);
      padding: clamp(2rem, 4vw, 3.5rem);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .stats-card::before{
      content: "";
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    .stats-card h3{
      color: var(--accent);
      font-size: 1.05rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 1rem;
    }
    .stats-card .lead{
      text-align: center; color: var(--muted); margin: 0 auto 2.5rem; max-width: 56ch;
    }
    .stats-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .stat{
      padding: 2rem 1.5rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(0,0,0,0.25);
      text-align: center;
      transition: transform .3s ease, border-color .3s ease;
    }
    .stat:hover{ transform: translateY(-3px); border-color: rgba(251,191,36,0.35); }
    .stat-num{
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      letter-spacing: -0.04em;
      display: block;
      margin-bottom: .85rem;
    }
    .stat p{ color: var(--muted); font-size: .95rem; line-height: 1.55; }

    .stats-conclusion{
      text-align: center; color: var(--text); font-size: 1.1rem;
      margin: 2rem auto 1.5rem; max-width: 60ch;
      font-style: italic;
    }
    .stats-final{
      background: rgba(251,191,36,0.06);
      border: 1px solid rgba(251,191,36,0.25);
      border-radius: var(--radius);
      padding: 1.5rem 2rem;
      text-align: center;
      color: var(--accent);
      font-weight: 600;
      font-size: 1.05rem;
      line-height: 1.6;
    }

    /* ───────── CTA banner ───────── */
    .cta-strip{
      padding: 3rem 0;
      background: linear-gradient(90deg, rgba(251,191,36,0.08), transparent 65%);
      border-block: 1px solid var(--line);
    }
    .cta-strip-inner{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .cta-strip h3{
      font-size: clamp(1.3rem, 2.6vw, 2rem);
      max-width: 30ch;
      line-height: 1.2;
    }
    .cta-strip h3 .y{ color: var(--accent); }

    /* ───────── Studios ───────── */
    .studios-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .studio-card{
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      transition: transform .35s ease, border-color .35s ease;
    }
    .studio-card:hover{ transform: translateY(-5px); border-color: rgba(251,191,36,0.3); }
    .studio-img{
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    .studio-img img{
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity .8s ease, transform .6s ease;
    }
    .studio-img img.active{ opacity: 1; }
    .studio-card:hover .studio-img img.active{ transform: scale(1.04); }
    .studio-img::after{
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
      pointer-events: none;
    }
    .studio-tag{
      position: absolute;
      top: 1rem; left: 1rem;
      z-index: 2;
      background: rgba(8,9,12,0.7);
      backdrop-filter: blur(10px);
      border: 1px solid var(--line-strong);
      color: var(--accent);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-weight: 700;
      padding: .4rem .9rem;
      border-radius: 999px;
    }
    .studio-dots{
      position: absolute;
      bottom: 1rem; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 6px;
      z-index: 2;
    }
    .studio-dots button{
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      border: none; padding: 0; cursor: pointer;
      transition: background .25s, width .25s;
    }
    .studio-dots button.active{ background: var(--accent); width: 24px; border-radius: 4px; }
    .studio-body{ padding: 2rem; display: flex; flex-direction: column; flex: 1; }
    .studio-body h3{ color: var(--text); font-size: 1.7rem; margin-bottom: .65rem; }
    .studio-body h3 em{ color: var(--accent); font-style: normal; }
    .studio-body > p{ color: var(--muted); margin-bottom: 1.5rem; line-height: 1.65; }
    .studio-features{ list-style: none; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
    .studio-features li{ display: flex; gap: .85rem; }
    .feat-icon{
      flex-shrink: 0;
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(251,191,36,0.1);
      border: 1px solid rgba(251,191,36,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .studio-features strong{ color: var(--text); font-size: .95rem; display: block; margin-bottom: .15rem; }
    .studio-features span{ color: var(--muted); font-size: .88rem; line-height: 1.5; }
    .studio-foot{
      margin-top: 1.5rem; padding-top: 1.25rem;
      border-top: 1px solid var(--line);
      display: flex; align-items: center; justify-content: space-between;
      gap: .75rem; flex-wrap: wrap;
      font-size: .85rem; color: var(--muted);
    }
    .studio-foot .cap b{ color: var(--accent); font-weight: 700; }
    .studio-foot .tags{ font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }

    /* ───────── Services (alternating image rows) ───────── */
    .service-row{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      margin-bottom: 5rem;
    }
    .service-row:last-child{ margin-bottom: 0; }
    .service-row.reverse .service-text{ order: 2; }
    .service-row.reverse .service-media{ order: 1; }
    .service-media{
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: var(--shadow);
      border: 1px solid var(--line-strong);
    }
    .service-media img{
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .8s ease;
    }
    .service-media:hover img{ transform: scale(1.04); }
    .service-num{
      position: absolute;
      top: 1rem; left: 1rem;
      font-family: var(--font);
      font-weight: 800;
      font-size: 5rem;
      line-height: 1;
      color: rgba(251,191,36,0.85);
      letter-spacing: -0.05em;
      text-shadow: 0 4px 16px rgba(0,0,0,0.6);
      z-index: 2;
    }
    .service-text h3{
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 1.1rem;
      text-wrap: balance;
    }
    .service-text p{
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      max-width: 52ch;
    }

    /* ───────── Content types & multi-platform ───────── */
    .types-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: .85rem;
      margin-bottom: 4rem;
    }
    .type-pill{
      padding: 1.1rem 1.25rem;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--bg-2);
      text-align: center;
      font-weight: 600;
      color: var(--text);
      font-size: 1rem;
      transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
    }
    .type-pill:hover{
      transform: translateY(-3px);
      border-color: var(--accent);
      background: rgba(251,191,36,0.08);
      color: var(--accent);
    }
    .platform-row{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin: 2rem 0;
    }
    .platform-card{
      padding: 2rem 1.5rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-2);
      text-align: center;
      transition: transform .25s ease, border-color .25s ease;
    }
    .platform-card:hover{ transform: translateY(-3px); border-color: rgba(251,191,36,0.35); }
    .platform-card .ic{ font-size: 2rem; margin-bottom: .85rem; display: block; }
    .platform-card h4{ color: var(--accent); font-size: 1.1rem; margin-bottom: .4rem; }
    .platform-card p{ font-size: .92rem; color: var(--muted); line-height: 1.5; }

    /* ───────── Suitability ───────── */
    .suit-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .suit-card{
      padding: 2rem;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--bg-2);
      transition: border-color .3s ease, transform .3s ease;
    }
    .suit-card:hover{ transform: translateY(-3px); }
    .suit-card.yes{ border-color: rgba(251,191,36,0.25); }
    .suit-card.no{ border-color: rgba(249,115,22,0.25); }
    .suit-card.yes:hover{ border-color: rgba(251,191,36,0.5); }
    .suit-card.no:hover{ border-color: rgba(249,115,22,0.5); }
    .suit-badge{
      display: inline-flex; align-items: center; gap: .45rem;
      padding: .4rem .85rem; border-radius: 999px;
      font-size: .78rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .suit-badge.yes{ background: rgba(251,191,36,0.14); color: var(--accent); border: 1px solid rgba(251,191,36,0.3); }
    .suit-badge.no{ background: rgba(249,115,22,0.14); color: var(--warn); border: 1px solid rgba(249,115,22,0.3); }
    .suit-list{ list-style: none; }
    .suit-list li{
      position: relative;
      padding-left: 1.75rem;
      margin-bottom: .9rem;
      color: var(--text); opacity: .85;
      line-height: 1.55;
    }
    .suit-list li::before{
      position: absolute; left: 0; top: .15rem;
      font-weight: 800; font-size: 1rem;
    }
    .suit-list.yes li::before{ content: "✓"; color: var(--accent); }
    .suit-list.no li::before{ content: "✕"; color: var(--warn); }

    .note-card{
      margin-top: 2.5rem;
      padding: 1.5rem 2rem;
      border-radius: var(--radius);
      background: rgba(251,191,36,0.06);
      border: 1px solid rgba(251,191,36,0.22);
      text-align: center;
      color: var(--text);
    }
    .note-card strong{ color: var(--accent); }

    /* ───────── Prep tips ───────── */
    .prep-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .prep-card{
      padding: 1.75rem;
      border-radius: var(--radius);
      background: var(--bg-2);
      border: 1px solid var(--line);
      transition: border-color .3s ease, transform .3s ease;
      position: relative;
      overflow: hidden;
    }
    .prep-card::before{
      content: "";
      position: absolute;
      top: -40%; right: -40%;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(251,191,36,0.15), transparent 60%);
      opacity: 0; transition: opacity .4s ease;
    }
    .prep-card:hover{ transform: translateY(-3px); border-color: rgba(251,191,36,0.3); }
    .prep-card:hover::before{ opacity: 1; }
    .prep-icon{
      font-size: 1.6rem; margin-bottom: .85rem; display: block;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(251,191,36,0.1);
      border: 1px solid rgba(251,191,36,0.2);
      display: flex; align-items: center; justify-content: center;
    }
    .prep-card h3{ color: var(--text); font-size: 1.1rem; margin-bottom: .55rem; }
    .prep-card p{ font-size: .95rem; line-height: 1.6; }

    /* ───────── Mistakes ───────── */
    .mistakes-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .mistake-card{
      padding: 1.75rem;
      border-radius: var(--radius);
      background: var(--bg-2);
      border: 1px solid rgba(249,115,22,0.18);
      transition: border-color .3s ease, transform .3s ease;
    }
    .mistake-card:hover{ transform: translateY(-3px); border-color: rgba(249,115,22,0.4); }
    .mistake-card .x{
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(249,115,22,0.14);
      border: 1px solid rgba(249,115,22,0.3);
      color: var(--warn);
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 800;
      margin-bottom: 1rem;
    }
    .mistake-card h3{ color: var(--text); font-size: 1.1rem; margin-bottom: .55rem; }
    .mistake-card p{ font-size: .95rem; line-height: 1.6; }
    .mistake-card b{ color: var(--accent); }

    /* ───────── Gallery (masonry) ───────── */
    .gallery-masonry{
      column-count: 4;
      column-gap: 1rem;
    }
    .gallery-item{
      display: block;
      width: 100%;
      margin: 0 0 1rem;
      padding: 0; border: 0;
      background: none;
      cursor: zoom-in;
      border-radius: var(--radius);
      overflow: hidden;
      break-inside: avoid;
      transition: transform .35s ease;
    }
    .gallery-item img{
      width: 100%; height: auto; display: block;
      transition: transform .6s ease;
    }
    .gallery-item:hover{ transform: translateY(-3px); }
    .gallery-item:hover img{ transform: scale(1.04); }
    @media (max-width: 1100px){ .gallery-masonry{ column-count: 3; } }
    @media (max-width: 720px){ .gallery-masonry{ column-count: 2; } }
    @media (max-width: 420px){ .gallery-masonry{ column-count: 1; } }

    .lightbox{
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(8px);
      display: none;
      align-items: center; justify-content: center;
      z-index: 9999;
      padding: 2rem;
    }
    .lightbox.active{ display: flex; }
    .lightbox img{ max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
    .lightbox-close{
      position: absolute; top: 1.25rem; right: 1.25rem;
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid var(--line-strong);
      background: rgba(0,0,0,0.6);
      color: var(--text);
      font-size: 1.5rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .lightbox-close:hover{ background: var(--accent); color: #000; border-color: var(--accent); }

    /* ───────── Process ───────── */
    .process-list{
      display: flex; flex-direction: column;
      gap: 1rem;
      max-width: 900px; margin: 0 auto 3rem;
      position: relative;
    }
    .process-step{
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 1.5rem;
      padding: 1.75rem 2rem;
      border-radius: var(--radius);
      background: var(--bg-2);
      border: 1px solid var(--line);
      transition: transform .3s ease, border-color .3s ease;
      align-items: start;
    }
    .process-step:hover{ transform: translateX(4px); border-color: rgba(251,191,36,0.3); }
    .step-num{
      width: 56px; height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #0a0a0a;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 1.4rem;
      box-shadow: 0 8px 20px rgba(251,191,36,0.3);
    }
    .step-body h3{ color: var(--text); font-size: 1.2rem; margin-bottom: .5rem; }
    .step-body p{ font-size: .98rem; line-height: 1.6; }

    /* ───────── Team ───────── */
    .team-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .team-card{
      padding: 2.5rem;
      border-radius: var(--radius-lg);
      background: var(--bg-2);
      border: 1px solid var(--line);
      text-align: center;
      transition: transform .35s ease, border-color .35s ease;
    }
    .team-card:hover{ transform: translateY(-5px); border-color: rgba(251,191,36,0.3); }
    .team-photo{
      width: 140px; height: 140px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--accent);
      box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    }
    .team-photo img{ width: 100%; height: 100%; object-fit: cover; }
    .team-card h3{ color: var(--accent); font-size: 1.4rem; margin-bottom: 1rem; }
    .team-card p{ font-size: 1.02rem; line-height: 1.65; }

    /* ───────── Testimonials (fix grid) ───────── */
    .testi-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .testi-card{
      padding: 2rem;
      border-radius: var(--radius);
      background: var(--bg-2);
      border: 1px solid var(--line);
      display: flex; flex-direction: column;
      transition: transform .3s ease, border-color .3s ease;
      position: relative;
    }
    .testi-card:hover{ transform: translateY(-4px); border-color: rgba(251,191,36,0.3); }
    .testi-card .stars{ color: var(--accent); font-size: .95rem; margin-bottom: 1rem; letter-spacing: .1em; }
    .testi-card blockquote{
      color: var(--text);
      font-size: 1rem;
      line-height: 1.6;
      flex: 1;
      margin-bottom: 1.5rem;
      position: relative;
    }
    .testi-card blockquote::before{
      content: '"';
      position: absolute;
      top: -2rem; left: -.5rem;
      font-size: 5rem;
      color: var(--accent);
      opacity: .15;
      font-family: Georgia, serif;
      line-height: 1;
    }
    .testi-card cite{
      color: var(--accent);
      font-style: normal;
      font-weight: 600;
      font-size: .9rem;
      padding-top: 1rem;
      border-top: 1px solid var(--line);
    }

    /* ───────── Value prop ───────── */
    .value-content h2{ text-align: center; margin-bottom: 1.5rem; max-width: 24ch; margin-left: auto; margin-right: auto; }
    .value-intro{ text-align: center; max-width: 60ch; margin: 0 auto 3rem; color: var(--text); opacity: .85; font-size: 1.1rem; }
    .compare-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .compare-card{
      padding: 2rem;
      border-radius: var(--radius);
      background: var(--bg-2);
      border: 1px solid var(--line);
      text-align: center;
      transition: transform .3s ease, border-color .3s ease;
    }
    .compare-card:hover{ transform: translateY(-3px); border-color: rgba(251,191,36,0.3); }
    .compare-icon{
      width: 56px; height: 56px;
      margin: 0 auto 1.25rem;
      border-radius: 14px;
      background: rgba(251,191,36,0.1);
      border: 1px solid rgba(251,191,36,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
    }
    .compare-card h3{ color: var(--accent); font-size: 1.2rem; margin-bottom: .65rem; }
    .compare-card p{ font-size: .98rem; line-height: 1.6; }
    .uncertainty{
      background: rgba(249,115,22,0.06);
      border: 1px solid rgba(249,115,22,0.25);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      color: var(--text);
      font-size: 1.1rem;
      font-style: italic;
      margin-bottom: 2.5rem;
    }
    .uncertainty b{ color: var(--warn); font-style: normal; }
    .solution{
      padding: 3rem 2rem;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(251,191,36,0.12), rgba(251,191,36,0.04));
      border: 1px solid rgba(251,191,36,0.3);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .solution::before{
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    .solution h3{ color: var(--accent); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.25rem; }
    .solution p{ color: var(--text); font-size: 1.1rem; line-height: 1.7; max-width: 60ch; margin: 0 auto .75rem; }
    .solution p.bold{ font-size: 1.2rem; font-weight: 600; }

    /* ───────── Pricing ───────── */
    .pricing-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      align-items: stretch;
    }
    .price-card{
      padding: 2.5rem 2rem;
      border-radius: var(--radius-lg);
      background: var(--bg-2);
      border: 1px solid var(--line);
      display: flex; flex-direction: column;
      position: relative;
      transition: transform .35s ease, border-color .35s ease;
    }
    .price-card:hover{ transform: translateY(-5px); border-color: rgba(251,191,36,0.3); }
    .price-card.featured{
      background: linear-gradient(180deg, rgba(251,191,36,0.1), var(--bg-2) 60%);
      border-color: var(--accent);
      transform: scale(1.04);
      box-shadow: 0 24px 60px rgba(251,191,36,0.18);
    }
    .price-card.featured:hover{ transform: scale(1.04) translateY(-5px); }
    .price-badge{
      position: absolute;
      top: -14px; left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #0a0a0a;
      padding: .35rem 1rem;
      border-radius: 999px;
      font-size: .72rem; font-weight: 800;
      letter-spacing: .12em; text-transform: uppercase;
      white-space: nowrap;
    }
    .price-icon{ font-size: 2rem; margin-bottom: 1rem; }
    .price-card h3{ font-size: 1.25rem; color: var(--text); margin-bottom: .85rem; }
    .price-card > p{ color: var(--muted); flex: 1; line-height: 1.6; margin-bottom: 1.75rem; font-size: .98rem; }
    .price-amount{ display: flex; align-items: baseline; gap: .5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
    .price-amount .num{ font-size: 2.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
    .price-card.featured .price-amount .num{ color: var(--accent); }
    .price-amount .unit{ color: var(--muted); font-size: .9rem; }

    .price-note{
      margin-top: 2.5rem;
      padding: 1.75rem 2rem;
      border-radius: var(--radius);
      background: rgba(251,191,36,0.06);
      border: 1px solid rgba(251,191,36,0.22);
      color: var(--text);
      line-height: 1.7;
      text-align: center;
    }
    .price-note strong{ color: var(--accent); }

    /* ───────── Info card ───────── */
    .info-card{
      max-width: 900px;
      margin: 4rem auto 0;
      padding: 2.5rem;
      border-radius: var(--radius-lg);
      background: var(--bg-2);
      border: 1px solid var(--line);
    }
    .info-card h3{ color: var(--accent); font-size: 1.3rem; margin-bottom: 1.25rem; }
    .info-card p{ margin-bottom: 1rem; line-height: 1.7; font-size: 1rem; }
    .info-card .emphasis{ color: var(--accent); font-weight: 600; padding-top: 1rem; border-top: 1px solid var(--line); margin-top: 1.5rem; }

    /* ───────── FAQ ───────── */
    .faq-list{ max-width: 820px; margin: 0 auto 3rem; }
    .faq-item{
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      margin-bottom: .65rem;
      overflow: hidden;
      transition: border-color .3s ease;
    }
    .faq-item.active{ border-color: rgba(251,191,36,0.4); }
    .faq-q{
      width: 100%;
      padding: 1.4rem 1.75rem;
      background: none; border: none;
      color: var(--text);
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem;
      transition: color .25s ease;
    }
    .faq-q:hover{ color: var(--accent); }
    .faq-icon{
      flex-shrink: 0;
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1px solid var(--line-strong);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
      transition: transform .3s ease, background .3s ease, border-color .3s ease;
    }
    .faq-item.active .faq-icon{
      transform: rotate(180deg);
      background: var(--accent);
      color: #0a0a0a;
      border-color: var(--accent);
    }
    .faq-a{
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq-item.active .faq-a{ max-height: 400px; padding: 0 1.75rem 1.4rem; }
    .faq-a p{ font-size: .98rem; line-height: 1.7; }
    .faq-a a{ color: var(--accent); border-bottom: 1px solid currentColor; }

    /* ───────── Contact ───────── */
    .contact-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-bottom: 3rem;
    }
    .contact-card{
      padding: 2rem;
      border-radius: var(--radius);
      background: var(--bg-2);
      border: 1px solid var(--line);
      text-align: center;
      transition: transform .3s ease, border-color .3s ease;
    }
    .contact-card:hover{ transform: translateY(-3px); border-color: rgba(251,191,36,0.3); }
    .contact-icon{
      width: 56px; height: 56px;
      margin: 0 auto 1rem;
      border-radius: 14px;
      background: rgba(251,191,36,0.1);
      border: 1px solid rgba(251,191,36,0.2);
      color: var(--accent);
      display: flex; align-items: center; justify-content: center;
    }
    .contact-avatar{
      width: 80px; height: 80px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--accent);
    }
    .contact-avatar img{ width: 100%; height: 100%; object-fit: cover; }
    .contact-card h3{ color: var(--accent); font-size: 1.15rem; margin-bottom: .85rem; }
    .contact-card p{ line-height: 1.7; font-size: .95rem; color: var(--text); }
    .contact-card a{ color: var(--text); transition: color .2s; }
    .contact-card a:hover{ color: var(--accent); }
    .contact-card .role{ color: var(--muted); font-size: .82rem; display: block; margin-top: .35rem; }

    .map-block{
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .address-card{
      padding: 2rem;
      border-radius: var(--radius);
      background: var(--bg-2);
      border: 1px solid var(--line);
    }
    .address-card .ic{
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(251,191,36,0.1);
      border: 1px solid rgba(251,191,36,0.2);
      color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1rem;
    }
    .address-card h3{ color: var(--accent); font-size: 1.2rem; margin-bottom: .85rem; }
    .address-card p{ color: var(--text); line-height: 1.65; margin-bottom: .65rem; }
    .address-card p.muted{ color: var(--muted); font-size: .9rem; }
    .map-embed{
      width: 100%; height: 100%; min-height: 320px;
      border: 0; border-radius: var(--radius);
      filter: grayscale(0.3) contrast(1.1);
    }

    /* ───────── Final CTA ───────── */
    .final-cta{
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before{
      content: "";
      position: absolute; inset: 0;
      background: radial-gradient(800px 400px at 50% 0%, rgba(251,191,36,0.12), transparent 70%);
      pointer-events: none;
    }
    .final-cta-card{
      max-width: 820px; margin: 0 auto;
      padding: clamp(2.5rem, 5vw, 4rem);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
      border: 1px solid var(--line-strong);
      box-shadow: var(--shadow);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta-card::before{
      content: "";
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    .final-cta-card .lead{ color: var(--muted); margin-bottom: 1.75rem; font-size: 1.05rem; }
    .final-cta-card h2{ color: var(--accent); margin-bottom: 1.5rem; }
    .final-list{ list-style: none; max-width: 480px; margin: 0 auto 2rem; text-align: left; }
    .final-list li{
      padding: .9rem 0;
      border-bottom: 1px solid var(--line);
      color: var(--text);
      display: flex; align-items: center; gap: .85rem;
      font-size: 1.02rem;
    }
    .final-list li::before{
      content: "→"; color: var(--accent); font-weight: 800;
    }
    .final-list li:last-child{ border-bottom: 0; }
    .final-cta-card .closing{ color: var(--text); margin-top: 2rem; font-size: 1.05rem; line-height: 1.65; }
    .final-cta-card .closing strong{ color: var(--accent); }

    /* ───────── Footer ───────── */
    .footer{
      background: var(--bg-2);
      border-top: 1px solid var(--line);
      padding: 3rem 0 2rem;
    }
    .footer-grid{
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--line);
      margin-bottom: 1.5rem;
    }
    .footer-brand img{ height: 40px; margin-bottom: 1rem; }
    .footer-brand p{ font-size: .92rem; max-width: 36ch; line-height: 1.6; }
    .footer h4{ color: var(--text); font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
    .footer ul{ list-style: none; }
    .footer ul li{ margin-bottom: .5rem; }
    .footer ul a{ color: var(--muted); font-size: .92rem; transition: color .2s; }
    .footer ul a:hover{ color: var(--accent); }
    .footer-bottom{
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap; gap: 1rem;
      font-size: .85rem;
      color: var(--muted);
    }
    .footer-bottom a{ color: var(--muted); transition: color .2s; }
    .footer-bottom a:hover{ color: var(--accent); }
    .footer-social{ display: flex; gap: .75rem; }
    .footer-social a{
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--line-strong);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      transition: all .25s ease;
    }
    .footer-social a:hover{
      color: #0a0a0a; background: var(--accent); border-color: var(--accent);
    }

    /* ───────── Reveal animation ───────── */
    .reveal{
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
    }
    .reveal.in{ opacity: 1; transform: none; }

    /* Cursor effect (desktop only) */
    .cursor-blob{
      position: fixed;
      top: 0; left: 0;
      width: 380px; height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(251,191,36,0.18), transparent 60%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 1;
      mix-blend-mode: screen;
      transition: opacity .35s ease;
      opacity: 0;
      filter: blur(40px);
    }
    @media (hover: hover){
      body:hover .cursor-blob{ opacity: 1; }
    }

    /* ───────── Responsive collapse ───────── */
    @media (max-width: 1000px){
      .studios-grid, .suit-grid, .mistakes-grid, .team-grid, .map-block { grid-template-columns: 1fr; }
      .service-row{ grid-template-columns: 1fr; }
      .service-row.reverse .service-text{ order: 1; }
      .service-row.reverse .service-media{ order: 2; }
      .stats-grid, .platform-row, .compare-grid, .pricing-grid, .testi-grid, .prep-grid, .onair-q-grid{ grid-template-columns: 1fr; }
      .pricing-grid > .price-card.featured{ transform: none; }
      .contact-grid{ grid-template-columns: 1fr; }
    }
    @media (max-width: 720px){
      .hero{ padding: 7rem 0 3rem; }
      .hero-meta{ gap: 1.5rem; }
      .cta-strip-inner{ flex-direction: column; align-items: flex-start; }
    }
  