    /* ── Variables ─────────────────────────────────────────────── */
    :root {
      --navy:       #0F172A;
      --navy-mid:   #1E293B;
      --blue:       #0369A1;
      --blue-dark:  #025888;
      --blue-light: #E0F2FE;
      --blue-glow:  rgba(3,105,161,0.18);
      --accent:      #F97316;
      --accent-dark: #EA580C;
      --accent-glow: rgba(249,115,22,0.18);
      --white:      #FFFFFF;
      --off-white:  #F8FAFC;
      --gray-light: #F1F5F9;
      --text:       #020617;
      --text-mid:   #334155;
      --text-muted: #64748B;
      --border:     #E2E8F0;
      --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
      --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
      --shadow-lg:  0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
      --shadow-blue: 0 8px 32px rgba(3,105,161,0.35);
      --shadow-accent: 0 8px 32px rgba(249,115,22,0.40);
      --radius-sm:  8px;
      --radius-md:  14px;
      --radius-lg:  22px;
      --nav-h:      76px;
      --font-head:  'Poppins', sans-serif;
      --font-body:  'Open Sans', sans-serif;
    }

    /* ── Reset ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
    body {
      background: var(--white);
      color: var(--text);
      font-family: var(--font-body);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: clip;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* ── Buttons ───────────────────────────────────────────────── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--accent);
      color: #fff;
      font-family: var(--font-head);
      font-size: 1rem; font-weight: 700;
      padding: 16px 32px;
      border-radius: var(--radius-sm);
      border: none; cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.01em; white-space: nowrap;
    }
    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-accent);
    }
    .btn-primary:active { transform: translateY(0); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent;
      color: var(--white);
      font-family: var(--font-head);
      font-size: 1rem; font-weight: 600;
      padding: 15px 28px;
      border-radius: var(--radius-sm);
      border: 2px solid rgba(255,255,255,0.35);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }

    .btn-outline-dark {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent;
      color: var(--blue);
      font-family: var(--font-head);
      font-size: 1rem; font-weight: 600;
      padding: 15px 28px;
      border-radius: var(--radius-sm);
      border: 2px solid var(--blue);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline-dark:hover { background: var(--blue); color: #fff; }

    /* ── Section labels ────────────────────────────────────────── */
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 16px;
    }
    .section-label::before {
      content: ''; display: block;
      width: 20px; height: 2px;
      background: var(--blue); border-radius: 2px;
    }

    .section-headline {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
      color: var(--navy); margin-bottom: 16px;
    }
    .section-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

    /* ── Reveal animations (JS-driven) ─────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                  transform 0.7s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-40px);
      transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
    .reveal-left.in { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(40px);
      transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
    .reveal-right.in { opacity: 1; transform: translateX(0); }

    /* ── NAV ───────────────────────────────────────────────────── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: var(--nav-h);
      display: flex; align-items: center;
      background: var(--navy);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
    }
    #nav.scrolled {
      box-shadow: 0 4px 22px rgba(0,0,0,0.28);
    }
    /* Flex + space-between: a logó a bal, a gombok a jobb szélre kerülnek,
       a linkek középre, MINDKÉT oldalon egyforma térközzel. A korábbi
       1fr auto 1fr rács a 6 link miatt a jobb oldalon összezsúfolódott
       (a linkek szinte a gombokhoz értek), bal oldalon meg nagy üres rés
       maradt. Mobilon (csak logó + hamburger) ugyanígy a két szélre ül. */
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      width: 100%;
    }
    .nav-inner .nav-links { flex: 0 1 auto; }

    /* Let the navbar span the full width so the three zones hug the edges
       instead of clustering inside the 1200px content container. */
    #nav > .container {
      max-width: none;
      padding-left: clamp(20px, 3.5vw, 48px);
      padding-right: clamp(20px, 3.5vw, 48px);
    }

    /* Logo — always white on dark nav */
    @keyframes navLogoIn {
      from { opacity: 0; transform: translateX(-14px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes navLinkIn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px; cursor: pointer;
      animation: navLogoIn 0.55s 0.1s cubic-bezier(0.22,1,0.36,1) both;
    }
    .nav-logo-img-wrap {
      height: 46px; display: flex; align-items: center;
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
    }
    .nav-logo:hover .nav-logo-img-wrap { transform: scale(1.08); }
    .nav-logo-img-wrap img {
      height: 46px; width: auto;
      display: block;
    }
    .nav-logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
    .nav-logo-name {
      font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
      color: #fff; letter-spacing: -0.01em;
    }
    .nav-logo-name span { color: #7DD3FC; }

    /* Wider spacing on desktop; tightens on narrow viewports so the six-link
       row keeps fitting before the hamburger breakpoint kicks in. */
    .nav-links { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 22px); }
    .nav-links li { animation: navLinkIn 0.5s cubic-bezier(0.22,1,0.36,1) both; }
    .nav-links li:nth-child(1) { animation-delay: 0.18s; }
    .nav-links li:nth-child(2) { animation-delay: 0.24s; }
    .nav-links li:nth-child(3) { animation-delay: 0.30s; }
    .nav-links li:nth-child(4) { animation-delay: 0.36s; }
    .nav-links li:nth-child(5) { animation-delay: 0.42s; }
    .nav-links li:nth-child(6) { animation-delay: 0.48s; }
    .nav-links a {
      position: relative;
      font-size: 0.875rem; font-weight: 500;
      color: rgba(255,255,255,0.72);
      padding: 8px 14px; border-radius: var(--radius-sm);
      transition: color 0.22s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 1.5px;
      background: #7DD3FC; border-radius: 2px;
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { transform: scaleX(1); }
    /* Aktuális oldal kiemelése a menüben */
    .nav-links a[aria-current="page"] { color: #fff; }
    .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

    .nav-actions {
      display: flex; align-items: center; gap: 14px;
      padding-left: clamp(14px, 1.6vw, 24px);
      border-left: 1px solid rgba(255,255,255,0.10);
    }
    .nav-phone {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
      color: rgba(255,255,255,0.9); white-space: nowrap;
      transition: color 0.2s;
      animation: navLinkIn 0.5s 0.4s cubic-bezier(0.22,1,0.36,1) both;
    }
    .nav-phone svg { color: #7DD3FC; flex-shrink: 0; }
    .nav-phone:hover { color: #fff; }

    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--accent); color: #fff; border: none;
      font-family: var(--font-head); font-size: 0.875rem; font-weight: 600;
      padding: 10px 20px; border-radius: var(--radius-sm);
      white-space: nowrap;
      transition: background 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
      cursor: pointer;
      animation: navLinkIn 0.5s 0.46s cubic-bezier(0.22,1,0.36,1) both;
    }
    .nav-cta:hover { background: var(--accent-dark); transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-accent); }
    .nav-cta svg { flex-shrink: 0; }

    /* Mobile slide-down menu panel (opened via JS → display:flex).
       A compact dropdown that hugs its content rather than covering the whole
       screen; it scrolls internally only if the content is taller than the
       viewport. */
    @keyframes mobileNavIn {
      from { opacity: 0; transform: translateY(-14px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes mobileLinkIn {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    #mobile-nav {
      display: none;
      position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 190;
      flex-direction: column;
      background: var(--navy);
      padding: 14px 22px calc(22px + env(safe-area-inset-bottom));
      max-height: calc(100dvh - var(--nav-h));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      border-bottom: 1px solid rgba(255,255,255,0.10);
      border-radius: 0 0 18px 18px;
      box-shadow: 0 26px 44px rgba(0,0,0,0.45);
      transform-origin: top center;
      animation: mobileNavIn 0.34s cubic-bezier(0.22,1,0.36,1);
    }
    .mobile-nav-link {
      font-family: var(--font-head); font-size: 1.12rem; font-weight: 600;
      color: rgba(255,255,255,0.85);
      padding: 15px 6px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s, padding-left 0.2s;
      animation: mobileLinkIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
    }
    #mobile-nav .mobile-nav-link:nth-child(1) { animation-delay: 0.06s; }
    #mobile-nav .mobile-nav-link:nth-child(2) { animation-delay: 0.10s; }
    #mobile-nav .mobile-nav-link:nth-child(3) { animation-delay: 0.14s; }
    #mobile-nav .mobile-nav-link:nth-child(4) { animation-delay: 0.18s; }
    #mobile-nav .mobile-nav-link:nth-child(5) { animation-delay: 0.22s; }
    #mobile-nav .mobile-nav-link:nth-child(6) { animation-delay: 0.26s; }
    .mobile-nav-link:hover, .mobile-nav-link:active { color: #7DD3FC; padding-left: 12px; }

    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 8px; background: none; border: none;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: rgba(255,255,255,0.85); border-radius: 2px;
      transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s;
    }
    /* animate to an X when the menu is open */
    .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO (diagonal split) ─────────────────────────────────── */
    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroAccent {
      to { opacity: 1; transform: scaleX(1); }
    }
    @keyframes pulseDot {
      0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
      50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
    }
    #hero {
      position: relative; min-height: 100vh;
      display: grid; grid-template-columns: 1.05fr 0.95fr;
      align-items: center; gap: 48px;
      overflow: hidden;
      padding: calc(var(--nav-h) + 48px) 6vw 72px;
      background: var(--navy);
    }
    /* Real photo, darkened, sits behind the content */
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      width: 100%; height: 100%; object-fit: cover; object-position: center;
    }
    #hero::before {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        linear-gradient(100deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.78) 38%, rgba(15,23,42,0.45) 72%, rgba(15,23,42,0.30) 100%),
        radial-gradient(80% 80% at 82% 18%, rgba(249,115,22,0.16), transparent 60%);
    }

    /* Left content panel */
    .hero-left {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; justify-content: center;
    }

    /* Availability badge */
    .hero-avail {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(125,211,252,0.10); border: 1px solid rgba(125,211,252,0.28);
      border-radius: 100px; padding: 7px 18px;
      font-size: 0.76rem; font-weight: 600; color: #7DD3FC;
      margin-bottom: 28px; width: fit-content;
      opacity: 0; transform: translateY(12px);
      animation: heroIn 0.6s 0.28s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-avail-dot {
      width: 7px; height: 7px; background: #22C55E; border-radius: 50%;
      animation: pulseDot 2s ease-in-out infinite;
    }

    /* Main content */
    .hero-main { display: flex; flex-direction: column; }

    .hero-h1 {
      font-family: var(--font-head);
      font-size: clamp(2.5rem, 4.4vw, 3.9rem);
      font-weight: 800; line-height: 1.07; letter-spacing: -0.03em;
      color: #fff;
      opacity: 0; transform: translateY(20px);
      animation: heroIn 0.8s 0.38s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-h1 .hl-blue { color: #7DD3FC; }

    .hero-accent-line {
      width: 48px; height: 3px;
      background: #38BDF8; border-radius: 2px;
      margin: 26px 0 24px;
      opacity: 0; transform: scaleX(0); transform-origin: left;
      animation: heroAccent 0.6s 0.52s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .hero-sub-text {
      font-size: 1.05rem; color: rgba(255,255,255,0.72);
      line-height: 1.78; max-width: 440px; margin-bottom: 36px;
      opacity: 0; transform: translateY(14px);
      animation: heroIn 0.7s 0.60s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .hero-cta-row {
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
      opacity: 0; transform: translateY(12px);
      animation: heroIn 0.6s 0.74s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-btn { padding: 17px 34px; font-size: 1.02rem; box-shadow: var(--shadow-md); }
    .hero-cta-row .btn-outline { box-shadow: none; }

    /* Right side: boiler diagnostic panel */
    .panel-wrap {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; align-items: center;
      opacity: 0; transform: translateY(22px);
      animation: heroIn 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .panel {
      width: min(380px, 86vw);
      background: linear-gradient(180deg, #F1F5F9, #fff);
      border-radius: var(--radius-lg); padding: 20px; color: var(--navy);
      box-shadow: 0 40px 90px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.6);
    }
    .panel-top {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: #94A3B8; margin-bottom: 14px;
    }
    .panel-brand { display: flex; align-items: center; gap: 8px; }
    .panel-led {
      width: 8px; height: 8px; border-radius: 50%;
      background: #22C55E; box-shadow: 0 0 8px #22C55E;
    }
    .screen {
      background: #0B1220; border-radius: 14px; padding: 26px 24px; text-align: center;
      font-family: var(--font-head); position: relative; overflow: hidden;
      box-shadow: inset 0 2px 10px rgba(0,0,0,0.6);
    }
    .screen::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 4px);
    }
    .scr-icon { height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
    /* Plain-language status is the dominant text; the code is a small chip */
    .scr-main { font-size: 1.55rem; font-weight: 800; line-height: 1.2; transition: color 0.4s; }
    .scr-code {
      display: inline-block; margin-top: 12px;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
      padding: 5px 13px; border-radius: 100px;
      background: rgba(255,255,255,0.06); color: #94A3B8;
      transition: color 0.4s, background 0.4s;
    }
    .screen.err .scr-main { color: #FCA5A5; }
    .screen.work .scr-main { color: #FBBF24; }
    .screen.ok  .scr-main { color: #4ADE80; }
    .screen.err  .scr-code { color: #FCA5A5; background: rgba(248,113,113,0.14); }
    .screen.work .scr-code { color: #FCD34D; background: rgba(251,191,36,0.14); }
    .screen.ok   .scr-code { color: #86EFAC; background: rgba(34,197,94,0.14); }

    /* Always-visible labeled step rail: Hiba -> Javítás -> Kész */
    .panel-steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      margin-top: 22px;
    }
    .pstep {
      position: relative; display: flex; flex-direction: column;
      align-items: center; gap: 9px;
    }
    .pstep:not(:first-child)::before {
      content: ''; position: absolute; top: 15px; left: -50%; right: 50%; height: 2px;
      background: #E2E8F0; z-index: 0; transition: background 0.45s;
    }
    .pstep-dot {
      position: relative; z-index: 1;
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
      background: #fff; color: #94A3B8; border: 2px solid #E2E8F0;
      transition: background 0.45s, border-color 0.45s, color 0.45s, box-shadow 0.45s;
    }
    .pstep-label {
      font-size: 0.72rem; font-weight: 700; color: #94A3B8;
      text-align: center; transition: color 0.45s;
    }
    .pstep.is-active .pstep-dot {
      background: var(--accent); border-color: var(--accent); color: #fff;
      box-shadow: 0 0 0 4px rgba(249,115,22,0.18);
    }
    .pstep.is-active .pstep-label { color: var(--navy); }
    .pstep.is-active::before { background: var(--accent); }
    .pstep.is-done .pstep-dot { background: #22C55E; border-color: #22C55E; color: #fff; }
    .pstep.is-done .pstep-label { color: #16A34A; }
    .pstep.is-done::before { background: #22C55E; }

    @media (max-width: 900px) {
      #hero {
        grid-template-columns: 1fr; min-height: 0;
        text-align: center; gap: 40px;
        padding: calc(var(--nav-h) + 32px) 6vw 56px;
      }
      .hero-left { align-items: center; }
      .hero-avail, .hero-accent-line, .hero-sub-text { margin-left: auto; margin-right: auto; }
      .hero-cta-row { justify-content: center; }
    }

    /* Phones: calmer headline, even rhythm, clean full-width CTAs */
    @media (max-width: 600px) {
      #hero {
        gap: 30px;
        padding: calc(var(--nav-h) + 26px) 22px 46px;
      }
      .hero-left, .hero-main { width: 100%; }
      .hero-h1 { font-size: 2.25rem; line-height: 1.12; }
      .hero-accent-line { margin: 18px auto; }
      .hero-sub-text {
        font-size: 1rem; line-height: 1.7;
        max-width: 420px; margin-bottom: 28px;
      }
      .hero-cta-row {
        flex-direction: column; align-items: stretch; flex-wrap: nowrap;
        width: 100%; max-width: 360px; margin: 0 auto; gap: 12px;
      }
      .hero-btn { width: 100%; justify-content: center; padding: 16px 22px; }
      .panel { width: 100%; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-avail-dot { animation: none; }
      .panel-wrap { animation: none; opacity: 1; transform: none; }
      .screen.err .scr-main { animation: none; }
      #hero-proof::before { animation: none; }
    }

    /* ── HERO TRUST STRIP (nav-matched navy, "spicy") ─────────────── */
    @keyframes proofLine { to { background-position: -200% 0; } }
    #hero-proof {
      position: relative; overflow: hidden;
      background:
        radial-gradient(130% 200% at 12% -60%, rgba(3,105,161,0.30) 0%, transparent 55%),
        radial-gradient(130% 200% at 88% 160%, rgba(249,115,22,0.16) 0%, transparent 55%),
        var(--navy);
      border-bottom: 1px solid rgba(0,0,0,0.35);
      box-shadow: inset 0 14px 30px -20px rgba(0,0,0,0.6);
    }
    /* animated gradient separator line riding the top edge */
    #hero-proof::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
      background: linear-gradient(90deg,
        transparent 0%, var(--blue) 18%, #38BDF8 38%,
        var(--accent) 60%, #FBBF24 76%, transparent 100%);
      background-size: 200% 100%;
      box-shadow: 0 0 14px rgba(56,189,248,0.45);
      animation: proofLine 7s linear infinite;
    }
    /* faint dot texture for depth */
    #hero-proof::after {
      content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.6;
      background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .hero-proof-row {
      position: relative; z-index: 1;
      display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;
    }
    .hero-proof-item {
      position: relative; flex: 1 1 0; min-width: 200px;
      display: flex; align-items: center; gap: 15px;
      padding: 26px 28px;
      transition: background 0.3s ease;
    }
    .hero-proof-item:hover { background: rgba(255,255,255,0.035); }
    .hero-proof-item + .hero-proof-item::before {
      content: ''; position: absolute; left: 0; top: 20px; bottom: 20px; width: 1px;
      background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
    }
    .hero-proof-ic {
      width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
      background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.12); color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 6px 16px rgba(0,0,0,0.28);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s, color 0.3s;
    }
    .hero-proof-item:hover .hero-proof-ic {
      transform: translateY(-3px) scale(1.05);
      border-color: rgba(249,115,22,0.55);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 12px 24px rgba(249,115,22,0.28);
    }
    .hero-proof-item:first-child .hero-proof-ic { color: #FBBF24; }
    .hero-proof-stars {
      display: flex; gap: 2px; color: #FBBF24; margin-bottom: 4px;
      filter: drop-shadow(0 0 6px rgba(251,191,36,0.55));
    }
    .hero-proof-text { display: flex; flex-direction: column; line-height: 1.3; }
    .hero-proof-num {
      font-family: var(--font-head); font-weight: 800; color: #fff;
      font-size: 1.2rem; letter-spacing: -0.01em;
    }
    .hero-proof-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

    @media (max-width: 860px) {
      .hero-proof-row { display: grid; grid-template-columns: 1fr 1fr; }
      .hero-proof-item { padding: 22px 20px; }
      .hero-proof-item + .hero-proof-item::before { display: none; }
      .hero-proof-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.14); }
      .hero-proof-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.14); }
    }
    @media (max-width: 460px) {
      .hero-proof-row { grid-template-columns: 1fr; }
      .hero-proof-item:nth-child(odd) { border-right: none; }
      .hero-proof-item { border-top: 1px solid rgba(255,255,255,0.14); }
      .hero-proof-item:first-child { border-top: none; }
    }

    /* ── PROCESS ──────────────────────────────────────────────── */
    #process { padding: 88px 0; background: var(--off-white); }
    .process-header { text-align: center; max-width: 520px; margin: 0 auto 64px; }

    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      position: relative; gap: 0;
    }
    /* connecting line behind the steps */
    .process-steps::before {
      content: ''; position: absolute;
      top: 32px; left: calc(12.5% + 32px); right: calc(12.5% + 32px); height: 1px;
      background: linear-gradient(90deg, var(--blue) 0%, rgba(3,105,161,0.2) 100%);
      z-index: 0;
    }
    .process-step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 0 20px;
      position: relative; z-index: 1;
    }
    .process-num-wrap {
      position: relative; margin-bottom: 28px;
    }
    .process-num {
      width: 64px; height: 64px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--white); border: 2px solid var(--blue);
      font-family: var(--font-head); font-size: 1.25rem; font-weight: 800;
      color: var(--blue);
      transition: background 0.28s, color 0.28s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s;
      position: relative; z-index: 1;
    }
    .process-step:hover .process-num {
      background: var(--blue); color: #fff;
      transform: scale(1.1);
      box-shadow: var(--shadow-blue);
    }
    .process-num-ring {
      position: absolute; inset: -8px; border-radius: 50%;
      border: 1px solid rgba(3,105,161,0.18);
      transition: border-color 0.28s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    .process-step:hover .process-num-ring {
      border-color: rgba(3,105,161,0.4);
      transform: scale(1.05);
    }
    .process-icon {
      width: 40px; height: 40px;
      background: var(--blue-light); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--blue); margin: 0 auto 16px;
      transition: background 0.25s, color 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
    .process-step:hover .process-icon { background: var(--blue); color: #fff; transform: scale(1.08); }
    .process-step-title {
      font-family: var(--font-head); font-size: 1rem; font-weight: 700;
      color: var(--navy); margin-bottom: 10px; line-height: 1.3;
    }
    .process-step-desc {
      font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
    }
    .process-step-tag {
      display: inline-block; margin-top: 14px;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--blue);
      padding: 4px 10px; border-radius: 100px;
      background: rgba(3,105,161,0.08); border: 1px solid rgba(3,105,161,0.15);
    }

    @media (max-width: 768px) {
      .process-steps {
        grid-template-columns: 1fr 1fr; gap: 40px 20px;
      }
      .process-steps::before { display: none; }
    }
    @media (max-width: 480px) {
      .process-steps { grid-template-columns: 1fr; gap: 36px; }
    }

    /* ── SERVICES ──────────────────────────────────────────────── */
    #services { padding: 76px 0; background: var(--white); }
    .services-header { text-align: center; max-width: 580px; margin: 0 auto 48px; }

    .services-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
    }
    .service-card {
      position: relative; border-radius: var(--radius-md);
      overflow: hidden; cursor: pointer;
      background: var(--off-white);
      border: 1px solid var(--border);
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .service-card:hover {
      border-color: rgba(26,86,232,0.3);
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,86,232,0.08);
      transform: translateY(-4px);
    }
    .service-card-body { padding: 28px 28px 24px; }
    .service-icon {
      width: 50px; height: 50px;
      background: var(--blue-light); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--blue); margin-bottom: 20px;
      transition: background 0.25s, color 0.25s, transform 0.25s;
    }
    .service-card:hover .service-icon { background: var(--blue); color: #fff; transform: scale(1.05); }
    .service-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
    .service-link {
      display: inline-flex; align-items: center; gap: 5px;
      color: var(--blue); font-size: 0.82rem; font-weight: 600;
      margin-top: 14px; opacity: 0; transform: translateX(-6px);
      transition: opacity 0.2s, transform 0.2s;
    }
    .service-card:hover .service-link { opacity: 1; transform: translateX(0); }
    /* whole card is clickable via the stretched link */
    a.service-link::after { content: ''; position: absolute; inset: 0; z-index: 2; }

    /* photo strip on service card top */
    .service-card-photo {
      width: 100%; height: 160px; object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
    }
    .service-card:hover .service-card-photo { transform: scale(1.05); }

    /* wide service card (full row) */
    .service-card-wide {
      grid-column: 1 / -1;
    }
    .service-card-wide .service-card-body {
      display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
    }
    .service-card-wide .service-icon { flex-shrink: 0; }
    .service-card-wide .service-name { margin-bottom: 4px; }
    .service-card-wide .service-desc { margin-bottom: 0; flex: 1; min-width: 200px; }
    .service-card-wide .service-cta { flex-shrink: 0; }

    /* large service feature row */
    .service-feature {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-lg);
      margin-bottom: 24px;
    }
    .service-feature-photo {
      position: relative; overflow: hidden; min-height: 420px;
    }
    .service-feature-photo img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
    }
    .service-feature:hover .service-feature-photo img { transform: scale(1.04); }
    .service-feature-body {
      background: var(--navy); padding: 52px 48px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .service-feature-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: #7DD3FC; margin-bottom: 16px;
    }
    .service-feature-title {
      font-family: var(--font-head); font-size: 1.9rem; font-weight: 800;
      color: #fff; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 16px;
    }
    .service-feature-desc { font-size: 0.97rem; color: rgba(255,255,255,0.65); line-height: 1.72; margin-bottom: 32px; }
    .service-feature-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(26,86,232,0.25); border: 1px solid rgba(26,86,232,0.4);
      border-radius: 100px; padding: 8px 16px;
      font-size: 0.8rem; font-weight: 600; color: #93C5FD;
      width: fit-content; margin-bottom: 28px;
    }

    /* ── ABOUT ─────────────────────────────────────────────────── */
    #about { padding: 76px 0; background: var(--off-white); }
    .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

    .about-photo-wrap { position: relative; }
    .about-photo-frame {
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/5;
      position: relative;
    }
    .about-photo-frame img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top;
      transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
    }
    .about-photo-wrap:hover .about-photo-frame img { transform: scale(1.03); }

    .about-badge {
      position: absolute; bottom: -24px; right: -24px;
      background: var(--blue); color: #fff;
      border-radius: var(--radius-md); padding: 20px 24px;
      box-shadow: var(--shadow-blue);
      text-align: center;
    }
    .about-badge-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; }
    .about-badge-label { font-size: 0.75rem; opacity: 0.85; margin-top: 3px; }

    .about-content .about-headline {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.5vw, 2.4rem);
      font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
      color: var(--navy); margin-bottom: 20px;
    }
    .about-text { font-size: 0.97rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 14px; }

    .about-creds { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
    .about-cred {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.92rem; color: var(--text-mid); font-weight: 500;
    }
    .about-cred-icon {
      width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
      background: rgba(26,86,232,0.1); border: 1px solid rgba(26,86,232,0.2);
      display: flex; align-items: center; justify-content: center; color: var(--blue);
    }

    /* ── TESTIMONIALS ──────────────────────────────────────────── */
    #testimonials { padding: 88px 0 80px; background: var(--navy); overflow: hidden; }
    .testimonials-header { text-align: center; max-width: 540px; margin: 0 auto 52px; }
    #testimonials .section-headline { color: #fff; }
    #testimonials .section-sub { color: rgba(255,255,255,0.48); }
    #testimonials .section-label { color: #7DD3FC; }
    #testimonials .section-label::before { background: #7DD3FC; }

    /* ── Google rating card ───────────────────────────────────── */
    .t-rating-bar {
      display: flex; align-items: stretch; justify-content: center;
      max-width: 820px; margin: 0 auto 26px; flex-wrap: wrap;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: 0 26px 70px rgba(0,0,0,0.4);
    }
    .t-rating-score {
      display: flex; align-items: center; gap: 20px;
      padding: 28px 36px; flex: 1 1 320px;
      background: linear-gradient(135deg, rgba(125,211,252,0.12), transparent 72%);
    }
    .t-google-logo { width: 46px; height: 46px; flex-shrink: 0; }
    .t-score-num {
      font-family: var(--font-head); font-size: 3.4rem; font-weight: 800;
      color: #fff; line-height: 1; letter-spacing: -0.04em;
    }
    .t-score-meta { display: flex; flex-direction: column; gap: 6px; }
    .t-score-brand {
      display: flex; align-items: center; gap: 7px;
      font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: #fff;
    }
    .t-score-stars { display: flex; gap: 3px; }
    .t-score-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
    .t-rating-stats { display: flex; flex: 1 1 320px; }
    .t-rating-stat {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 3px;
      padding: 24px 14px; border-left: 1px solid rgba(255,255,255,0.08);
    }
    .t-stat-num {
      font-family: var(--font-head); font-size: 1.7rem; font-weight: 800;
      color: #7DD3FC; letter-spacing: -0.03em;
    }
    .t-stat-label { font-size: 0.73rem; color: rgba(255,255,255,0.5); text-align: center; }

    /* leave-a-review CTA */
    .t-review-cta { display: flex; justify-content: center; margin-bottom: 50px; }
    .t-review-link {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 0.85rem; font-weight: 600; color: #7DD3FC;
      padding: 11px 24px; border-radius: 100px;
      border: 1px solid rgba(125,211,252,0.3); background: rgba(125,211,252,0.06);
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .t-review-link:hover { background: rgba(125,211,252,0.14); border-color: rgba(125,211,252,0.55); transform: translateY(-2px); }

    @media (max-width: 560px) {
      .t-rating-score { justify-content: center; flex-basis: 100%; }
      .t-rating-stats { flex-basis: 100%; border-top: 1px solid rgba(255,255,255,0.08); }
      .t-rating-stat:first-child { border-left: none; }
    }

    /* marquee tracks */
    .t-tracks { display: flex; flex-direction: column; gap: 14px; }
    .t-track-wrap {
      overflow: hidden; position: relative;
    }
    .t-track-wrap::before,
    .t-track-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 1; pointer-events: none;
    }
    .t-track-wrap::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
    .t-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--navy), transparent); }
    .t-track {
      display: flex; gap: 14px; width: max-content;
      animation: tScroll 42s linear infinite;
    }
    .t-track.t-reverse { animation: tScrollR 35s linear infinite; }
    .t-track:hover, .t-track.t-reverse:hover { animation-play-state: paused; }
    @keyframes tScroll  { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
    @keyframes tScrollR { from { transform: translateX(-50%); } to { transform: translateX(0);    } }

    /* card */
    .t-card {
      position: relative; overflow: hidden;
      flex-shrink: 0; width: 330px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md); padding: 26px 26px 22px;
      cursor: default;
      transition: background 0.25s, border-color 0.25s, transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s;
    }
    /* oversized decorative quote */
    .t-card::before {
      content: '\201C'; position: absolute; top: -26px; left: 18px;
      font-family: 'Poppins', sans-serif; font-size: 7rem; font-weight: 800;
      color: rgba(125,211,252,0.08); line-height: 1; pointer-events: none; z-index: 0;
    }
    /* Google "G" badge — added on every card via CSS */
    .t-card::after {
      content: ''; position: absolute; top: 24px; right: 24px;
      width: 18px; height: 18px; opacity: 0.9; pointer-events: none;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%234285F4' d='M45.12 24.5c0-1.56-.14-3.06-.4-4.5H24v8.51h11.84c-.51 2.75-2.06 5.08-4.39 6.64v5.52h7.11c4.16-3.83 6.56-9.47 6.56-16.17z'/%3E%3Cpath fill='%2334A853' d='M24 46c5.94 0 10.92-1.97 14.56-5.33l-7.11-5.52c-1.97 1.32-4.49 2.1-7.45 2.1-5.73 0-10.58-3.87-12.31-9.07H4.34v5.7C7.96 41.07 15.4 46 24 46z'/%3E%3Cpath fill='%23FBBC05' d='M11.69 28.18C11.25 26.86 11 25.45 11 24s.25-2.86.69-4.18v-5.7H4.34C2.85 17.09 2 20.45 2 24s.85 6.91 2.34 9.88l7.35-5.7z'/%3E%3Cpath fill='%23EA4335' d='M24 10.75c3.23 0 6.13 1.11 8.41 3.29l6.31-6.31C34.91 4.18 29.93 2 24 2 15.4 2 7.96 6.93 4.34 14.12l7.35 5.7c1.73-5.2 6.58-9.07 12.31-9.07z'/%3E%3C/svg%3E") center/contain no-repeat;
    }
    .t-card:hover {
      background: rgba(255,255,255,0.075);
      border-color: rgba(125,211,252,0.3);
      transform: translateY(-5px);
      box-shadow: 0 18px 44px rgba(0,0,0,0.32);
    }
    .t-card-stars { display: flex; gap: 3px; margin-bottom: 13px; position: relative; z-index: 1; }
    .t-card-text {
      position: relative; z-index: 1;
      font-size: 0.9rem; color: rgba(255,255,255,0.76);
      line-height: 1.7; margin-bottom: 18px;
    }
    .t-card-author { display: flex; align-items: center; gap: 11px; }
    .t-card-avatar {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue), #38BDF8);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; color: #fff;
    }
    .t-card-name { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; color: #fff; }
    .t-card-loc  {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.72rem; color: rgba(255,255,255,0.42); margin-top: 2px;
    }
    .t-card-verified { color: #7DD3FC; }

    /* ── GALLERY (bento) ──────────────────────────────────────── */
    #gallery { padding: 88px 0; background: var(--white); }
    .gallery-header { text-align: center; max-width: 600px; margin: 0 auto 32px; }

    /* filter chips */
    .gallery-filter {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
      max-width: 760px; margin: 0 auto 40px;
    }
    .gallery-chip {
      font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
      color: var(--navy-mid); background: var(--white);
      border: 1.5px solid var(--border); border-radius: 100px;
      padding: 9px 18px; cursor: pointer;
      display: inline-flex; align-items: center; gap: 7px;
      transition: color 0.22s, background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.22s;
    }
    .gallery-chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
    .gallery-chip:focus-visible { outline: 3px solid var(--blue-glow); outline-offset: 2px; }
    .gallery-chip.is-active {
      color: #fff; background: var(--blue); border-color: var(--blue);
      box-shadow: var(--shadow-blue);
    }
    .gallery-chip-n {
      font-size: 0.74rem; font-weight: 700; line-height: 1;
      padding: 3px 7px; border-radius: 100px;
      background: var(--gray-light); color: var(--text-muted);
    }
    .gallery-chip.is-active .gallery-chip-n { background: rgba(255,255,255,0.22); color: #fff; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 280px;
      grid-auto-flow: dense;
      gap: 16px;
    }
    .gallery-tile {
      position: relative; overflow: hidden;
      border-radius: var(--radius-md);
      cursor: pointer; background: var(--gray-light);
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .gallery-tile.is-featured { grid-column: span 2; grid-row: span 2; }
    .gallery-tile.is-wide { grid-column: span 2; }
    .gallery-tile.hide { display: none; }
    .gallery-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

    /* filter re-shuffle animation */
    @keyframes galleryTileIn {
      from { opacity: 0; transform: translateY(12px) scale(0.97); }
      to   { opacity: 1; transform: none; }
    }
    .gallery-tile.animate-in { animation: galleryTileIn 0.45s cubic-bezier(0.22,1,0.36,1) both; }
    @media (prefers-reduced-motion: reduce) {
      .gallery-tile.animate-in { animation: none; }
    }
    .gallery-tile:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

    .gallery-tile img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
    }
    .gallery-tile:hover img,
    .gallery-tile:focus-visible img { transform: scale(1.08); }

    /* gradient overlay */
    .gallery-tile::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(to top, rgba(2,6,23,0.8) 0%, rgba(2,6,23,0.1) 52%, transparent 78%);
      opacity: 0.28; transition: opacity 0.4s;
    }
    .gallery-tile:hover::after,
    .gallery-tile:focus-visible::after { opacity: 0.92; }

    /* caption */
    .gallery-cap {
      position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
      padding: 18px 18px 16px;
      transform: translateY(8px); opacity: 0;
      transition: transform 0.42s cubic-bezier(0.22,1,0.36,1), opacity 0.42s;
    }
    .gallery-tile:hover .gallery-cap,
    .gallery-tile:focus-visible .gallery-cap { transform: translateY(0); opacity: 1; }
    .gallery-cap-tag {
      display: inline-block; margin-bottom: 8px;
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      color: #fff; background: rgba(3,105,161,0.9);
      padding: 4px 11px; border-radius: 100px;
    }
    .gallery-cap-title {
      font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
      color: #fff; line-height: 1.3;
    }
    .gallery-tile.is-featured .gallery-cap-title { font-size: 1.25rem; }

    /* zoom icon */
    .gallery-tile-icon {
      position: absolute; top: 14px; right: 14px; z-index: 2;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.18); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.32);
      display: flex; align-items: center; justify-content: center; color: #fff;
      opacity: 0; transform: scale(0.7);
      transition: opacity 0.35s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    .gallery-tile:hover .gallery-tile-icon,
    .gallery-tile:focus-visible .gallery-tile-icon { opacity: 1; transform: scale(1); }

    .gallery-empty { text-align: center; margin-top: 28px; font-size: 1rem; color: var(--text-muted); }

    /* ── HOW THE INSTANT QUOTE WORKS (index.html) ── */
    #instant-quote { position: relative; overflow: hidden; padding: 76px 0; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #16243b 100%); color: #fff; }
    #instant-quote::before { content: ""; position: absolute; top: -30%; right: -8%; width: 480px; height: 480px; background: radial-gradient(circle, var(--blue-glow), transparent 70%); pointer-events: none; }
    #instant-quote .container { position: relative; z-index: 1; }
    .iq-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
    .iq-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
    .iq-head h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4.5vw, 2.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
    .iq-head p { color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 1.05rem; }
    .iq-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
    .iq-step { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-md); padding: 28px 24px; }
    .iq-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }
    .iq-step h3 { font-family: var(--font-head); font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
    .iq-step p { font-size: 0.92rem; color: rgba(255,255,255,0.72); line-height: 1.6; }
    .iq-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .iq-cta .btn-primary { font-size: 1rem; padding: 15px 30px; }
    .iq-note { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
    @media (max-width: 760px) { .iq-steps { grid-template-columns: 1fr; } }

    /* ── BEFORE / AFTER SLIDER (munkaim.html) ── */
    .ba-section { padding: 76px 0; background: var(--off-white); }
    .ba-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
    .ba-slider { position: relative; max-width: 880px; margin: 0 auto; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); touch-action: none; user-select: none; --pos: 50%; }
    .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
    .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
    .ba-tag { position: absolute; top: 14px; z-index: 3; font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; padding: 5px 12px; border-radius: 100px; background: rgba(15,23,42,0.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
    .ba-tag-before { left: 14px; }
    .ba-tag-after { right: 14px; }
    .ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; z-index: 2; pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.12); }
    .ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--navy); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
    .ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 4; }
    .ba-caption { text-align: center; margin-top: 20px; font-size: 0.92rem; color: var(--text-muted); }
    .gallery-footnote { text-align: center; margin-top: 42px; font-size: 0.98rem; color: var(--text-muted); }
    .gallery-footnote a:not(.btn-primary):not(.btn-outline) { color: var(--blue); font-weight: 700; }
    .gallery-footnote a:not(.btn-primary):not(.btn-outline):hover { text-decoration: underline; }

    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 12px; }
      .gallery-tile.is-featured { grid-column: span 2; grid-row: span 2; }
      .gallery-tile.is-wide { grid-column: span 2; }
      /* no hover on touch — keep captions visible */
      .gallery-cap { opacity: 1; transform: none; }
      .gallery-tile::after { opacity: 0.7; }
    }
    @media (max-width: 420px) { .gallery-grid { grid-auto-rows: 176px; } }

    /* ── LIGHTBOX ─────────────────────────────────────────────── */
    #lightbox {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(2,6,23,0.93); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
      display: none; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.3s;
    }
    #lightbox.open { display: flex; opacity: 1; }
    .lb-img {
      max-width: 90vw; max-height: 82vh;
      border-radius: var(--radius-md); box-shadow: 0 30px 90px rgba(0,0,0,0.65);
      animation: lbIn 0.35s cubic-bezier(0.22,1,0.36,1);
    }
    @keyframes lbIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
    .lb-cap {
      position: absolute; bottom: 26px; left: 0; right: 0; text-align: center;
      color: rgba(255,255,255,0.82); font-size: 0.9rem; padding: 0 24px;
    }
    .lb-btn {
      position: absolute; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
      color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
      display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s;
    }
    .lb-btn:hover { background: rgba(255,255,255,0.26); transform: scale(1.06); }
    .lb-close { top: 24px; right: 24px; }
    .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
    .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
    .lb-prev:hover { transform: translateY(-50%) scale(1.06); }
    .lb-next:hover { transform: translateY(-50%) scale(1.06); }
    @media (max-width: 600px) {
      .lb-btn { width: 40px; height: 40px; }
      .lb-prev { left: 10px; } .lb-next { right: 10px; }
    }

    /* ── FAQ (accordion) ──────────────────────────────────────── */
    #faq { padding: 88px 0; background: var(--off-white); }
    .faq-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }

    /* ── FAQ thermostat dial (static decoration) ── */
    .faq-dial {
      position: relative; width: 92px; height: 92px; border-radius: 50%;
      display: grid; place-items: center; margin: 0 auto 22px;
      background: conic-gradient(from 220deg,
        var(--blue) 0deg, #38BDF8 70deg, #FBBF24 145deg,
        rgba(148,163,184,0.18) 145deg);
      box-shadow: 0 14px 32px rgba(15,23,42,0.14), inset 0 0 0 2px rgba(255,255,255,0.55);
    }
    .faq-dial::after {
      content: ''; position: absolute; inset: 11px; border-radius: 50%;
      background: var(--white);
      box-shadow: 0 6px 16px rgba(15,23,42,0.12), inset 0 2px 6px rgba(15,23,42,0.05);
    }
    .faq-dial-temp {
      position: relative; z-index: 2;
      font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
      color: var(--navy); line-height: 1; letter-spacing: -0.03em;
    }
    .faq-dial-temp span { font-size: 0.7rem; vertical-align: top; color: var(--text-muted); }
    .faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-md); overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .faq-item:hover { border-color: rgba(3,105,161,0.25); }
    .faq-item.open {
      border-color: rgba(3,105,161,0.4);
      box-shadow: var(--shadow-md), 0 0 0 1px rgba(3,105,161,0.08);
    }
    .faq-q-btn {
      width: 100%; display: flex; align-items: center; gap: 16px;
      text-align: left; background: none; border: none; cursor: pointer;
      padding: 22px 26px;
      font-family: var(--font-head); font-size: 1.04rem; font-weight: 700;
      color: var(--navy); line-height: 1.4;
    }
    .faq-q-text { flex: 1; }
    .faq-q-icon {
      width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
      background: var(--blue-light); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.28s, color 0.28s, transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
    }
    .faq-item.open .faq-q-icon { background: var(--blue); color: #fff; transform: rotate(135deg); }
    .faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.22,1,0.36,1); }
    .faq-a {
      padding: 0 26px 24px 26px;
      font-size: 0.94rem; color: var(--text-mid); line-height: 1.78;
    }
    .faq-a strong { color: var(--navy); font-weight: 600; }
    .faq-cta {
      max-width: 840px; margin: 32px auto 0; text-align: center;
      font-size: 0.95rem; color: var(--text-muted);
    }
    .faq-cta a { color: var(--blue); font-weight: 700; }
    .faq-cta a:hover { text-decoration: underline; }

    @media (max-width: 600px) {
      .faq-q-btn { padding: 18px 20px; font-size: 0.98rem; gap: 12px; }
      .faq-a { padding: 0 20px 22px 20px; }
    }

    /* ── BRANDS ────────────────────────────────────────────────── */
    #brands { padding: 48px 0; background: var(--gray-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .brands-label { text-align: center; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
    .brands-track-wrap { overflow: hidden; position: relative; }
    .brands-track-wrap::before,
    .brands-track-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
    }
    .brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--gray-light), transparent); }
    .brands-track-wrap::after { right: 0; background: linear-gradient(to left, var(--gray-light), transparent); }
    .brands-track {
      display: flex; gap: 0;
      animation: marquee 22s linear infinite;
      width: max-content;
    }
    .brands-track:hover { animation-play-state: paused; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .brand-chip {
      display: flex; align-items: center;
      padding: 16px 40px;
      border-right: 1px solid var(--border);
      font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
      color: var(--navy); letter-spacing: -0.02em; white-space: nowrap;
      opacity: 0.5; transition: opacity 0.3s, color 0.3s;
      text-decoration: none;
    }
    .brands-track:hover .brand-chip { opacity: 0.7; }
    .brand-chip:hover { opacity: 1; color: var(--accent); }

    /* ── Márka szerinti kereszthivatkozások (szolgáltatás oldalakon) ── */
    .svc-brandlinks { padding: 16px 0 40px; }
    .svc-brandlinks h2 { font-family: var(--font-head); color: var(--navy); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 8px; }
    .svc-brandlinks p { color: var(--text-muted); max-width: 60ch; margin-bottom: 20px; }
    .svc-brandlinks-row { display: flex; flex-wrap: wrap; gap: 10px; }
    .svc-brandlink {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 20px; border: 1px solid var(--border); border-radius: 999px;
      background: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
      color: var(--navy); text-decoration: none; transition: border-color .2s, color .2s, transform .2s;
    }
    .svc-brandlink:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

    /* ── CTA BANNER ────────────────────────────────────────────── */
    #cta-banner {
      padding: 68px 0;
      position: relative; overflow: hidden;
      background: var(--navy);
    }
    .cta-bg-img {
      position: absolute; inset: 0;
      background-image: url('k%C3%A9pek/709699200_845407851487605_4922152442905902910_n.webp');
      background-size: cover; background-position: center;
      opacity: 0.12;
    }
    .cta-inner {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
    }
    .cta-text {}
    .cta-headline {
      font-family: var(--font-head);
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
      color: #fff; margin-bottom: 10px;
    }
    .cta-sub { font-size: 1.02rem; color: rgba(255,255,255,0.6); }
    .cta-phone-big {
      display: flex; align-items: center; gap: 16px;
      background: var(--accent); color: #fff;
      border-radius: var(--radius-md); padding: 20px 28px;
      font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
      letter-spacing: -0.02em; white-space: nowrap;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .cta-phone-big:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
    .cta-phone-icon {
      width: 44px; height: 44px; background: rgba(255,255,255,0.15);
      border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

    /* ── CONTACT ───────────────────────────────────────────────── */
    #contact { padding: 76px 0; background: var(--off-white); }
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
    .contact-headline {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 2.9rem);
      font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
      color: var(--navy); margin-bottom: 16px;
    }
    .contact-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 40px; }
    .contact-info-list { display: flex; flex-direction: column; gap: 20px; }
    .contact-info-item { display: flex; align-items: center; gap: 16px; }
    .contact-info-icon {
      width: 50px; height: 50px; flex-shrink: 0;
      background: var(--blue-light); border: 1px solid rgba(26,86,232,0.2);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      color: var(--blue); transition: background 0.2s, transform 0.2s;
    }
    .contact-info-item:hover .contact-info-icon { background: var(--blue); color: #fff; transform: scale(1.05); }
    .contact-info-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
    .contact-info-value { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-top: 2px; transition: color 0.2s; }
    a:hover .contact-info-value { color: var(--blue); }

    /* min-width:0 stops the long, unbreakable e-mail address from forcing the
       card's min-content width and overflowing the viewport on phones. */
    .contact-inner > * { min-width: 0; }
    .contact-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 44px;
      box-shadow: var(--shadow-md);
      min-width: 0;
    }
    .contact-card-title { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .contact-card-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; }

    .call-block {
      display: flex; align-items: center; gap: 16px;
      background: var(--accent); border-radius: var(--radius-md);
      padding: 20px 24px; margin-bottom: 16px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s; cursor: pointer;
    }
    .call-block:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
    .call-icon {
      width: 42px; height: 42px; background: rgba(255,255,255,0.18);
      border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .call-num { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
    .call-label { font-size: 0.75rem; color: rgba(255,255,255,0.72); }

    .email-block {
      display: flex; align-items: center; gap: 14px;
      background: var(--off-white); border: 1px solid var(--border);
      border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 24px;
      transition: border-color 0.2s, box-shadow 0.2s; cursor: pointer;
    }
    .email-block:hover { border-color: rgba(26,86,232,0.3); box-shadow: 0 0 0 3px rgba(26,86,232,0.06); }
    .email-block-icon { color: var(--blue); flex-shrink: 0; }
    .email-text { font-size: 0.88rem; color: var(--text-muted); }
    .email-addr { font-family: var(--font-head); font-size: 0.92rem; font-weight: 600; color: var(--navy); overflow-wrap: anywhere; }
    .email-block > div { min-width: 0; }

    .hours-block { border-top: 1px solid var(--border); padding-top: 20px; }
    .hours-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
    .hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--text-mid); }
    .hours-row:last-child { border-bottom: none; }
    .hours-row span:first-child { font-weight: 500; color: var(--navy); }

    /* ── FOOTER ────────────────────────────────────────────────── */
    footer {
      position: relative;
      background: linear-gradient(180deg, #0B1220 0%, var(--navy) 100%);
      padding: 56px 0 26px;
    }
    footer::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), #7DD3FC 50%, var(--blue));
    }
    .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .footer-logo img { height: 40px; width: auto; }
    .footer-logo-text { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #fff; }
    .footer-logo-text span { color: #7DD3FC; }
    .footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.72; margin-bottom: 20px; max-width: 380px; }

    /* Google reviews mini-badge */
    .footer-rating {
      display: inline-flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-sm); padding: 12px 18px; margin-bottom: 22px;
    }
    .footer-rating-logo { width: 24px; height: 24px; flex-shrink: 0; }
    .footer-rating-score { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: #fff; }
    .footer-rating-stars { display: flex; gap: 2px; margin: 3px 0; }
    .footer-rating-text { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
    .footer-rating-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,0.12); }

    .footer-contact-mini { display: flex; flex-direction: column; gap: 9px; }
    .footer-contact-mini a { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: rgba(255,255,255,0.62); transition: color 0.2s; }
    .footer-contact-mini a svg { color: #7DD3FC; flex-shrink: 0; }
    .footer-contact-mini a:hover { color: #fff; }
    .footer-col-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #7DD3FC; margin-bottom: 20px; }
    .footer-links { display: flex; flex-direction: column; gap: 11px; }
    .footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.68); transition: color 0.2s, padding-left 0.2s; }
    .footer-links a:hover { color: #fff; padding-left: 4px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .footer-legal a:hover { color: #7DD3FC; }

    @media (max-width: 768px) {
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-inner > div:first-child { grid-column: 1 / -1; }
    }
    @media (max-width: 480px) {
      .footer-inner { grid-template-columns: 1fr; }
    }

    /* ── MOBILE ACTION BAR (mobile only) ──────────────────────── */
    #float-call { display: none; }
    .mobile-bar {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
      gap: 10px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
      background: rgba(15,23,42,0.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
      border-top: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 -6px 24px rgba(0,0,0,0.28);
    }
    .mbar-btn {
      flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; line-height: 1;
      padding: 14px 10px; border-radius: 12px; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .mbar-btn svg { flex-shrink: 0; }
    .mbar-call { background: rgba(255,255,255,0.12); color: #fff; }
    .mbar-call:active { background: rgba(255,255,255,0.22); transform: scale(0.98); }
    .mbar-quote { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(249,115,22,0.45); }
    .mbar-quote:active { background: var(--accent-dark); transform: scale(0.98); }
    /* Mobile action bar removed — it overlapped the chat widget launcher.
       #float-call stays display:none on every breakpoint. */

    /* ── MOBILE RESPONSIVE REFINEMENTS ────────────────────────── */
    /* Nav: swap desktop links for the hamburger menu */
    /* Tablet/narrow desktop: drop the phone number text, keep the chat CTA */
    @media (max-width: 1080px) {
      .nav-phone { display: none; }
    }
    @media (max-width: 980px) {
      /* Below this width the links collapse into the hamburger menu, so the
         phone + CTA cluster is hidden too (it lives in the open menu instead).
         This keeps the bar as a clean logo-left / hamburger-right layout. */
      .nav-links { display: none; }
      .nav-actions { display: none; }
      .nav-hamburger { display: flex; }
    }

    /* Services grid: 3 → 2 → 1 columns */
    @media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

    /* Featured service row: stack photo over text */
    @media (max-width: 820px) {
      .service-feature { grid-template-columns: 1fr; }
      .service-feature-photo { min-height: 260px; }
      .service-feature-body { padding: 38px 28px; }
      .service-feature-title { font-size: 1.6rem; }
    }

    /* About + Contact: stack the two-column layouts */
    @media (max-width: 860px) {
      .about-inner { grid-template-columns: 1fr; gap: 56px; }
      .about-badge { right: 16px; bottom: -20px; padding: 16px 20px; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .contact-card { padding: 32px 24px; }
    }

    /* CTA banner phone block: full-width and smaller on phones */
    @media (max-width: 560px) {
      .cta-inner { gap: 28px; }
      .cta-phone-big { width: 100%; justify-content: center; font-size: 1.25rem; padding: 18px 20px; }
    }

    /* Tighter section rhythm + edge padding on phones */
    @media (max-width: 600px) {
      .container { padding: 0 18px; }
      #process, #services, #about, #testimonials, #gallery, #faq, #contact { padding-top: 60px; padding-bottom: 60px; }
      #cta-banner { padding: 52px 0; }
      .process-header, .services-header,
      .testimonials-header, .gallery-header, .faq-header { margin-bottom: 40px; }
    }


    /* ═══ SERVICE PAGES ═══════════════════════════════════════════ */
    .svc-hero {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
      color: #fff; position: relative; overflow: hidden;
      padding: calc(var(--nav-h) + 56px) 0 64px;
      /* Fixed height so every subpage hero renders identically regardless of
         how much text/CTA/meta each page has; content is centered vertically. */
      min-height: 680px;
      display: flex;
      align-items: center;
    }
    .svc-hero::after {
      content: ''; position: absolute; top: -45%; right: -8%;
      width: 540px; height: 540px; pointer-events: none;
      background: radial-gradient(circle, var(--blue-glow), transparent 70%);
    }
    .svc-hero .container { position: relative; z-index: 2; }
    .svc-hero-photo {
      position: absolute; top: 0; right: 0; bottom: 0;
      width: 54%; height: 100%; object-fit: cover; z-index: 0;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.9) 46%, #000 100%);
      mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.9) 46%, #000 100%);
    }
    .svc-hero::before {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: linear-gradient(90deg, var(--navy) 30%, rgba(15,23,42,0.55) 54%, rgba(15,23,42,0.06) 74%, transparent 100%);
    }
    /* Parallax hero photo (rolam.html) — JS sets --parallax-y on scroll.
       Extra height + negative top give overscan so movement never shows an edge. */
    .svc-hero-photo--parallax {
      top: -38%; bottom: auto; height: 176%;
      transform: translate3d(0, var(--parallax-y, 0px), 0);
      will-change: transform;
    }
    @media (max-width: 880px) {
      .svc-hero-photo, .svc-hero::before { display: none; }
      .svc-hero { min-height: 520px; }
    }
    .svc-breadcrumb { font-size: 0.85rem; margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
    .svc-breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
    .svc-breadcrumb a:hover { color: #fff; }
    .svc-breadcrumb span[aria-current] { color: rgba(255,255,255,0.95); }
    .svc-breadcrumb .sep { color: rgba(255,255,255,0.35); }
    .svc-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #7DD3FC; margin-bottom: 16px; }
    .svc-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; max-width: 780px; }
    .svc-hero h1 span { color: #7DD3FC; }
    .svc-hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.82); max-width: 640px; margin-top: 20px; line-height: 1.7; }
    .svc-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
    .svc-hero-meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 36px; }
    .svc-hero-meta div { font-size: 0.9rem; color: rgba(255,255,255,0.78); display: flex; align-items: center; gap: 9px; }
    .svc-hero-meta svg { color: #7DD3FC; flex-shrink: 0; }
    .svc-hero-meta strong { color: #fff; font-weight: 700; }

    .svc-main { padding: 72px 0 80px; background: var(--white); }
    .svc-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }

    .svc-prose > h2 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--navy); margin: 0 0 16px; letter-spacing: -0.01em; }
    .svc-prose > h2:not(:first-child) { margin-top: 48px; }
    .svc-prose h3 { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
    .svc-prose p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
    .svc-prose strong { color: var(--navy); font-weight: 600; }
    .svc-prose ul, .svc-prose ol { margin: 0 0 18px; padding-left: 1.3em; }
    .svc-prose ul { list-style: disc; }
    .svc-prose ol { list-style: decimal; }
    .svc-prose li { color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
    .svc-prose li::marker { color: var(--blue); }

    .svc-checklist { display: grid; gap: 14px; margin: 8px 0; }
    .svc-checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-mid); line-height: 1.6; }
    .svc-checklist .ci { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
    .svc-checklist strong { color: var(--navy); }

    .svc-callout { background: var(--off-white); border-left: 4px solid var(--accent); border-radius: var(--radius-sm); padding: 20px 22px; margin: 24px 0; }
    .svc-callout p { margin: 0; color: var(--text-mid); line-height: 1.7; }
    .svc-callout strong { color: var(--navy); }

    .svc-steps { display: grid; gap: 18px; margin-top: 8px; }
    .svc-step { display: flex; gap: 16px; align-items: flex-start; }
    .svc-step-num { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; }
    .svc-step h3 { margin: 6px 0 4px; }
    .svc-step p { margin: 0; }

    .svc-faq { display: grid; gap: 12px; }
    .svc-faq details { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
    .svc-faq summary { cursor: pointer; padding: 18px 20px; font-family: var(--font-head); font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
    .svc-faq summary::-webkit-details-marker { display: none; }
    .svc-faq summary::after { content: '+'; font-size: 1.4rem; line-height: 1; color: var(--blue); transition: transform 0.2s; }
    .svc-faq details[open] summary::after { transform: rotate(45deg); }
    .svc-faq p { padding: 0 20px 18px; color: var(--text-mid); margin: 0; line-height: 1.7; }

    .svc-aside { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 20px; }
    .svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-md); }
    .svc-card-navy { background: linear-gradient(160deg, var(--navy), var(--navy-mid)); color: #fff; border: none; }
    .svc-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
    .svc-card-navy p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.6; }
    .svc-card .btn-primary, .svc-card .btn-outline { width: 100%; justify-content: center; }
    .svc-card-phone { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; color: #fff; display: block; margin: 4px 0 14px; }
    .svc-card-list { display: grid; gap: 12px; }
    .svc-card-list li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--text-mid); align-items: center; line-height: 1.4; }
    .svc-card-list .ci { color: var(--blue); flex-shrink: 0; }

    .svc-related { background: var(--off-white); padding: 64px 0; }
    .svc-related h2 { text-align: center; font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); margin-bottom: 34px; }
    .svc-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .svc-rel-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column; gap: 8px; }
    .svc-rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
    .svc-rel-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); }
    .svc-rel-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
    .svc-rel-link { color: var(--blue); font-weight: 600; font-size: 0.9rem; display: inline-flex; gap: 6px; align-items: center; }

    /* ── Why-me trust band (szolgaltatasok.html) ── */
    .svc-why { position: relative; padding: 72px 0; background: var(--off-white); overflow: hidden; }
    .svc-why::before { content: ""; position: absolute; top: -28%; right: -8%; width: 440px; height: 440px; background: radial-gradient(circle, var(--blue-glow), transparent 70%); opacity: 0.5; pointer-events: none; }
    .svc-why .container { position: relative; z-index: 1; }
    .svc-why-eyebrow { display: block; text-align: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
    .svc-why h2 { text-align: center; font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
    .svc-why-lead { text-align: center; max-width: 620px; margin: 0 auto 38px; color: var(--text-mid); line-height: 1.7; }

    .svc-why-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 760px; margin: 0 auto 42px; padding: 26px 18px; background: linear-gradient(160deg, var(--navy), var(--navy-mid)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
    .svc-why-stat { text-align: center; padding: 4px; position: relative; }
    .svc-why-stat + .svc-why-stat::before { content: ""; position: absolute; left: -9px; top: 50%; transform: translateY(-50%); width: 1px; height: 42px; background: rgba(255,255,255,0.12); }
    .svc-why-stat-num { display: block; font-family: var(--font-head); font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 800; line-height: 1; color: #fff; }
    .svc-why-stat-num span { color: var(--accent); font-size: 0.55em; margin-left: 1px; }
    .svc-why-stat-label { display: block; margin-top: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.66); line-height: 1.35; }

    .svc-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .svc-why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
    .svc-why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
    .svc-why-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 6px 18px rgba(3,105,161,0.30); }
    .svc-why-card:nth-child(2) .svc-why-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 6px 18px rgba(249,115,22,0.30); }
    .svc-why-card h3 { font-family: var(--font-head); font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
    .svc-why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

    @media (max-width: 760px) {
      .svc-why-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
      .svc-why-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 460px) {
      .svc-why-grid { grid-template-columns: 1fr; }
    }

    .svc-ctaband { background: linear-gradient(160deg, var(--navy), var(--navy-mid)); color: #fff; padding: 64px 0; text-align: center; }
    .svc-ctaband h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
    .svc-ctaband p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }
    .svc-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    @media (max-width: 900px) {
      .svc-grid { grid-template-columns: 1fr; gap: 40px; }
      .svc-aside { position: static; order: -1; }
      .svc-related-grid { grid-template-columns: 1fr; }
    }

    /* ═══ ABOUT PAGE (rolam.html) ═════════════════════════════════ */
    .about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 8px 0 8px; }
    .about-stat { text-align: center; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 14px; }
    .about-stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1; }
    .about-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 7px; line-height: 1.3; }
    .about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 8px 0; }
    .about-value { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
    .about-value h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin: 0 0 8px; display: flex; align-items: center; gap: 11px; }
    .about-value-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .about-value p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; margin: 0; }
    .about-contact-rows { display: grid; gap: 14px; }
    .about-contact-rows a, .about-contact-rows div { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9rem; color: var(--text-mid); line-height: 1.4; }
    .about-contact-rows svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
    @media (max-width: 700px) {
      .about-stats { grid-template-columns: repeat(2, 1fr); }
      .about-values { grid-template-columns: 1fr; }
    }

    /* ═══ CONTACT PAGE (contact.html) ═════════════════════════════ */
    .contact-page-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; }
    .contact-page-grid > * { min-width: 0; }
    .cform-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
    .cform { display: grid; gap: 16px; }
    .cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .cform-field label { font-size: 0.84rem; font-weight: 600; color: var(--navy); font-family: var(--font-head); display: block; margin-bottom: 6px; }
    .cform-field .req { color: var(--accent); }
    .cform input, .cform select, .cform textarea {
      width: 100%; padding: 14px 15px; border: 1.5px solid var(--border); border-radius: 10px;
      font-family: var(--font-body); font-size: 0.95rem; color: var(--navy); background: var(--off-white);
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .cform input::placeholder, .cform textarea::placeholder { color: var(--text-muted); }
    .cform input:hover, .cform select:hover, .cform textarea:hover { border-color: #CBD5E1; }
    .cform input:focus, .cform select:focus, .cform textarea:focus {
      outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px var(--blue-glow);
    }
    .cform select {
      appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px;
    }
    .cform textarea { resize: vertical; min-height: 140px; }
    .cform button[type="submit"] { width: 100%; justify-content: center; margin-top: 8px; padding: 15px 22px; }
    .cform-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
    .contact-map { border: 0; width: 100%; height: 300px; border-radius: var(--radius-md); display: block; }
    .contact-detail-list { display: grid; gap: 16px; }
    .contact-detail { display: flex; gap: 13px; align-items: flex-start; }
    .contact-detail-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-detail-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
    .contact-detail-value { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-top: 2px; }
    .contact-detail-value a { color: var(--navy); transition: color 0.2s; }
    .contact-detail-value a:hover { color: var(--blue); }
    .contact-hours-mini { display: grid; gap: 8px; margin-top: 4px; }
    .contact-hours-mini .hr { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--text-mid); }
    .contact-hours-mini .hr strong { color: var(--navy); font-weight: 600; }
    @media (max-width: 900px) {
      .contact-page-grid { grid-template-columns: 1fr; gap: 36px; }
      .cform-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 540px) {
      .cform-card { padding: 22px 20px; }
    }

    /* ── Global keyboard focus ring (a11y) ─────────────────────────
       Only shows for keyboard navigation (Tab), invisible to mouse/touch.
       Covers buttons, links and CTAs that had no visible focus state. */
    a:focus-visible,
    button:focus-visible,
    .btn-primary:focus-visible,
    .btn-outline:focus-visible,
    .btn-outline-dark:focus-visible,
    .nav-phone:focus-visible,
    .nav-cta:focus-visible,
    .service-link:focus-visible,
    .nav-hamburger:focus-visible,
    .mobile-nav-link:focus-visible,
    .mbar-btn:focus-visible,
    summary:focus-visible,
    [role="button"]:focus-visible {
      outline: 3px solid var(--blue);
      outline-offset: 3px;
      border-radius: 6px;
    }

    /* ═══ BLOG (blog.html + cikkek) ═══════════════════════════════ */
    /* Index intro */
    .blog-intro { padding: 56px 0 8px; }
    .blog-intro .section-headline { margin-bottom: 12px; }

    /* Featured (legújabb) post – horizontal on desktop */
    .blog-featured {
      display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
      background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--shadow-md); margin: 36px 0 56px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .blog-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .blog-featured-media { position: relative; min-height: 320px; }
    .blog-featured-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
    .blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
    .blog-featured-body h2 {
      font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800;
      color: var(--navy); line-height: 1.18; letter-spacing: -0.02em; margin: 14px 0 12px;
    }
    .blog-featured-body p { color: var(--text-mid); line-height: 1.7; margin-bottom: 22px; }

    /* Card grid */
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-bottom: 80px; }
    .blog-card {
      display: flex; flex-direction: column; background: #fff;
      border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue); }
    .blog-card-media { aspect-ratio: 16 / 10; overflow: hidden; }
    .blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .blog-card:hover .blog-card-media img { transform: scale(1.05); }
    .blog-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
    .blog-card-title {
      font-family: var(--font-head); font-size: 1.16rem; font-weight: 700; color: var(--navy);
      line-height: 1.3; letter-spacing: -0.01em; margin: 12px 0 9px;
    }
    .blog-card-excerpt { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
    .blog-card-readmore {
      margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
      color: var(--blue); display: inline-flex; align-items: center; gap: 7px;
    }
    .blog-card:hover .blog-card-readmore { gap: 11px; }

    /* Category tag + meta row (shared) */
    .blog-tag {
      align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--blue); background: var(--blue-light);
      padding: 5px 11px; border-radius: 999px;
    }
    .blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }
    .blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
    .blog-meta time { display: inline-flex; align-items: center; gap: 6px; }

    /* Article byline (single post) */
    .article-byline { display: flex; align-items: center; gap: 13px; margin-top: 28px; }
    .article-byline-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.35); }
    .article-byline-name { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 0.98rem; }
    .article-byline-meta { font-size: 0.84rem; color: rgba(255,255,255,0.72); }

    /* Prose extras for articles (images, lead, blockquote) */
    .svc-prose .lead { font-size: 1.12rem; color: var(--navy); line-height: 1.7; margin-bottom: 22px; }
    .svc-prose figure { margin: 28px 0; }
    .svc-prose figure img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
    .svc-prose figcaption { font-size: 0.84rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
    .svc-prose blockquote {
      border-left: 4px solid var(--blue); background: var(--off-white);
      padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      margin: 24px 0; color: var(--text-mid); font-style: italic;
    }

    /* ── Lite YouTube-embed (kattintásra tölti be az iframe-et) ───── */
    .yt-lite { position: relative; margin: 10px 0 30px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
    .yt-lite-btn { display: block; width: 100%; margin: 0; padding: 0; border: 0; background: #000; cursor: pointer; position: relative; aspect-ratio: 16 / 9; }
    .yt-lite-btn img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.92; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.3s; }
    .yt-lite-btn:hover img, .yt-lite-btn:focus-visible img { transform: scale(1.04); opacity: 1; }
    .yt-lite-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
    .yt-lite-play svg { filter: drop-shadow(0 3px 10px rgba(0,0,0,0.45)); transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1); }
    .yt-lite-play .yt-lite-bg { fill: rgba(20,20,20,0.78); transition: fill 0.2s; }
    .yt-lite-btn:hover .yt-lite-play svg, .yt-lite-btn:focus-visible .yt-lite-play svg { transform: scale(1.12); }
    .yt-lite-btn:hover .yt-lite-play .yt-lite-bg, .yt-lite-btn:focus-visible .yt-lite-play .yt-lite-bg { fill: #f00; }
    .yt-lite.is-playing { aspect-ratio: 16 / 9; }
    .yt-lite iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
    .yt-lite-cap { font-size: 0.82rem; color: var(--text-muted); text-align: center; padding: 10px 14px; background: var(--off-white); }

    /* In-content fotó a márkaoldalakon (hero-n kívül) */
    .svc-content-photo { margin: 30px 0; }
    .svc-content-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: block; }
    .svc-content-photo figcaption { font-size: 0.84rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

    @media (max-width: 900px) {
      .blog-featured { grid-template-columns: 1fr; }
      .blog-featured-media { min-height: 220px; position: relative; }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .blog-grid { grid-template-columns: 1fr; }
      .blog-featured-body { padding: 28px 24px; }
    }

    /* ── Reduced-motion: honor the OS setting site-wide ────────────
       Visitors without "reduce motion" enabled see no change. */
    @media (prefers-reduced-motion: reduce) {
      .reveal,
      .reveal-left,
      .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      .t-track,
      .t-track.t-reverse {
        animation: none !important;
        transform: none !important;
      }
      .nav-logo,
      .nav-links li,
      .nav-actions,
      .nav-hamburger,
      #mobile-nav,
      .mobile-nav-link,
      .hero-h1,
      .hero-avail,
      .hero-sub-text,
      .hero-accent-line,
      .hero-cta-row {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ════════════════════════════════════════════════════════════════
       MÁRKAOLDAL-FINOMÍTÁSOK – mozgás, márkaarculat, márkahub
       (a brand-enhance.js aktiválja, márkánként eltérő --brand színnel)
       ════════════════════════════════════════════════════════════════ */

    /* — Görgetésre megjelenő mozgás — */
    .reveal-up { opacity: 0; transform: translateY(24px); will-change: opacity, transform; }
    .reveal-ready .reveal-up { transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
    .reveal-up.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal-up { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    /* — Lassú „Ken Burns” ráközelítés a hero-fotóra (élet a statikus képbe) — */
    @keyframes svcHeroZoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }
    .svc-hero-photo { animation: svcHeroZoom 22s ease-out forwards; }
    @media (prefers-reduced-motion: reduce) { .svc-hero-photo { animation: none; } }

    /* — Márka-akcentus a hős szekcióban (a --brand színt a brand-enhance.js állítja a :root-on) — */
    .brand-hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: #fff; border-radius: 999px; padding: 8px 16px 8px 12px;
      margin-bottom: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.18);
      transform: translateY(8px); opacity: 0; animation: badgeIn .6s .15s cubic-bezier(.22,1,.36,1) forwards;
    }
    @keyframes badgeIn { to { opacity: 1; transform: none; } }
    .brand-hero-badge img { height: 22px; width: auto; display: block; }
    .brand-hero-badge .bhb-word {
      font-family: var(--font-head); font-weight: 800; font-size: .95rem; letter-spacing: -.01em;
      color: var(--brand); line-height: 1;
    }
    .brand-hero-badge .bhb-label {
      font-size: .72rem; font-weight: 600; color: #64748b; letter-spacing: .04em; text-transform: uppercase;
      padding-left: 10px; margin-left: 2px; border-left: 1px solid #e2e8f0;
    }
    @media (prefers-reduced-motion: reduce) { .brand-hero-badge { animation: none; opacity: 1; transform: none; } }

    /* a H1 kiemelt szava és az eyebrow a márka színét kapja */
    .has-brand .svc-hero .svc-eyebrow { color: #fff; }
    .has-brand .svc-hero h1 span {
      position: relative; color: #fff;
    }
    .has-brand .svc-hero h1 span::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 4px; border-radius: 3px;
      background: var(--brand); transform: scaleX(0); transform-origin: left; animation: ulIn .7s .35s cubic-bezier(.22,1,.36,1) forwards;
    }
    @keyframes ulIn { to { transform: scaleX(1); } }
    @media (prefers-reduced-motion: reduce){ .has-brand .svc-hero h1 span::after{ animation:none; transform:scaleX(1);} }

    /* a tartalom finom márka-akcentusai */
    .has-brand .svc-step-num { background: var(--brand); }
    .has-brand .svc-callout { border-left-color: var(--brand); }
    .has-brand .svc-prose .ci { color: var(--brand); }
    .has-brand .svc-rel-card:hover { border-color: var(--brand); }
    .has-brand .svc-rel-card:hover .svc-rel-link { color: var(--brand); }

    /* — Finomabb interakciók a kapcsolódó kártyákon — */
    .svc-rel-card { transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, border-color .25s; }
    .svc-rel-card:hover { transform: translateY(-4px); }
    .svc-faq details { transition: border-color .2s; }
    .svc-faq details[open] { border-color: var(--brand, var(--blue)); }

    /* ════════════════════════════════════════════════════════════════
       MÁRKAHUB OLDAL (markak.html)
       ════════════════════════════════════════════════════════════════ */
    .brands-hub { padding: 64px 0 72px; }
    .brands-hub-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    }
    @media (max-width: 920px) { .brands-hub-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .brands-hub-grid { grid-template-columns: 1fr; } }

    .brand-tile {
      background: #fff; border: 1px solid var(--border); border-radius: 16px;
      padding: 26px 24px 22px; position: relative; overflow: hidden;
      box-shadow: 0 1px 3px rgba(15,23,42,.05);
      transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
    }
    .brand-tile::before {
      content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
      background: var(--bt, var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
    }
    .brand-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg, 0 18px 40px rgba(15,23,42,.12)); border-color: transparent; }
    .brand-tile:hover::before { transform: scaleX(1); }

    .brand-tile-logo {
      height: 56px; display: flex; align-items: center; margin-bottom: 16px;
    }
    .brand-tile-logo img { max-height: 42px; max-width: 170px; width: auto; object-fit: contain; }
    .brand-tile-word {
      font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; letter-spacing: -.02em; line-height: 1;
      color: var(--bt, var(--navy));
    }
    .brand-tile h2 {
      font-family: var(--font-head); font-size: 1.02rem; color: var(--navy); margin: 0 0 4px;
    }
    .brand-tile .bt-sub { font-size: .82rem; color: var(--text-muted); margin: 0 0 16px; }
    /* whole brand tile is clickable (→ szerviz), while the sub-links stay clickable */
    .brand-tile { cursor: pointer; }
    .bt-cover { position: absolute; inset: 0; z-index: 1; border-radius: 16px; }
    .brand-tile-logo, .brand-tile h2, .brand-tile .bt-sub { position: relative; z-index: 0; }
    .brand-tile-links { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 2; }
    .brand-tile-links a {
      font-size: .82rem; font-weight: 600; font-family: var(--font-head);
      color: var(--navy); background: var(--gray-light, #f1f5f9); border: 1px solid transparent;
      padding: 7px 13px; border-radius: 8px; text-decoration: none; transition: .18s;
    }
    .brand-tile-links a:hover { background: #fff; border-color: var(--bt, var(--blue)); color: var(--bt, var(--blue)); }
