/* =========================================================
       STUDIOZONE 2026 — modern, dark, energetic
       ========================================================= */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root{
      --bg-0: #08090c;        /* deepest */
      --bg-1: #0d0f14;        /* page bg */
      --bg-2: #14171f;        /* surfaces */
      --bg-3: #1c2030;        /* elevated */
      --line: rgba(255,255,255,0.08);
      --line-strong: rgba(255,255,255,0.14);
      --text: #f4f4f5;
      --muted: #a1a1aa;
      --dim: #71717a;
      --accent: #fbbf24;      /* yellow — kept */
      --accent-2: #f59e0b;
      --accent-soft: rgba(251,191,36,0.12);
      --warn: #f97316;
      --radius-sm: 10px;
      --radius: 18px;
      --radius-lg: 28px;
      --shadow-sm: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.35);
      --shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 18px 48px rgba(0,0,0,0.5);
      --maxw: 1280px;
      --pad: clamp(1rem, 3vw, 2.5rem);
      --font: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
    }

    html { scroll-behavior: smooth; }
    html, body { background: var(--bg-1); }
    body{
      font-family: var(--font);
      color: var(--text);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    /* Subtle grain over everything */
    body::before{
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      background:
        radial-gradient(1200px 600px at 80% -10%, rgba(251,191,36,0.06), transparent 60%),
        radial-gradient(900px 600px at -10% 30%, rgba(251,191,36,0.04), transparent 60%);
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; }

    .container{
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--pad);
      position: relative;
      z-index: 2;
    }

    /* ───────── Type scale ───────── */
    .eyebrow{
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      font-size: .78rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 700;
      padding: .45rem .8rem;
      border: 1px solid rgba(251,191,36,0.28);
      border-radius: 999px;
      background: rgba(251,191,36,0.06);
    }
    .eyebrow::before{
      content: "";
      width: 7px; height: 7px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(251,191,36,0.18);
      animation: pulse-dot 1.6s ease-in-out infinite;
    }
    @keyframes pulse-dot{
      0%,100%{ opacity:1; transform: scale(1);}
      50%{ opacity:.6; transform: scale(.85);}
    }

    h1, h2, h3, h4 { font-family: var(--font); letter-spacing: -0.02em; line-height: 1.08; }
    h1{ font-weight: 800; font-size: clamp(2.4rem, 6vw, 5.4rem); }
    h2{ font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 3.2rem); }
    h3{ font-weight: 700; font-size: 1.25rem; }
    p { color: var(--muted); }

    .text-accent { color: var(--accent); }
    .text-white { color: var(--text); }
    .highlight{ color: var(--accent); font-weight: 600; }

    /* ───────── Buttons ───────── */
    .btn{
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .95rem 1.5rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: .98rem;
      letter-spacing: .01em;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
      white-space: nowrap;
      max-width: 100%;
    }
    @media (max-width: 600px) {
      .btn {
        white-space: normal;
        text-align: center;
        padding: .9rem 1.25rem;
        font-size: .92rem;
      }
    }
    .btn-primary{
      background: var(--accent);
      color: #0a0a0a;
      box-shadow: 0 10px 28px rgba(251,191,36,0.25);
    }
    .btn-primary:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(251,191,36,0.4);
      background: #ffd455;
    }
    .btn-ghost{
      background: transparent;
      color: var(--text);
      border-color: var(--line-strong);
    }
    .btn-ghost:hover{
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }
    .btn .arr{
      display: inline-block;
      transition: transform .25s ease;
    }
    .btn:hover .arr{ transform: translateX(4px); }

    /* ───────── Nav ───────── */
    .navbar{
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
      border-bottom: 1px solid transparent;
    }
    .navbar.scrolled{
      background: var(--bg-0);
      backdrop-filter: saturate(160%) blur(14px);
      -webkit-backdrop-filter: saturate(160%) blur(14px);
      border-bottom-color: var(--line);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    }
    .nav-row{
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--pad);
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .nav-brand img{ height: 36px; width: auto; }
    .nav-menu{
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
    }
    .nav-link{
      font-weight: 600;
      font-size: .92rem;
      color: var(--muted);
      transition: color .2s ease;
      position: relative;
    }
    .nav-link::after{
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -6px;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
    }
    .nav-link:hover{ color: var(--text); }
    .nav-link:hover::after{ transform: scaleX(1); }
    .nav-cta-btn{
      background: var(--accent);
      color: #0a0a0a;
      padding: .55rem 1.05rem;
      border-radius: 999px;
      font-weight: 800;
      font-size: .9rem;
      transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
      box-shadow: 0 6px 16px rgba(251,191,36,0.25);
    }
    .nav-cta-btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }

    /* Hamburger button — hidden on desktop, shown on mobile */
    .nav-toggle{
      display: none;
      align-items: center; justify-content: center;
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 10px;
      color: var(--text);
      cursor: pointer;
      transition: background .2s ease, border-color .2s ease;
      flex-shrink: 0;
      position: relative;
      z-index: 101;
    }
    .nav-toggle:active { background: rgba(251,191,36,0.15); border-color: rgba(251,191,36,0.4); }
    /* Icon swap: hamburger to X */
    .nav-toggle .icon-close { display: none; }
    .nav-toggle .icon-menu  { display: block; }
    .nav-toggle[aria-expanded="true"] .icon-close { display: block; }
    .nav-toggle[aria-expanded="true"] .icon-menu  { display: none; }

    @media (max-width: 900px){
      /* Always opaque navbar on mobile */
      .navbar{
        background: rgba(8,9,12,0.97) !important;
        backdrop-filter: saturate(160%) blur(14px);
        -webkit-backdrop-filter: saturate(160%) blur(14px);
        border-bottom: 1px solid var(--line) !important;
      }

      .nav-toggle{ display: inline-flex; }

      /*
       * Mobile drawer sits directly below the 76px navbar (top: 76px).
       * Hidden via max-height:0 + overflow:hidden — zero transform math,
       * zero "bottom of element still visible" edge cases.
       */
      .nav-menu{
        position: fixed;
        top: 76px;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(8,9,12,0.99);
        border-top: 1px solid var(--line);
        padding: .75rem var(--pad) 2.5rem;
        z-index: 98;
        /* Closed state */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .28s ease;
      }
      .nav-menu.open, .nav-menu.active{
        max-height: calc(100dvh - 76px);
        overflow-y: auto;
        opacity: 1;
        pointer-events: auto;
      }

      .nav-link{
        display: block;
        padding: 1.1rem .25rem;
        font-size: 1.08rem;
        border-bottom: 1px solid var(--line);
      }
      .nav-link::after{ display: none; }

      /* Foglalás CTA — visually separated from links */
      li:last-child .nav-cta-btn{
        display: block;
        margin-top: 1.5rem;
        text-align: center;
        padding: .85rem 1.25rem;
        font-size: 1rem;
      }
    }

    /* Gallery masonry */
    .gallery-masonry { columns: 4; column-gap: 1rem; }
    @media (max-width: 1024px) { .gallery-masonry { columns: 3; } }
    @media (max-width: 700px) { .gallery-masonry { columns: 2; } }
    @media (max-width: 480px) { .gallery-masonry { columns: 1; } }
    .gallery-item {
      display: block; width: 100%; padding: 0; margin: 0 0 1rem; border: 0;
      background: transparent; cursor: pointer; break-inside: avoid;
      border-radius: 14px; overflow: hidden; position: relative;
      transition: transform .35s ease, box-shadow .35s ease;
    }
    .gallery-item img { display: block; width: 100%; height: auto; transition: transform .6s ease; }
    .gallery-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-item::after {
      content: '⤢'; position: absolute; top: 12px; right: 12px;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(15,15,15,.7); color: var(--accent);
      display: grid; place-items: center; font-size: 16px;
      opacity: 0; transition: opacity .25s ease;
    }
    .gallery-item:hover::after { opacity: 1; }

    /* Lightbox */
    .lightbox {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,.92);
      display: none; align-items: center; justify-content: center;
      padding: 2rem; opacity: 0; transition: opacity .25s ease;
    }
    .lightbox.open { display: flex; opacity: 1; }
    .lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
    .lightbox-close {
      position: absolute; top: 24px; right: 28px;
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15);
      font-size: 28px; line-height: 1; cursor: pointer;
      display: grid; place-items: center;
      transition: background .2s ease, transform .2s ease;
    }
    .lightbox-close:hover { background: var(--accent); color: #111; transform: rotate(90deg); }

    /* FAQ */
    .faq-list { max-width: 820px; margin: 0 auto 2.5rem; display: flex; flex-direction: column; gap: .75rem; }
    .faq-item {
      border: 1px solid var(--line); border-radius: 14px;
      background: var(--bg-2); overflow: hidden;
      transition: border-color .25s ease, background .25s ease;
    }
    .faq-item:hover { border-color: rgba(251,191,36,.3); }
    .faq-item.open { border-color: var(--accent); background: rgba(251,191,36,.04); }
    .faq-q {
      width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
      padding: 1.25rem 1.5rem; background: transparent; border: 0; color: var(--fg);
      font: 600 1.02rem/1.4 'Montserrat', sans-serif; text-align: left; cursor: pointer;
    }
    .faq-icon { color: var(--accent); transition: transform .3s ease; font-size: 1rem; flex-shrink: 0; }
    .faq-item.open .faq-icon { transform: rotate(180deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
    .faq-item.open .faq-a { max-height: 600px; }
    .faq-a p { padding: 0 1.5rem 1.4rem; color: var(--muted); line-height: 1.7; margin: 0; }
    .faq-a a { color: var(--accent); text-decoration: underline; }

    /* Contact */
    .contact-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
      margin-bottom: 2.5rem;
    }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
    .contact-card {
      background: var(--bg); border: 1px solid var(--line); border-radius: 18px;
      padding: 1.75rem; text-align: center;
      transition: border-color .3s ease, transform .3s ease;
    }
    .contact-card:hover { border-color: var(--accent); transform: translateY(-4px); }
    .contact-icon, .contact-avatar {
      width: 64px; height: 64px; margin: 0 auto 1rem;
      border-radius: 50%; display: grid; place-items: center;
      background: rgba(251,191,36,.1); color: var(--accent);
      overflow: hidden;
    }
    .contact-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .contact-card h3 { font-size: 1.1rem; margin: 0 0 .5rem; }
    .contact-card p { color: var(--muted); line-height: 1.6; margin: 0; font-size: .98rem; }
    .contact-card a { color: var(--fg); text-decoration: none; transition: color .2s; display: block; }
    .contact-card a:hover { color: var(--accent); }
    .contact-card .role { display: block; margin-top: .5rem; font-size: .82rem; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

    /* Contact form */
    .contact-form-wrap {
      background: var(--bg); border: 1px solid var(--line); border-radius: 22px;
      padding: 2.5rem; margin-bottom: 2.5rem;
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem;
      min-width: 0;
    }
    .contact-form-wrap > * { min-width: 0; }
    @media (max-width: 900px) { .contact-form-wrap { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; } }
    @media (max-width: 600px) { .contact-form-wrap { padding: 1rem; border-radius: 16px; } }
    .contact-form-intro h3 { font-size: 1.5rem; margin: 0 0 .75rem; line-height: 1.2; }
    .contact-form-intro p { color: var(--muted); line-height: 1.6; margin: 0 0 1rem; }
    .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .contact-form .full { grid-column: 1 / -1; }
    .form-field label {
      display: block; font-size: .82rem; color: var(--muted);
      margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
    }
    .form-field input, .form-field textarea, .form-field select {
      width: 100%; padding: .85rem 1rem;
      background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
      color: var(--fg); font: 400 .98rem/1.4 'Montserrat', sans-serif;
      transition: border-color .2s ease, background .2s ease;
    }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
      outline: none; border-color: var(--accent); background: rgba(251,191,36,.04);
    }
    .form-field textarea { min-height: 120px; resize: vertical; font-family: inherit; }
    .form-submit { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
    .form-note { font-size: .85rem; color: var(--muted); margin: 0; }

    /* Contact form embed wrap */
    .contact-form-embed {
      background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
      padding: 1.5rem; min-height: 300px;
      min-width: 0;
    }
    .contact-form-embed .formrobin-embed { width: 100%; max-width: 100%; }
    .contact-form-embed iframe { width: 100% !important; max-width: 100% !important; }
    @media (max-width: 600px) {
      .contact-form-embed { padding: 1rem; }
    }
    .contact-form-embed input,
    .contact-form-embed textarea,
    .contact-form-embed select {
      background: var(--bg) !important;
      color: var(--fg) !important;
      border-color: var(--line) !important;
    }
    .contact-form-embed input:focus,
    .contact-form-embed textarea:focus,
    .contact-form-embed select:focus {
      border-color: var(--accent) !important;
      outline: none !important;
    }
    .contact-form-embed label { color: var(--muted) !important; }
    .contact-form-embed button {
      background: var(--accent) !important;
      color: #111 !important;
      border-radius: 999px !important;
      font-weight: 700 !important;
    }

    /* Map */
    .map-block {
      display: grid; grid-template-columns: 1fr 1.6fr; gap: 1.25rem;
      border-radius: 22px; overflow: hidden;
      border: 1px solid var(--line);
    }
    @media (max-width: 900px) { .map-block { grid-template-columns: 1fr; } }
    .address-card {
      padding: 2rem; background: var(--bg);
      display: flex; flex-direction: column; gap: .75rem;
    }
    .address-card .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(251,191,36,.1); color: var(--accent); display: grid; place-items: center; }
    .address-card h3 { font-size: 1.3rem; margin: 0; }
    .address-card p { margin: 0; color: var(--muted); line-height: 1.6; }
    .address-card .muted { font-size: .88rem; color: var(--muted); opacity: .8; }
    .map-embed { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

    /* Final CTA */
    .final-cta { padding: 5rem 0; background: var(--bg); }
    .final-cta-card {
      max-width: 760px; margin: 0 auto; text-align: center;
      padding: 3.5rem 2rem;
      background: linear-gradient(180deg, rgba(251,191,36,.04), transparent);
      border: 1px solid rgba(251,191,36,.2); border-radius: 24px;
    }
    .final-cta-card .lead { font-size: 1.15rem; color: var(--muted); margin: 0 0 1.5rem; }
    .final-cta-card h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); margin: 0 0 1.5rem; }
    .final-list {
      list-style: none; padding: 0; margin: 0 0 2rem;
      display: flex; flex-direction: column; gap: .5rem;
    }
    .final-list li {
      color: var(--fg); font-weight: 500; padding: .25rem 0;
      position: relative; display: inline-block;
    }
    .final-list li::before {
      content: '✓'; color: var(--accent); margin-right: .6rem; font-weight: 700;
    }
    .final-cta-card .closing {
      margin: 1.75rem 0 0; color: var(--muted); font-size: 1rem;
    }
    .final-cta-card .closing strong { color: var(--accent); }

    /* Footer */
    .footer { background: #050505; padding: 4rem 0 2rem; border-top: 1px solid var(--line); }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; margin-bottom: 2.5rem;
    }
    @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
    @media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
    .footer-brand img { height: 32px; margin-bottom: 1rem; }
    .footer-brand p { color: var(--muted); line-height: 1.6; max-width: 380px; }
    .footer h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin: 0 0 1rem; }
    .footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
    .footer ul a { color: var(--muted); text-decoration: none; font-size: .95rem; transition: color .2s; }
    .footer ul a:hover { color: var(--accent); }
    .footer-bottom {
      padding-top: 1.75rem; border-top: 1px solid var(--line);
      display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
      color: var(--muted); font-size: .88rem;
    }
    .footer-social a {
      display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid var(--line); color: var(--muted);
      transition: all .2s ease;
    }
    .footer-social a:hover { color: var(--accent); border-color: var(--accent); }

/* ───────── 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-size: cover;
      background-position: center 30%;
      background-repeat: 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; flex-wrap: wrap; 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; }
    }
/* ===== Dinamikus szekciók (contenteditor renderelő) ===== */
.col-grid { display: grid; gap: 24px; margin: 1rem 0; }
.col-grid.layout-eq[data-cols="2"] { grid-template-columns: 1fr 1fr; }
.col-grid.layout-eq[data-cols="3"] { grid-template-columns: 1fr 1fr 1fr; }
.col-grid.layout-eq[data-cols="4"] { grid-template-columns: 1fr 1fr 1fr 1fr; }
.col-grid.layout-2-2  { grid-template-columns: 1fr 1fr; }
.col-grid.layout-l-1-1 { grid-template-columns: 2fr 1fr; }
.col-grid.layout-r-1-1 { grid-template-columns: 1fr 2fr; }
.col-grid.layout-l-2-1 { grid-template-columns: 1fr 1fr 2fr; }
.col-grid.layout-r-1-2 { grid-template-columns: 2fr 1fr 1fr; }
.col-grid.layout-l-1-2v { grid-template-columns: 2fr 1fr; grid-template-areas: "a b" "a c"; }
.col-grid.layout-l-1-2v > [data-col-idx="0"] { grid-area: a; }
.col-grid.layout-l-1-2v > [data-col-idx="1"] { grid-area: b; }
.col-grid.layout-l-1-2v > [data-col-idx="2"] { grid-area: c; }
.col-grid.layout-r-2v-1 { grid-template-columns: 1fr 2fr; grid-template-areas: "a c" "b c"; }
.col-grid.layout-r-2v-1 > [data-col-idx="0"] { grid-area: a; }
.col-grid.layout-r-2v-1 > [data-col-idx="1"] { grid-area: b; }
.col-grid.layout-r-2v-1 > [data-col-idx="2"] { grid-area: c; }
.col-grid.layout-l-3-1 { grid-template-columns: 1fr 1fr 1fr 1.5fr; grid-template-areas: "a b c d" "a b c d"; }
.col-grid.layout-l-3-1 > [data-col-idx="0"] { grid-area: a; }
.col-grid.layout-l-3-1 > [data-col-idx="1"] { grid-area: b; }
.col-grid.layout-l-3-1 > [data-col-idx="2"] { grid-area: c; }
.col-grid.layout-l-3-1 > [data-col-idx="3"] { grid-area: d; }
.col-grid.layout-r-1-3 { grid-template-columns: 1.5fr 1fr 1fr 1fr; grid-template-areas: "a b c d" "a b c d"; }
.col-grid.layout-r-1-3 > [data-col-idx="0"] { grid-area: a; }
.col-grid.layout-r-1-3 > [data-col-idx="1"] { grid-area: b; }
.col-grid.layout-r-1-3 > [data-col-idx="2"] { grid-area: c; }
.col-grid.layout-r-1-3 > [data-col-idx="3"] { grid-area: d; }
.col-grid.layout-l-1-3v { grid-template-columns: 2fr 1fr; grid-template-areas: "a b" "a c" "a d"; }
.col-grid.layout-l-1-3v > [data-col-idx="0"] { grid-area: a; }
.col-grid.layout-l-1-3v > [data-col-idx="1"] { grid-area: b; }
.col-grid.layout-l-1-3v > [data-col-idx="2"] { grid-area: c; }
.col-grid.layout-l-1-3v > [data-col-idx="3"] { grid-area: d; }
.col-grid.layout-r-3v-1 { grid-template-columns: 1fr 2fr; grid-template-areas: "a d" "b d" "c d"; }
.col-grid.layout-r-3v-1 > [data-col-idx="0"] { grid-area: a; }
.col-grid.layout-r-3v-1 > [data-col-idx="1"] { grid-area: b; }
.col-grid.layout-r-3v-1 > [data-col-idx="2"] { grid-area: c; }
.col-grid.layout-r-3v-1 > [data-col-idx="3"] { grid-area: d; }
@media (max-width: 1024px) {
  .col-grid[data-cols="3"]:not(.layout-eq),
  .col-grid[data-cols="4"]:not(.layout-eq) {
    grid-template-columns: 1fr 1fr !important; grid-template-areas: none !important;
  }
  .col-grid[data-cols="3"]:not(.layout-eq) > *,
  .col-grid[data-cols="4"]:not(.layout-eq) > * { grid-area: auto !important; }
}
@media (max-width: 640px) {
  .col-grid { grid-template-columns: 1fr !important; grid-template-areas: none !important; }
  .col-grid > * { grid-area: auto !important; }
}
.col-card { padding: 24px; border-radius: 12px; background-size: cover; background-position: center; }

/* === MODERN GALÉRIA === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 2.5rem 0;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (max-width: 640px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

.gallery-grid .gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: var(--bg-2, #14171f);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  isolation: isolate;
  display: block;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s;
  display: block;
  filter: brightness(.92) saturate(1.05);
}
.gallery-grid .gallery-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,9,12,.7));
  opacity: 0;
  transition: opacity .35s;
  z-index: 1;
  pointer-events: none;
}
.gallery-grid .gallery-item::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251,191,36,.95) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2308090c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.35-4.35M11 8v6M8 11h6'/></svg>") center/22px no-repeat;
  opacity: 0;
  transform: scale(.6) translateY(8px);
  transition: opacity .35s, transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.gallery-grid .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  z-index: 3;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}
.gallery-grid .gallery-item:hover::before { opacity: 1; }
.gallery-grid .gallery-item:hover::after {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.gallery-grid .gallery-item:focus-visible { outline: 3px solid var(--accent, #fbbf24); outline-offset: 4px; }
.gallery-grid .gallery-item:active { transform: translateY(-2px) scale(.98); }

/* ===== LIGHTBOX - modern, sleek ===== */
.lb {
  position: fixed; inset: 0;
  background: rgba(8, 9, 12, .96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  user-select: none;
}
.lb.open {
  display: flex;
  opacity: 1;
  animation: lb-fade .3s ease-out;
}
@keyframes lb-fade { from { opacity: 0; backdrop-filter: blur(0); } to { opacity: 1; backdrop-filter: blur(24px); } }

.lb-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 8vw;
}

.lb img#lightboxImg {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
  opacity: 0;
  transform: scale(.95);
  transition: opacity .35s, transform .4s cubic-bezier(.2,.8,.2,1);
}
.lb img#lightboxImg.loaded {
  opacity: 1;
  transform: scale(1);
}

.lb-close {
  position: absolute;
  top: 2vh;
  right: 2vw;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all .2s;
}
.lb-close:hover {
  background: rgba(255,255,255,.18);
  transform: rotate(90deg);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all .2s;
}
.lb-nav:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.3);
}
.lb-nav.prev { left: 2vw; }
.lb-nav.next { right: 2vw; }
@media (max-width: 640px) {
  .lb-nav { width: 44px; height: 44px; }
  .lb-nav.prev { left: .5rem; }
  .lb-nav.next { right: .5rem; }
  .lb-close { top: .75rem; right: .75rem; width: 40px; height: 40px; }
}

.lb-counter {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  padding: .5rem 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  backdrop-filter: blur(10px);
  z-index: 10;
  font-variant-numeric: tabular-nums;
}

/* ===== Frontend user menu ===== */
.nav-login-btn { color: var(--text); text-decoration: none; font-weight: 600; padding: .55rem 1rem; border-radius: 999px; border: 1px solid var(--line-strong); transition: all .2s; }
.nav-login-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.nav-user { position: relative; }
.nav-user-btn { display: inline-flex; align-items: center; gap: .65rem; padding: .35rem .4rem .35rem .9rem; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--line); text-decoration: none; color: var(--text); transition: all .2s; }
.nav-user-btn:hover { border-color: var(--accent); }
.nav-credit { font-weight: 700; font-size: .85rem; color: var(--accent); }
.nav-credit small { color: var(--muted); font-weight: 500; font-size: .7rem; margin-left: 2px; }
.nav-user-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--bg-0); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; }

.nav-user-menu { position: absolute; top: calc(100% + 12px); right: 0; min-width: 240px; background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s; box-shadow: 0 18px 40px rgba(0,0,0,.45); z-index: 90; }
.nav-user:hover .nav-user-menu, .nav-user:focus-within .nav-user-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-user-head { padding: .75rem 1rem; border-bottom: 1px solid var(--line); margin-bottom: .25rem; }
.nav-user-head strong { display: block; font-size: .95rem; }
.nav-user-head span { display: block; font-size: .75rem; color: var(--muted); margin-top: 2px; }
.nav-user-menu a { display: block; padding: .65rem 1rem; color: var(--text); text-decoration: none; border-radius: 8px; font-size: .9rem; transition: background .15s; }
.nav-user-menu a:hover { background: var(--accent-soft); color: var(--accent); }
.nav-user-logout { border-top: 1px solid var(--line); margin-top: .25rem; padding-top: .75rem !important; color: var(--warn) !important; }

@media (max-width: 900px) {
  .nav-user { width: 100%; margin-top: .5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
  .nav-user-btn { width: 100%; justify-content: space-between; padding: .75rem 1rem; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--accent); }
  .nav-credit { font-size: 1rem; }
  .nav-credit small { font-size: .8rem; }
  .nav-user-avatar { width: 36px; height: 36px; font-size: 1rem; }
  .nav-user-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: 0; padding: 0; margin: 1rem 0 0; min-width: 0; }
  .nav-user-head { display: none; }
  .nav-user-menu a { padding: 1rem 1.25rem; font-size: 1rem; font-weight: 600; }
  .nav-user-logout { border-top: 1px solid var(--line); margin-top: .5rem; padding-top: 1.25rem !important; }
}

/* ===== Auth oldal ===== */
.auth-wrap { min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; padding: 8rem 1.5rem 4rem; }
.auth-card { width: 100%; max-width: 440px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.5rem; }
.auth-card h1 { font-size: 1.75rem; margin-bottom: .5rem; }
.auth-card .lead { color: var(--muted); margin-bottom: 2rem; }
.auth-form .field { margin-bottom: 1.25rem; }
.auth-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.auth-form input { width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm); background: var(--bg-1); border: 1px solid var(--line-strong); color: var(--text); font-size: .95rem; font-family: inherit; transition: all .2s; }
.auth-form input:focus { outline: none; border-color: var(--accent); background: var(--bg-0); }
.auth-form .btn-primary { width: 100%; justify-content: center; }
.auth-error { background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.35); color: var(--warn); padding: .75rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: .9rem; }
.auth-foot { text-align: center; margin-top: 1.5rem; font-size: .9rem; color: var(--muted); }
.auth-foot a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ===== Account oldalak ===== */
.account-wrap { padding: 8rem 1.5rem 4rem; max-width: 1200px; margin: 0 auto; }
.account-head { margin-bottom: 2.5rem; }
.account-head h1 { font-size: 2.5rem; margin-bottom: .5rem; }
.account-head p { color: var(--muted); }
.account-grid { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; }
@media (max-width: 768px) { .account-grid { grid-template-columns: 1fr; } }
.account-side { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; align-self: start; position: sticky; top: 90px; }
.account-side a { display: flex; align-items: center; gap: .65rem; padding: .75rem 1rem; border-radius: var(--radius-sm); color: var(--text); text-decoration: none; font-size: .95rem; transition: all .15s; }
.account-side a:hover { background: var(--bg-1); color: var(--accent); }
.account-side a.active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.account-main { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.account-section { margin-bottom: 2rem; }
.account-section h2 { font-size: 1.25rem; margin-bottom: .25rem; }
.account-section > p { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.account-section .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .account-section .field-grid { grid-template-columns: 1fr; } }
.account-section .field-grid .col-2 { grid-column: span 2; }
@media (max-width: 640px) { .account-section .field-grid .col-2 { grid-column: auto; } }

/* Credit hero */
.credit-hero { background: linear-gradient(135deg, rgba(251,191,36,.18), rgba(245,158,11,.05)); border: 1px solid rgba(251,191,36,.35); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; margin-bottom: 2.5rem; }
.credit-hero .num { display: block; font-size: 4.5rem; font-weight: 900; line-height: 1; color: var(--accent); letter-spacing: -.04em; }
.credit-hero .unit { font-size: 1rem; color: var(--muted); margin-top: .5rem; display: block; }

/* ===== Mobile menü javítás user-blokkal ===== */
@media (max-width: 900px) {
  .nav-menu {
    padding: 4rem 1.5rem 2rem;
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav-menu > li { width: 100%; max-width: 360px; margin: 0 auto; }
  .nav-menu .nav-link {
    display: block;
    text-align: center;
    padding: 1rem;
    font-size: 1.05rem;
  }
  .nav-cta-btn {
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    margin-top: .5rem;
  }

  /* Belépés gomb */
  .nav-login-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    margin-top: .25rem;
  }

  /* Bejelentkezett user blokk - elválasztva felülről */
  .nav-user {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }
  .nav-user-btn {
    width: 100%;
    justify-content: center;
    padding: .65rem 1rem;
    background: var(--bg-3);
  }
  .nav-user-menu {
    margin-top: .75rem;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  .nav-user-menu a {
    text-align: left;
    padding: .85rem 1rem;
  }
  .nav-user-logout {
    margin-top: .5rem;
    padding-top: 1rem !important;
  }
}

/* Mobilon ne legyen sticky a profil oldalsáv */
@media (max-width: 768px) {
  .account-side { position: static; top: auto; }
}

/* ===== Footer mobil layout javítás ===== */
@media (max-width: 768px) {
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    text-align: left;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: .5rem;
  }
  .footer-brand img { margin: 0 auto 1rem; display: block; }
  .footer-brand p { max-width: none; margin: 0 auto; }
  .footer h4 { margin-bottom: .75rem; font-size: .75rem; }
  .footer ul li { margin-bottom: .35rem; }
  .footer ul a { font-size: .9rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: .8rem;
    gap: .75rem;
  }
}

/* ===== Booking form ===== */
.booking-wrap { padding: 8rem 1.5rem 4rem; }
.booking-wrap .container { max-width: 800px; }
.booking-head { text-align: center; margin-bottom: 2rem; }
.booking-head h1 { font-size: 2.5rem; margin: .5rem 0; }
.booking-head p { color: var(--muted); }

.booking-stepper { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.booking-stepper .step { display: flex; align-items: center; gap: .65rem; padding: .5rem 1rem; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--line); color: var(--muted); font-size: .85rem; transition: all .25s; }
.booking-stepper .step .num { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .75rem; }
.booking-stepper .step.active { border-color: var(--accent); color: var(--text); background: var(--accent-soft); }
.booking-stepper .step.active .num { background: var(--accent); color: var(--bg-0); }

.booking-form .card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.25rem; }
.booking-form .card h2 { font-size: 1.15rem; margin-bottom: 1rem; }
.booking-form .hint { color: var(--muted); font-size: .85rem; margin-bottom: 1rem; }
.booking-form .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-form .field-grid .col-2 { grid-column: span 2; }
@media (max-width: 640px) { .booking-form .field-grid { grid-template-columns: 1fr; } .booking-form .field-grid .col-2 { grid-column: auto; } }
.booking-form .field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; }
.booking-form .field input, .booking-form .field select, .booking-form .field textarea { width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm); background: var(--bg-1); border: 1px solid var(--line-strong); color: var(--text); font-size: .95rem; font-family: inherit; }
.booking-form .field input:focus, .booking-form .field select:focus { outline: none; border-color: var(--accent); background: var(--bg-0); }
.booking-form .field input[readonly] { opacity: .7; cursor: not-allowed; }

/* === Step lépés-szám fejlécben === */
.booking-form .card h2 { display: flex; align-items: center; gap: .65rem; }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--bg-0); font-size: .85rem; font-weight: 800; flex-shrink: 0; }

/* === Service / Studio sor === */
.bk-svc-list, .studio-list { display: flex; flex-direction: column; gap: .65rem; }
.bk-svc-row, .studio-row { display: block; cursor: pointer; position: relative; }
.bk-svc-row input, .studio-row input { position: absolute; opacity: 0; pointer-events: none; }
.bk-svc-row-inner, .studio-row-inner { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; border: 1.5px solid var(--line); background: var(--bg-1); border-radius: var(--radius); transition: all .15s; }
.bk-svc-row:hover .bk-svc-row-inner, .studio-row:hover .studio-row-inner { border-color: var(--line-strong); }
.bk-svc-row input:checked + .bk-svc-row-inner, .studio-row input:checked + .studio-row-inner { border-color: var(--accent); background: var(--accent-soft); }
.bk-svc-row .ic { font-size: 1.75rem; flex-shrink: 0; }
.bk-svc-row .meta, .studio-row .meta { flex: 1; min-width: 0; }
.bk-svc-row .title, .studio-row .title { font-weight: 700; font-size: 1rem; }
.bk-svc-row .desc { color: var(--muted); font-size: .82rem; margin-top: .15rem; }
.studio-row .cap { color: var(--muted); font-size: .85rem; margin-top: .15rem; }
.bk-svc-row .price { text-align: right; flex-shrink: 0; }
.bk-svc-row .price .num { color: var(--accent); font-weight: 800; font-size: 1.05rem; }
.bk-svc-row .price .unit { color: var(--muted); font-size: .75rem; }
.bk-svc-row .check, .studio-row .check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: transparent; font-weight: 800; flex-shrink: 0; transition: all .15s; }
.bk-svc-row input:checked ~ .bk-svc-row-inner .check, .bk-svc-row input:checked + .bk-svc-row-inner .check, .studio-row input:checked + .studio-row-inner .check { background: var(--accent); border-color: var(--accent); color: var(--bg-0); }

@media (max-width: 640px) {
  .bk-svc-row-inner { flex-wrap: wrap; gap: .65rem; padding: 1rem; }
  .bk-svc-row .ic { font-size: 1.5rem; }
  .bk-svc-row .price { text-align: left; width: 100%; padding-left: calc(1.75rem + 1rem); }
  .bk-svc-row .check { order: -1; }
}

/* === Időtartam pirulák === */
.duration-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: .5rem; }
.duration-pill { display: block; cursor: pointer; position: relative; }
.duration-pill input { position: absolute; opacity: 0; pointer-events: none; }
.duration-pill-inner { padding: .85rem .5rem; border: 1.5px solid var(--line); background: var(--bg-1); border-radius: var(--radius-sm); text-align: center; transition: all .15s; }
.duration-pill:hover .duration-pill-inner { border-color: var(--line-strong); }
.duration-pill input:checked + .duration-pill-inner { border-color: var(--accent); background: var(--accent-soft); }
.duration-pill .num { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.duration-pill input:checked + .duration-pill-inner .num { color: var(--accent); }
.duration-pill .unit { color: var(--muted); font-size: .75rem; }

/* === Hetes naptár === */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-label { font-weight: 700; font-size: 1.05rem; }
.cal-nav { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-1); border: 1.5px solid var(--line); color: var(--text); cursor: pointer; font-size: 1.1rem; transition: all .15s; }
.cal-nav:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: .5rem; }
.cal-day { display: flex; flex-direction: column; align-items: center; gap: .25rem; padding: .65rem .25rem; border: 1.5px solid var(--line); background: var(--bg-1); border-radius: var(--radius-sm); color: var(--text); cursor: pointer; font-family: inherit; transition: all .15s; }
.cal-day:hover:not(:disabled):not(.selected) { border-color: var(--accent); color: var(--accent); }
.cal-day:hover:not(:disabled):not(.selected) .dom { color: var(--accent); }
.cal-day.selected { background: var(--accent) !important; color: var(--bg-0) !important; border-color: var(--accent) !important; }
.cal-day.selected .dom { color: var(--bg-0) !important; }
.cal-day.today:not(.selected) { border-color: var(--accent); }
.cal-day:disabled, .cal-day.disabled { opacity: .25; cursor: not-allowed; background: var(--bg-2); pointer-events: none; }
.cal-day .dow { font-size: .7rem; text-transform: uppercase; color: var(--muted); letter-spacing: .05em; font-weight: 600; }
.cal-day.selected .dow { color: rgba(8,9,12,.65); }
.cal-day .dom { font-size: 1.25rem; font-weight: 800; color: inherit; }

/* === Counter === */
.counter { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-1); }
.counter-btn { width: 44px; height: 48px; background: transparent; border: 0; color: var(--text); font-size: 1.5rem; font-weight: 800; cursor: pointer; transition: background .15s; }
.counter-btn:hover { background: var(--accent-soft); color: var(--accent); }
.counter input { border: 0 !important; background: transparent !important; text-align: center; width: 60px !important; padding: 0 !important; font-size: 1.1rem !important; font-weight: 700 !important; }
.counter input:focus { background: transparent !important; }

.slot-picker { display: flex; flex-wrap: wrap; gap: .5rem; min-height: 60px; align-items: center; }
.slot-hint { color: var(--muted); font-size: .9rem; padding: 1rem 0; }
.slot-btn { padding: .55rem 1rem; background: var(--bg-1); border: 1.5px solid var(--line); color: var(--text); border-radius: var(--radius-sm); cursor: pointer; font-size: .9rem; font-weight: 600; font-family: inherit; transition: all .15s; }
.slot-btn:hover { border-color: var(--accent); color: var(--accent); }
.slot-btn.selected { background: var(--accent); color: var(--bg-0); border-color: var(--accent); }

.payment-options { display: flex; flex-direction: column; gap: .75rem; }
.payment-pill { display: block; cursor: pointer; position: relative; width: 100%; }
.payment-pill input { position: absolute; opacity: 0; pointer-events: none; }
.payment-pill-inner { display: flex; align-items: center; gap: 1rem; text-align: left; padding: 1.25rem 1.5rem; border: 1.5px solid var(--line); background: var(--bg-1); border-radius: var(--radius); transition: all .15s; }
.payment-pill input:checked + .payment-pill-inner { border-color: var(--accent); background: var(--accent-soft); }
.payment-pill .ic { font-size: 1.75rem; flex-shrink: 0; }
.payment-pill-inner strong { display: block; font-size: 1rem; }
.payment-pill .badge { background: var(--accent); color: var(--bg-0); font-size: .65rem; padding: .15rem .5rem; border-radius: 999px; margin-left: .35rem; vertical-align: middle; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.payment-pill.recommended .payment-pill-inner { border-color: rgba(251,191,36,.4); }

.booking-summary .sum-row { display: flex; justify-content: space-between; padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.booking-summary .sum-row:last-child { border-bottom: 0; }
.booking-summary .sum-row span { color: var(--muted); }
.booking-summary .sum-row strong { color: var(--text); }
.booking-summary .sum-row.total strong { color: var(--accent); font-size: 1.1rem; }

.check-line { display: flex; gap: .65rem; align-items: flex-start; cursor: pointer; font-size: .9rem; color: var(--muted); }
.check-line input { margin-top: 3px; }
.check-line a { color: var(--accent); text-decoration: none; }

.step-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.step-nav .btn { padding: .85rem 1.5rem; }
.arr-l { display: inline-block; }

/* Stripe modal */
.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-card { width: 100%; max-width: 480px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; }
.modal-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.stripe-card-el { padding: 1rem; background: var(--bg-1); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); margin: 1rem 0 .5rem; }

/* Sikeres oldal */
.success-card { max-width: 560px; margin: 0 auto; text-align: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 3rem 2rem; }
.success-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; border-radius: 50%; background: linear-gradient(135deg, #34d399, #10b981); color: #052e21; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 900; }
.success-card h1 { font-size: 2rem; margin-bottom: .75rem; }
.success-card .lead { color: var(--muted); margin-bottom: 1.5rem; }
.success-ref { display: inline-block; padding: .5rem 1rem; background: var(--accent-soft); color: var(--accent); border-radius: var(--radius-sm); font-family: monospace; font-size: .9rem; }

/* === Lightbox lapozó nyilak === */
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; backdrop-filter: blur(8px); z-index: 10; }
.lightbox-nav:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }
@media (max-width: 640px) {
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.75rem; }
  .lightbox-nav.prev { left: .5rem; }
  .lightbox-nav.next { right: .5rem; }
}

/* === Kapcsolat űrlap === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .contact-form .cf-row { grid-template-columns: 1fr; } }
.contact-form .cf-field { display: flex; flex-direction: column; gap: .4rem; }
.contact-form label { font-size: .85rem; font-weight: 600; color: var(--text); }
.contact-form input, .contact-form textarea { width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm); background: var(--bg-1); border: 1px solid var(--line-strong); color: var(--text); font-size: .95rem; font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-0); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { align-self: flex-start; padding: .9rem 1.75rem; }
.cf-msg { padding: .85rem 1rem; border-radius: var(--radius-sm); font-size: .9rem; border: 1px solid; }
.cf-msg.ok { background: rgba(16,185,129,.15); border-color: rgba(16,185,129,.35); color: #86efac; }
.cf-msg.err { background: rgba(249,115,22,.15); border-color: rgba(249,115,22,.35); color: var(--warn); }

/* === Blog lista === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.blog-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all .25s; }
.blog-card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.blog-card-media { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-1); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: .35; }
.blog-card-cat { position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: var(--bg-0); font-size: .7rem; font-weight: 700; padding: .35rem .75rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.blog-card-meta { display: flex; gap: .5rem; align-items: center; color: var(--muted); font-size: .8rem; }
.blog-card h3 { font-size: 1.2rem; line-height: 1.35; margin: 0; }
.blog-card h3 a { color: var(--text); text-decoration: none; transition: color .15s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.55; flex: 1; }
.blog-card-link { color: var(--accent); text-decoration: none; font-weight: 600; font-size: .9rem; margin-top: .5rem; align-self: flex-start; }
.blog-card-link:hover { gap: .5rem; }

.blog-empty { text-align: center; padding: 4rem 1rem; color: var(--muted); }

.blog-pager { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 3rem; flex-wrap: wrap; }
.blog-pager-btn { padding: .65rem 1.25rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); text-decoration: none; font-size: .9rem; font-weight: 600; transition: all .15s; }
.blog-pager-btn:hover:not(.disabled) { border-color: var(--accent); color: var(--accent); }
.blog-pager-btn.disabled { opacity: .35; pointer-events: none; }
.blog-pager-info { color: var(--muted); font-size: .9rem; }

/* === Blog post === */
.blog-post-head { text-align: center; margin-bottom: 2rem; }
.blog-back { color: var(--muted); text-decoration: none; font-size: .9rem; display: inline-block; margin-bottom: 1.5rem; transition: color .15s; }
.blog-back:hover { color: var(--accent); }
.blog-post-cat { display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: .75rem; font-weight: 700; padding: .35rem .85rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.blog-post-head h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; }
@media (max-width: 640px) { .blog-post-head h1 { font-size: 1.75rem; } }
.blog-post-meta { color: var(--muted); font-size: .9rem; display: flex; justify-content: center; gap: .5rem; align-items: center; }
.blog-post-hero { margin: 2.5rem 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.blog-post-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-post-body { color: var(--text); font-size: 1.05rem; line-height: 1.75; padding: 1rem 0; }
.blog-post-body h2 { font-size: 1.75rem; margin: 2rem 0 1rem; line-height: 1.3; }
.blog-post-body h3 { font-size: 1.35rem; margin: 1.5rem 0 .75rem; line-height: 1.35; }
.blog-post-body p { margin: 0 0 1.25rem; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 1.25rem 1.5rem; padding: 0; }
.blog-post-body li { margin-bottom: .5rem; }
.blog-post-body img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; }
.blog-post-body a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.blog-post-body blockquote { border-left: 3px solid var(--accent); padding: .5rem 0 .5rem 1.5rem; margin: 1.5rem 0; color: var(--muted); font-style: italic; }
.blog-post-body code { background: var(--bg-2); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.blog-post-body pre { background: var(--bg-2); padding: 1rem; border-radius: var(--radius-sm); overflow-x: auto; margin: 1.5rem 0; }
.blog-post-foot { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding: 2rem 0 4rem; border-top: 1px solid var(--line); flex-wrap: wrap; }

/* === Blog hero (kisebb mint a főoldalon) === */
.blog-hero { min-height: 60vh; padding: 10rem 0 4rem; }
@media (max-width: 768px) { .blog-hero { min-height: 50vh; padding: 8rem 0 3rem; } }
.blog-hero .hero-content { text-align: center; }
.blog-hero .hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); max-width: 24ch; margin: 1rem auto 0; text-align: center; }
.blog-hero .eyebrow { background: var(--accent); color: var(--bg-0); padding: .35rem .85rem; border-radius: 999px; display: inline-block; margin-bottom: 1rem; }

/* === Blog post sáv (vissza ↔ meta) === */
.blog-post-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 2rem 0; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.blog-post-bar .blog-back { margin: 0; }
.blog-post-bar-meta { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .9rem; }


/* === Video embed === */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; background: #000; }
.video-embed iframe, .video-embed video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; display: block; }

/* === Havi naptár === */
.cal-week { display: block; }
.cal-month-head { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; margin-bottom: .5rem; }
.cal-month-dow { text-align: center; font-size: .7rem; text-transform: uppercase; color: var(--muted); letter-spacing: .05em; font-weight: 700; padding: .35rem 0; }
.cal-month-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; }
.cal-month-pad { aspect-ratio: 1; }
.cal-month-grid .cal-day { aspect-ratio: 1; flex-direction: column; gap: 0; padding: .35rem; position: relative; min-height: 0; }
.cal-month-grid .cal-day .dom { font-size: 1.05rem; }
.cal-month-grid .cal-day.holiday { background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.25); color: rgb(248, 113, 113); opacity: .6; }
.cal-month-grid .cal-day.full { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.25); color: rgb(251, 191, 36); opacity: .65; }
.cal-month-grid .cal-day .cal-tag { font-size: .55rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; line-height: 1; margin-top: 2px; padding: 1px 4px; border-radius: 3px; }
.cal-month-grid .cal-day.holiday .cal-tag { background: rgba(239, 68, 68, .15); }
.cal-month-grid .cal-day.full .cal-tag { background: rgba(245, 158, 11, .15); }
.cal-month-grid .cal-day:disabled, .cal-month-grid .cal-day.disabled { pointer-events: none; }

@media (max-width: 480px) {
  .cal-month-grid .cal-day { padding: .2rem; }
  .cal-month-grid .cal-day .dom { font-size: .9rem; }
  .cal-month-grid .cal-day .cal-tag { display: none; }
}

/* === Footer hírlevél feliratkozó === */
.footer-newsletter-desc { font-size: .85rem; color: var(--muted); margin-bottom: .75rem; line-height: 1.5; }
.footer-newsletter-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-newsletter input[type="email"] {
  flex: 1; min-width: 0;
  padding: .65rem .85rem;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
}
.footer-newsletter input[type="email"]:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.footer-newsletter-btn { padding: .65rem 1rem; font-size: .85rem; white-space: nowrap; }
.footer-newsletter-msg { font-size: .8rem; margin-top: .5rem; min-height: 1rem; }
.footer-newsletter-msg.ok { color: rgb(74, 222, 128); }
.footer-newsletter-msg.err { color: rgb(248, 113, 113); }

/* === Jogi oldalak (impresszum, ÁSZF, adatvédelem) === */
.legal-page { padding: 6rem 0 4rem; min-height: 60vh; }
.legal-page .container { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }
.legal-breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.legal-breadcrumb a { color: var(--muted); text-decoration: none; }
.legal-breadcrumb a:hover { color: var(--accent); }
.legal-page h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.1; margin: 0 0 .5rem; letter-spacing: -.02em; }
.legal-updated { color: var(--muted); font-size: .85rem; margin-bottom: 2.5rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.35rem; font-weight: 800; margin: 0 0 1rem; color: var(--accent); letter-spacing: -.01em; }
.legal-section p, .legal-section li { color: var(--text); line-height: 1.7; font-size: 1rem; }
.legal-section p { margin: 0 0 1rem; }
.legal-section ul, .legal-section ol { padding-left: 1.5rem; margin: 0 0 1rem; }
.legal-section li { margin-bottom: .5rem; }
.legal-section a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { opacity: .8; }
.legal-section strong { color: #fff; font-weight: 700; }
.legal-table { width: 100%; border-collapse: collapse; margin: 0 0 1rem; font-size: .95rem; }
.legal-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.6; }
.legal-table td:first-child { color: var(--muted); font-weight: 600; width: 38%; min-width: 200px; }
.legal-table td:last-child { color: var(--text); }
@media (max-width: 600px) {
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table td { display: block; }
  .legal-table tr { border-bottom: 1px solid var(--line); padding: .85rem 0; }
  .legal-table td { padding: .15rem 0; border: 0; }
  .legal-table td:first-child { width: 100%; min-width: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
}

/* === Cookie consent === */
.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9998;
  background: rgba(8, 9, 12, .96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(251, 191, 36, .08);
  animation: cookieSlideUp .35s ease both;
}
@keyframes cookieSlideUp { from { transform: translateY(120%); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-bar-inner { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; }
.cookie-bar-text { flex: 1 1 320px; min-width: 0; }
.cookie-bar-text strong { display: block; font-size: .95rem; margin-bottom: .2rem; color: #fff; }
.cookie-bar-text p { margin: 0; font-size: .85rem; line-height: 1.5; color: var(--muted); }
.cookie-bar-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-btn {
  padding: .65rem 1.1rem; border-radius: 9px; font-size: .85rem; font-weight: 600;
  font-family: inherit; cursor: pointer; border: 1px solid transparent;
  transition: all .15s;
}
.cookie-btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.cookie-btn-ghost:hover { background: var(--bg-1); border-color: var(--accent); color: var(--accent); }
.cookie-btn-primary { background: var(--accent); color: var(--bg-0); }
.cookie-btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.cookie-modal { position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; padding: 1rem; display: none; }
.cookie-modal.is-open { display: flex; }
.cookie-bar.is-open { display: block; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .65); backdrop-filter: blur(8px); }
.cookie-modal-box {
  position: relative; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  background: var(--bg-0); border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem;
  box-shadow: 0 32px 96px rgba(0, 0, 0, .7);
  animation: cookieFadeIn .25s ease both;
}
@keyframes cookieFadeIn { from { transform: scale(.95); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-modal-close { position: absolute; top: .75rem; right: .85rem; background: none; border: 0; color: var(--muted); font-size: 1.75rem; line-height: 1; cursor: pointer; padding: .25rem .55rem; border-radius: 8px; transition: all .15s; }
.cookie-modal-close:hover { background: var(--bg-1); color: #fff; }
.cookie-modal-box h2 { margin: 0 0 .35rem; font-size: 1.4rem; font-weight: 800; }
.cookie-modal-lead { margin: 0 0 1.5rem; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.cookie-group { padding: 1rem 0; border-top: 1px solid var(--line); }
.cookie-group:first-of-type { border-top: 0; padding-top: 0; }
.cookie-group-head { display: flex; gap: 1rem; align-items: flex-start; justify-content: space-between; }
.cookie-group h3 { margin: 0 0 .25rem; font-size: 1rem; font-weight: 700; color: #fff; }
.cookie-group p { margin: 0; font-size: .85rem; line-height: 1.55; color: var(--muted); }
.cookie-modal-actions { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: flex-end; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }

.cookie-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; cursor: pointer; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-switch span { position: absolute; inset: 0; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; transition: .2s; }
.cookie-switch span::before { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: .2s; }
.cookie-switch input:checked + span { background: var(--accent); border-color: var(--accent); }
.cookie-switch input:checked + span::before { transform: translateX(20px); background: var(--bg-0); }
.cookie-switch.is-disabled { cursor: not-allowed; opacity: .6; }
.cookie-switch.is-disabled span { background: var(--accent); border-color: var(--accent); }
.cookie-switch.is-disabled span::before { transform: translateX(20px); background: var(--bg-0); }

@media (max-width: 600px) {
  .cookie-bar { left: .5rem; right: .5rem; bottom: .5rem; padding: .85rem 1rem; }
  .cookie-bar-actions { width: 100%; justify-content: stretch; }
  .cookie-bar-actions .cookie-btn { flex: 1; min-width: 0; padding: .65rem .5rem; font-size: .8rem; }
}

.legal-section h3 { font-size: 1.1rem; font-weight: 700; margin: 1.25rem 0 .65rem; color: #fff; }
.legal-section h4 { font-size: 1rem; font-weight: 700; margin: 1rem 0 .5rem; color: var(--text); }

/* === Foglalásaim oldal === */
.account-section h2 .bk-count {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: .15rem .6rem;
  border-radius: 999px;
  margin-left: .5rem;
  vertical-align: middle;
}

.bk-list { display: flex; flex-direction: column; gap: 1rem; }

.bk-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.bk-card:hover { border-color: rgba(251, 191, 36, .25); }
.bk-card-past { opacity: .75; }

.bk-card-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.bk-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(251, 191, 36, .1);
  border: 1px solid rgba(251, 191, 36, .25);
}
.bk-day {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.bk-month {
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}

.bk-info { flex: 1; min-width: 0; }
.bk-info h3 {
  font-size: 1.05rem;
  margin: 0 0 .25rem;
  font-weight: 700;
}
.bk-info p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.bk-status {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  padding: .35rem .75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.bk-status-pending   { background: rgba(245, 158, 11, .15); color: rgb(251, 191, 36); }
.bk-status-approved  { background: rgba(34, 197, 94, .15);  color: rgb(74, 222, 128); }
.bk-status-completed { background: rgba(100, 116, 139, .2); color: rgb(203, 213, 225); }
.bk-status-cancelled { background: rgba(239, 68, 68, .15);  color: rgb(248, 113, 113); }

.bk-card-body { padding: 1rem 1.25rem; }
.bk-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}
.bk-meta > div { display: flex; flex-direction: column; gap: .15rem; }
.bk-meta-lbl {
  font-size: .65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}
.bk-meta-val { font-size: .9rem; font-weight: 600; color: #fff; }

.bk-actions { display: flex; gap: .5rem; justify-content: flex-end; padding-top: .75rem; border-top: 1px solid rgba(255, 255, 255, .05); }
.btn-ghost {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .25);
  color: rgb(248, 113, 113);
}
.btn-ghost:hover { background: rgba(239, 68, 68, .15); border-color: rgba(239, 68, 68, .4); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

.bk-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  background: rgba(255, 255, 255, .02);
  border: 1px dashed rgba(255, 255, 255, .1);
  border-radius: 14px;
}
.bk-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.bk-empty h2 { font-size: 1.35rem; margin-bottom: .5rem; }
.bk-empty p { color: var(--muted); margin-bottom: 1.5rem; }

@media (max-width: 600px) {
  .bk-card-head { flex-wrap: wrap; }
  .bk-status { order: 3; margin-left: auto; }
}

/* === Blog cikk - pageeditor block override (kisebb térközök) === */
.blog-post-body section.block { padding: 1.5rem 0; }
.blog-post-body section.block:first-child { padding-top: 0; }
.blog-post-body section.block:last-child { padding-bottom: 0; }
.blog-post-body .section-head { margin-bottom: 1.25rem; }
.blog-post-body .container { padding-left: 0; padding-right: 0; }

/* Foglalás - kredit infó */
.credits-info { display: flex; flex-direction: column; gap: .25rem; }
.credits-missing { background: rgba(239, 68, 68, .12); border: 1px solid rgba(239, 68, 68, .3); color: #f87171; padding: .4rem .75rem; border-radius: 6px; font-size: .85rem; margin-top: .35rem; }
.credits-missing a { font-weight: 700; }
.payment-pill input[type="radio"]:disabled + .payment-pill-inner { opacity: .5; cursor: not-allowed; }

/* Foglalás - szolgáltatás kártya kredit jelzés */
.bk-svc-row .credits-label { color: var(--accent); font-size: .75rem; font-weight: 700; margin-top: .35rem; text-transform: uppercase; letter-spacing: .03em; }
/* === Video / Image blokk általános padding (page-render) === */
section.block.video-block,
section.block.image-block { padding: 2rem 0; }

/* === Blog cikknél kompaktabb térközök blokkok között === */
.blog-post-body section.block { padding: 0.6rem 0; }
.blog-post-body section.block:first-child { padding-top: 0; }
.blog-post-body section.block:last-child { padding-bottom: 0; }
.blog-post-body section.block.video-block,
.blog-post-body section.block.image-block { padding: 1rem 0; }