/* ============================================================
   Hargita Window Cleaning — style.css
   Paletta: mély kékzöld + akvamarin, sok fehér és üvegfény
   ============================================================ */

:root {
    /* Színek */
    --navy: #0a2a3d;
    --navy-2: #0c3448;
    --navy-3: #092634;
    --blue: #12708f;
    --aqua: #1fb6d4;
    --aqua-light: #7fe3f5;
    --sky: #eaf6fb;
    --sky-2: #f6fbfd;
    --paper: #ffffff;
    --ink: #10222c;
    --slate: #5b7484;
    --line: #dbe7ee;
    --line-dark: rgba(255, 255, 255, .14);

    /* Tipográfia */
    --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Méretek */
    --container: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 74px;
    --topbar-h: 40px;

    /* Árnyékok */
    --shadow-sm: 0 2px 8px rgba(10, 42, 61, .06);
    --shadow: 0 12px 32px rgba(10, 42, 61, .10);
    --shadow-lg: 0 24px 60px rgba(10, 42, 61, .16);
}

/* ---------- Alap ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    margin: 0;
    overflow-wrap: break-word;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 104px 0; }
.section-tint { background: var(--sky-2); }

.eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 14px;
}
.eyebrow-light { color: var(--aqua-light); }

.section-head {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}
.section-title {
    font-size: clamp(30px, 4.2vw, 48px);
    margin: 0 0 18px;
}
.section-title em {
    font-style: normal;
    color: var(--aqua);
}
.section-lead {
    font-size: 17px;
    color: var(--slate);
}

/* ---------- Gombok ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; fill: currentColor; }

.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2fd0ee 0%, #12a0c8 55%, #0e7ea6 100%);
    color: #fff;
    box-shadow: 0 10px 26px rgba(31, 182, 212, .45);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(31, 182, 212, .58);
}

/* Végigfutó fénypászma a gombon — ugyanaz a mozdulat, mint a lehúzás */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -60%; left: -85%;
    width: 42%; height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
    transform: skewX(-22deg);
    animation: btnShine 5s cubic-bezier(.4, 0, .3, 1) infinite;
    pointer-events: none;
}
@keyframes btnShine {
    0%, 66%   { left: -85%; }
    92%, 100% { left: 150%; }
}

/* Lüktető gyűrű — csak az állandóan látszó fő gomboknál */
.btn-attention {
    animation: ctaPulse 3.4s ease-out infinite;
}
.btn-attention:hover { animation-play-state: paused; }
@keyframes ctaPulse {
    0%   { box-shadow: 0 10px 26px rgba(31, 182, 212, .45), 0 0 0 0 rgba(47, 208, 238, .6); }
    65%  { box-shadow: 0 10px 26px rgba(31, 182, 212, .45), 0 0 0 15px rgba(47, 208, 238, 0); }
    100% { box-shadow: 0 10px 26px rgba(31, 182, 212, .45), 0 0 0 0 rgba(47, 208, 238, 0); }
}

.btn-outline {
    border-color: var(--line);
    color: var(--navy);
    background: #fff;
}
.btn-outline:hover {
    border-color: var(--aqua);
    color: var(--blue);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, .18);
    border-color: #fff;
}

/* Nyíl, ami hoverre előrébb lép */
.btn-arrow {
    display: inline-block;
    transition: transform .22s ease;
}
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
    height: var(--topbar-h);
    background: var(--navy);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    display: flex;
    align-items: center;
}
.topbar-inner {
    display: flex;
    align-items: center;
    gap: 28px;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.topbar-item svg { width: 15px; height: 15px; fill: var(--aqua); flex: none; }
.topbar-phone {
    margin-left: auto;
    color: #fff;
    transition: color .18s ease;
}
.topbar-phone:hover { color: var(--aqua-light); }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: none;
    color: var(--navy);
}
.logo-mark { display: block; width: 34px; height: 34px; }
.logo-mark svg { display: block; width: 100%; height: 100%; }
.logo-type { display: flex; flex-direction: column; line-height: 1.1; }
.logo-type strong {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.logo-type span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--slate);
}

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 26px; }
.nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding: 6px 0;
    transition: color .18s ease;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 2px;
    background: var(--aqua);
    transition: right .25s ease;
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { right: 0; }

.header-actions { flex: none; }

.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: min(760px, 92vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 96px 0 88px;
}

.hero-scene { position: absolute; inset: 0; }
.hero-sky {
    position: absolute; inset: 0;
    background: linear-gradient(165deg, #0a2a3d 0%, #0f4460 42%, #16688a 72%, #2596b5 100%);
}
.hero-sun {
    position: absolute;
    top: -14%; right: -6%;
    width: 46vw; height: 46vw;
    max-width: 620px; max-height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 227, 245, .40) 0%, rgba(127, 227, 245, .10) 45%, transparent 70%);
    filter: blur(6px);
}
/* Hero fotó — lassú ráközelítés, hogy ne legyen statikus */
.hero-photo {
    position: absolute;
    inset: 0;
    background-image: url("images/hero/hero-ablaktisztitas.jpg");
    background-size: cover;
    background-position: center 45%;
    animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.02); }
    to   { transform: scale(1.13); }
}

/* Üvegtábla-rács a fotó fölött */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .07) 0 1px, transparent 1px 150px),
        repeating-linear-gradient(0deg,  rgba(255, 255, 255, .07) 0 1px, transparent 1px 150px);
    opacity: .8;
}

/* Végigfutó fénypászma — mintha most húznánk le az üveget */
.hero-scene::after {
    content: '';
    position: absolute;
    top: -25%; left: -45%;
    width: 24%; height: 150%;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .20), transparent);
    transform: skewX(-14deg);
    animation: sweep 8s cubic-bezier(.5, 0, .22, 1) infinite;
}
@keyframes sweep {
    0%, 58%   { left: -45%; }
    88%, 100% { left: 125%; }
}
.hero-veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 22, 33, .94) 0%, rgba(5, 22, 33, .80) 36%, rgba(5, 22, 33, .46) 68%, rgba(5, 22, 33, .34) 100%),
        linear-gradient(180deg, rgba(5, 22, 33, .60) 0%, transparent 28%, rgba(5, 22, 33, .55) 100%),
        linear-gradient(150deg, rgba(10, 42, 61, .45), rgba(18, 112, 143, .30));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.hero-title {
    font-size: clamp(38px, 6.4vw, 76px);
    margin: 0 0 22px;
    letter-spacing: -.035em;
}
.hero-title em {
    font-style: normal;
    color: var(--aqua-light);
}
.hero-lead {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, .86);
    max-width: 580px;
    margin-bottom: 34px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}
/* Bizalmi jelvények a hero gombok alatt */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-badges li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(127, 227, 245, .38);
    backdrop-filter: blur(8px);
    font-size: 15.5px;
    color: rgba(255, 255, 255, .9);
}
.hero-badges svg {
    width: 21px; height: 21px;
    fill: var(--aqua-light);
    flex: none;
}
.hero-badges strong {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
}

/* ---------- Trust bar ---------- */
.trustbar {
    background: var(--navy-2);
    padding: 26px 0;
}
.trustbar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.trust {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
}
.trust svg {
    width: 27px; height: 27px;
    fill: var(--aqua);
    flex: none;
}
.trust div { display: flex; flex-direction: column; line-height: 1.35; }
.trust strong {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
}
.trust span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .58);
}

/* ---------- Szolgáltatások ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Fotófejléc a kártyán */
.service-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--navy);
}
.service-media img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .6, .3, 1);
}
.service-card:hover .service-media img { transform: scale(1.07); }
.service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 42, 61, .28) 0%, rgba(10, 42, 61, .05) 40%, rgba(10, 42, 61, .55) 100%);
}
.service-icon {
    position: absolute;
    right: 26px; bottom: -26px;
    z-index: 2;
    width: 62px; height: 62px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 10px 22px rgba(10, 42, 61, .3);
}
.service-icon svg { width: 30px; height: 30px; }
.service-icon-1 { background: linear-gradient(135deg, #1fb6d4, #12708f); }
.service-icon-2 { background: linear-gradient(135deg, #12708f, #0a2a3d); }
.service-icon-3 { background: linear-gradient(135deg, #3fc9c0, #12708f); }
.service-icon-4 { background: linear-gradient(135deg, #5aa9e6, #12708f); }

.service-card h3 {
    font-size: 22px;
    margin: 38px 30px 12px;
}
.service-card > p {
    color: var(--slate);
    font-size: 15.5px;
    margin: 0 30px 20px;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0 30px 24px;
}
.service-list li {
    position: relative;
    padding-left: 26px;
    font-size: 14.5px;
    color: var(--ink);
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 15px; height: 9px;
    border-left: 2px solid var(--aqua);
    border-bottom: 2px solid var(--aqua);
    transform: rotate(-45deg);
}
.service-link {
    margin: auto 30px 32px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.service-link span { transition: transform .2s ease; }
.service-link:hover span { transform: translateX(4px); }

/* ---------- Folyamat (sötét, illusztrációval) ---------- */
.process {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #0a2a3d 0%, #0e4359 58%, #0a3044 100%);
    color: #fff;
}
.process .eyebrow { color: var(--aqua-light); }
.process .section-title { color: #fff; }
.process .container { position: relative; z-index: 2; }

.process-scene {
    position: absolute;
    right: 0; bottom: 0;
    width: 64%; height: 100%;
    opacity: .55;
    pointer-events: none;
}
.process-shine {
    animation: wipe 6.5s cubic-bezier(.45, 0, .25, 1) infinite;
}
@keyframes wipe {
    0%, 52%   { transform: translateX(0) skewX(-10deg); }
    82%, 100% { transform: translateX(300px) skewX(-10deg); }
}
.process-drops circle { animation: drip 3.4s ease-in infinite; }
.process-drops circle:nth-child(2) { animation-delay: .8s; }
.process-drops circle:nth-child(3) { animation-delay: 1.6s; }
.process-drops circle:nth-child(4) { animation-delay: 2.4s; }
@keyframes drip {
    0%   { transform: translateY(-18px); opacity: 0; }
    25%  { opacity: .8; }
    100% { transform: translateY(90px); opacity: 0; }
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.step {
    position: relative;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    padding: 32px 26px;
    backdrop-filter: blur(8px);
}
.step::after {
    content: '';
    position: absolute;
    top: 52px; right: -17px;
    width: 10px; height: 10px;
    border-top: 2px solid rgba(127, 227, 245, .55);
    border-right: 2px solid rgba(127, 227, 245, .55);
    transform: rotate(45deg);
}
.step:last-child::after { display: none; }
.step-num {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: var(--aqua-light);
    opacity: .5;
    margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; color: #fff; }
.step p { font-size: 14.5px; color: rgba(255, 255, 255, .74); }
.step strong { color: var(--aqua-light); }

/* ---------- Miért mi ---------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}
.why-left .section-title { text-align: left; margin-bottom: 20px; }
.why-lead {
    color: var(--slate);
    font-size: 16.5px;
    margin-bottom: 34px;
}
.why-facts {
    display: flex;
    gap: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.why-fact { display: flex; flex-direction: column; }
.why-fact strong {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}
.why-fact span {
    font-size: 13px;
    color: var(--slate);
    margin-top: 6px;
}

.why-list { display: flex; flex-direction: column; gap: 4px; }
.why-list li {
    padding: 24px 26px;
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: background .22s ease, border-color .22s ease;
}
.why-list li:hover {
    background: var(--sky);
    border-left-color: var(--aqua);
}
.why-list h3 { font-size: 18px; margin-bottom: 8px; }
.why-list p { font-size: 15px; color: var(--slate); }

/* Tiszta vizes folyamatábra */
.water-flow {
    margin-top: 68px;
    background: var(--sky);
    border: 1px solid #cde6f0;
    border-radius: var(--radius);
    padding: 40px 42px 44px;
}
.water-flow h3 {
    font-size: 21px;
    margin-bottom: 8px;
}
.water-flow-lead {
    font-size: 15px;
    color: var(--slate);
    max-width: 700px;
    margin-bottom: 34px;
}
.flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.flow li {
    position: relative;
    text-align: center;
    padding: 0 20px;
}
/* Nyíl a lépések között */
.flow li + li::before {
    content: '';
    position: absolute;
    left: -7px; top: 30px;
    width: 13px; height: 13px;
    border-top: 2.5px solid var(--aqua);
    border-right: 2.5px solid var(--aqua);
    transform: rotate(45deg);
    opacity: .8;
}
.flow-icon {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgba(10, 42, 61, .08);
}
.flow-icon svg { width: 38px; height: 38px; }
.flow h4 {
    font-size: 16.5px;
    margin-bottom: 8px;
    color: var(--navy);
}
.flow p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
}

/* Fotó a Miért minket blokkban */
.why-photo {
    margin: 34px 0 0;
    aspect-ratio: 5 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.why-photo img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ---------- Kiemelt állítás sáv ---------- */
.claim {
    position: relative;
    padding: 124px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.claim-bg {
    position: absolute;
    inset: 0;
    background: url("images/munkak/velemenyek-hatter.jpg") center 55% / cover no-repeat;
    transform: scale(1.06);
}
.claim::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 22, 33, .88) 0%, rgba(5, 22, 33, .74) 100%),
        linear-gradient(120deg, rgba(10, 42, 61, .55), rgba(18, 112, 143, .38));
}
.claim-inner {
    position: relative;
    z-index: 2;
    max-width: 840px;
}
.claim-title {
    font-family: var(--font-display);
    font-size: clamp(27px, 3.8vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.025em;
    margin: 0 0 18px;
}
.claim-title em {
    font-style: normal;
    color: var(--aqua-light);
}
.claim-lead {
    position: relative;
    margin: 0 auto 36px;
    padding: 26px 34px;
    max-width: 780px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(127, 227, 245, .32);
    backdrop-filter: blur(6px);
    font-size: 19.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .88);
}
.claim-lead strong {
    display: block;
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.claim-lead em {
    font-style: normal;
    font-weight: 700;
    color: var(--aqua-light);
}

/* ---------- Árak ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: start;
}
.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
}
.price-featured {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    padding-top: 44px;
    transform: translateY(-10px);
}
.price-flag {
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--aqua), var(--blue));
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}
.price-head { margin-bottom: 18px; }
.price-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
}
.price-for {
    font-size: 13.5px;
    color: var(--slate);
    margin-top: 2px;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -.03em;
}
.price-amount em {
    font-style: normal;
    font-size: 15px;
    font-weight: 600;
    color: var(--slate);
    letter-spacing: 0;
}
.price-amount-sm { font-size: 30px; }
.price-min {
    font-size: 13px;
    color: var(--slate);
    margin: 10px 0 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.price-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}
.price-list li {
    position: relative;
    padding-left: 25px;
    font-size: 14.5px;
}
.price-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 14px; height: 8px;
    border-left: 2px solid var(--aqua);
    border-bottom: 2px solid var(--aqua);
    transform: rotate(-45deg);
}
.price-card .btn { margin-top: auto; }

.price-extra {
    margin-top: 54px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 38px;
}
.price-extra h3 {
    font-size: 19px;
    margin-bottom: 20px;
}
.extra-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 44px;
}
.extra-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 15px;
}
.extra-list span { color: var(--slate); }
.extra-list strong {
    font-family: var(--font-display);
    color: var(--navy);
    white-space: nowrap;
}
.price-disclaimer {
    margin-top: 22px;
    font-size: 13.5px;
    color: var(--slate);
    line-height: 1.7;
}
.price-disclaimer strong { color: var(--navy); }
.price-disclaimer a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

/* ---------- Vélemények ---------- */
.review-placeholder-note {
    font-size: 14px;
    color: #b06a1f;
    background: #fff6e8;
    border: 1px dashed #e5b569;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    display: inline-block;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.review {
    margin: 0;
    background: var(--sky-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
}
.stars {
    color: #f0a92e;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.review blockquote {
    margin: 0 0 18px;
    font-size: 15.5px;
    color: var(--ink);
    line-height: 1.7;
}
.review figcaption {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--slate);
}

/* ---------- Területek ---------- */
.section-dark {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, #0d3d55 100%);
    color: #fff;
    overflow: hidden;
}
.areas-mountains {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%; height: 200px;
    pointer-events: none;
}
.areas-inner {
    position: relative;
    z-index: 2;
}
.areas-head {
    max-width: 780px;
    margin-bottom: 44px;
}
.areas-head .section-title {
    text-align: left;
    margin-bottom: 18px;
}
.areas-lead {
    color: rgba(255, 255, 255, .74);
    font-size: 16.5px;
}

/* Kiszállási zónák */
.zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}
.zone {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    padding: 26px 26px 30px;
    backdrop-filter: blur(8px);
}
.zone-free {
    background: rgba(31, 182, 212, .12);
    border-color: rgba(31, 182, 212, .55);
}
.zone-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.zone-tag {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--aqua-light);
}
.zone-km {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
}
.zone-fee {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.025em;
    color: #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.zone-fee em {
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    letter-spacing: 0;
}
.zone-free .zone-fee { color: var(--aqua-light); }
.zone-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.zone-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, .82);
}
.zone-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--aqua);
    opacity: .75;
}
.zones-note {
    max-width: 740px;
    margin-top: 30px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, .66);
}
.zones-note strong { color: #fff; }
.areas-cta { margin-top: 32px; }

/* ---------- GYIK ---------- */
.faq-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 70px;
    align-items: start;
}
.faq-head { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-head .section-title,
.faq-head .section-lead { text-align: left; }
.faq-head .section-lead { font-size: 15.5px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
    border-color: var(--aqua);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--navy);
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '';
    position: absolute;
    right: 24px; top: 50%;
    width: 11px; height: 11px;
    margin-top: -7px;
    border-right: 2px solid var(--aqua);
    border-bottom: 2px solid var(--aqua);
    transform: rotate(45deg);
    transition: transform .25s ease;
}
.faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}
.faq-body {
    padding: 0 24px 22px;
}
.faq-body p {
    font-size: 15px;
    color: var(--slate);
}

/* ---------- Ajánlatkérő ---------- */
.quote { padding-bottom: 104px; }
.quote-card {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    background: linear-gradient(150deg, var(--navy) 0%, #0e4359 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.quote-info {
    padding: 60px 52px;
    color: #fff;
}
.quote-title {
    text-align: left;
    font-size: clamp(28px, 3.4vw, 40px);
    margin-bottom: 18px;
}
.quote-title em { font-style: normal; color: var(--aqua-light); }
.quote-lead {
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    margin-bottom: 38px;
}
.quote-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--line-dark);
}
.qc-label {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 4px;
}
.qc-val {
    font-size: 15.5px;
    color: #fff;
    transition: color .18s ease;
}
a.qc-val:hover { color: var(--aqua-light); }

/* Űrlap */
.quote-form {
    background: #fff;
    padding: 52px 48px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field {
    position: relative;
    margin-bottom: 22px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: var(--sky-2);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 22px 15px 9px;
    outline: none;
    transition: border-color .18s ease, background .18s ease;
    appearance: none;
}
.field textarea { resize: vertical; min-height: 108px; }
.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b7484' stroke-width='1.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--aqua);
    background: #fff;
}
.field label {
    position: absolute;
    left: 16px; top: 15px;
    font-size: 14.5px;
    color: var(--slate);
    pointer-events: none;
    transition: transform .16s ease, font-size .16s ease, color .16s ease;
    transform-origin: left top;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select.filled + label {
    transform: translateY(-9px) scale(.78);
    color: var(--blue);
}
.field-hint {
    display: block;
    font-size: 12.5px;
    color: var(--slate);
    margin-top: 6px;
}
.field-error {
    display: none;
    font-size: 12.5px;
    color: #d1495b;
    margin-top: 5px;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #d1495b; }
.field.invalid .field-error,
.field-check.invalid .field-error { display: block; }
.field.invalid .field-hint { display: none; }

.field-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 24px;
}
.field-check input {
    width: 18px; height: 18px;
    margin-top: 3px;
    accent-color: var(--aqua);
    cursor: pointer;
}
.field-check label {
    font-size: 13.5px;
    color: var(--slate);
    cursor: pointer;
}
.field-check label a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.field-check .field-error { grid-column: 2; }

.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-legal {
    text-align: center;
    font-size: 12.5px;
    color: var(--slate);
    margin-top: 14px;
}
.form-result {
    display: none;
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
}
.form-result.show { display: block; }
.form-result.ok {
    background: #e6f7f1;
    border: 1px solid #7fd3b6;
    color: #14664c;
}
.form-result.err {
    background: #fdecee;
    border: 1px solid #f0a8b1;
    color: #8f2331;
}
.form-result strong {
    display: block;
    font-family: var(--font-display);
    margin-bottom: 4px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-3);
    color: rgba(255, 255, 255, .68);
    padding: 72px 0 0;
    font-size: 14.5px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 54px;
}
.logo-footer { color: #fff; margin-bottom: 20px; }
.logo-footer .logo-type span { color: rgba(255, 255, 255, .5); }
.footer-tagline {
    max-width: 340px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-social a:hover {
    background: var(--aqua);
    border-color: var(--aqua);
    color: #fff;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { transition: color .18s ease; }
.footer-col a:hover { color: var(--aqua); }
.footer-contact li { line-height: 1.6; }

/* Kötelező cégadatok (31/1990. tv. 74. cikk) */
.footer-legal-box {
    padding: 26px 24px 24px;
    margin-bottom: 4px;
    border-top: 1px solid var(--line-dark);
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
}
.footer-brandline {
    margin-bottom: 16px;
    font-size: 13.5px;
}
.footer-brandline strong { color: #fff; }
.legal-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px 32px;
    margin-bottom: 18px;
}
.legal-data li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.5;
}
.legal-data span {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
}
.legal-data strong {
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
}
.footer-legal-box mark {
    background: #fff2c2;
    color: #6b4a08;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.footer-anpc a {
    color: var(--aqua);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-anpc span { margin: 0 6px; opacity: .5; }
.footer-legal-more {
    font-weight: 600;
    color: var(--aqua-light) !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 28px;
    border-top: 1px solid var(--line-dark);
    font-size: 13px;
}
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--aqua); }

/* ---------- Jogi oldalak (adatvédelem stb.) ---------- */
.header-static { position: static; }

.legal {
    padding: 72px 0 96px;
    background: var(--sky-2);
}
.legal-inner { max-width: 800px; }
.legal-title {
    font-family: var(--font-display);
    font-size: clamp(29px, 4.2vw, 46px);
    font-weight: 800;
    letter-spacing: -.025em;
    margin: 0 0 10px;
}
.legal-updated {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 32px;
}
.legal-warning {
    background: #fff6e8;
    border: 1px dashed #e5b569;
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin-bottom: 36px;
    color: #7a4a12;
}
.legal-warning strong {
    display: block;
    font-family: var(--font-display);
    margin-bottom: 6px;
}
.legal-warning p { font-size: 14.5px; margin: 0; }
.legal-lead {
    font-size: 17px;
    color: var(--slate);
    margin-bottom: 8px;
    line-height: 1.75;
}
.legal h2 {
    font-size: 23px;
    margin: 44px 0 14px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.legal h3 {
    font-size: 17.5px;
    margin: 26px 0 10px;
    color: var(--blue);
}
.legal p {
    margin-bottom: 14px;
    line-height: 1.75;
}
.legal a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal .btn { text-decoration: none; color: #fff; }
.legal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 18px;
}
.legal-list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.7;
}
.legal-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 11px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--aqua);
}
.legal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 0 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.legal-table th {
    text-align: left;
    vertical-align: top;
    width: 32%;
    padding: 14px 18px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--navy);
    background: var(--sky);
    border-bottom: 1px solid var(--line);
}
.legal-table td {
    padding: 14px 18px;
    font-size: 14.5px;
    line-height: 1.65;
    border-bottom: 1px solid var(--line);
}
.legal-table tr:last-child th,
.legal-table tr:last-child td { border-bottom: none; }
.legal mark {
    background: #fff2c2;
    color: #6b4a08;
    padding: 1px 6px;
    border-radius: 4px;
}
.legal-back { margin-top: 48px; }

@media (max-width: 560px) {
    .legal { padding: 48px 0 64px; }
    .legal-table th,
    .legal-table td { display: block; width: 100%; }
    .legal-table th { border-bottom: none; padding-bottom: 4px; }
}

/* ---------- WhatsApp ---------- */
.qc-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5ce89a;
}
.qc-wa svg {
    width: 19px; height: 19px;
    fill: currentColor;
    flex: none;
}
a.qc-wa:hover { color: #8df3bb; }

.wa-float {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 95;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 25px 15px 19px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2ce873 0%, #25d366 55%, #17ac4f 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .2s ease;
    animation: waPulse 2.8s ease-out infinite;
}
.wa-float:hover {
    transform: translateY(-3px) scale(1.04);
    animation-play-state: paused;
    box-shadow: 0 18px 38px rgba(37, 211, 102, .6);
}
.wa-float svg {
    width: 27px; height: 27px;
    fill: currentColor;
    flex: none;
}
@keyframes waPulse {
    0%   { box-shadow: 0 10px 26px rgba(37, 211, 102, .45), 0 0 0 0 rgba(44, 232, 115, .65); }
    70%  { box-shadow: 0 10px 26px rgba(37, 211, 102, .45), 0 0 0 18px rgba(44, 232, 115, 0); }
    100% { box-shadow: 0 10px 26px rgba(37, 211, 102, .45), 0 0 0 0 rgba(44, 232, 115, 0); }
}

/* ---------- Mobil hívás sáv ---------- */
.mobile-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(10, 42, 61, .95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line-dark);
}
.mobile-bar .btn { flex: 1; }
.mobile-call { flex: 0 0 40% !important; }

/* ---------- Reveal animáció ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
    .nav ul { gap: 18px; }
    .nav a { font-size: 13.5px; }
    .why-grid, .areas-inner, .faq-inner { gap: 44px; }
    .faq-inner { grid-template-columns: 320px 1fr; }
}

@media (max-width: 960px) {
    .section { padding: 76px 0; }

    .nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        padding: 12px 24px 20px;
        z-index: -1;
        transform: translateY(-130%);
        opacity: 0;
        visibility: hidden;
        transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .25s ease, visibility .3s;
        margin: 0;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav ul { flex-direction: column; gap: 0; }
    .nav li { border-bottom: 1px solid var(--line); }
    .nav li:last-child { border-bottom: none; }
    .nav a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        font-weight: 600;
    }
    .nav a::after { display: none; }

    .header-inner { gap: 14px; }
    .header-actions { margin-left: auto; }
    .nav-toggle { display: flex; }

    .trustbar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step::after { display: none; }
    .process-scene { width: 100%; opacity: .28; }
    .claim { padding: 88px 0; }
    .why-photo { aspect-ratio: 16 / 10; margin-top: 28px; }
    .why-grid { grid-template-columns: 1fr; }
    .water-flow { margin-top: 48px; padding: 34px 30px 38px; }
    .flow { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
    .flow li:nth-child(3)::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .price-featured { transform: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .areas-head { margin-bottom: 32px; }
    .zones { grid-template-columns: 1fr; gap: 16px; }
    .zone { padding: 22px 24px 24px; }
    .zone-fee { font-size: 30px; padding-bottom: 16px; margin-bottom: 16px; }
    .zone-list { flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
    .faq-inner { grid-template-columns: 1fr; }
    .faq-head { position: static; }
    .quote-card { grid-template-columns: 1fr; }
    .quote-info { padding: 44px 32px; }
    .quote-form { padding: 40px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
    body { padding-bottom: 72px; }
    .mobile-bar { display: flex; }
    .header-actions { display: none; }

    /* A lebegő gomb a mobil hívássáv fölé csúszik, és ikonná zsugorodik */
    .wa-float {
        right: 16px;
        bottom: 90px;
        padding: 15px;
        gap: 0;
    }
    .wa-float-label { display: none; }

    .topbar-hide-sm { display: none; }
    .topbar-phone { margin: 0 auto; }

    .hero { min-height: auto; padding: 72px 0 64px; }
    .hero-cta .btn { flex: 1 1 100%; }
    .hero-badges { flex-direction: column; gap: 10px; }
    .hero-badges li { justify-content: center; font-size: 15px; }
    .claim-lead { padding: 22px 22px; font-size: 17.5px; }
    .claim-lead strong { font-size: 20px; }
    .hero-photo { background-position: 62% 45%; }
    .claim { padding: 68px 0; }
    .process-scene { opacity: .2; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card h3 { margin: 36px 24px 12px; }
    .service-card > p,
    .service-list { margin-left: 24px; margin-right: 24px; }
    .service-link { margin: auto 24px 28px; }
    .service-icon { right: 20px; }
    .steps { grid-template-columns: 1fr; }
    .extra-list { grid-template-columns: 1fr; }
    .price-extra { padding: 28px 24px; }
    .why-facts { gap: 22px; flex-wrap: wrap; }
    .water-flow { padding: 30px 22px 34px; }
    .flow { grid-template-columns: 1fr; gap: 30px; }
    .flow li { padding: 0; }
    .flow li + li::before { display: none; }

    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* iOS Safari ránagyít a mezőre, ha a betűméret 16px alatt van.
       Ez a nagyítás nem áll vissza magától — a látogató elveszik az oldalon. */
    .field input,
    .field select,
    .field textarea { font-size: 16px; }
    .field label { font-size: 15.5px; }

    /* Kisebb kijelzőn kisebb hero-kép — feleannyi adatforgalom */
    .hero-photo { background-image: url("images/hero/hero-mobil.jpg"); }
    .quote-info { padding: 36px 24px; }
    .quote-form { padding: 32px 24px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
    .container { padding: 0 18px; }
    .trustbar-grid { grid-template-columns: 1fr; }
    .logo-type strong { font-size: 16px; }
    .logo-type span { font-size: 9px; }
}

/* ---------- Mozgáscsökkentés ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .process-shine { animation: none; opacity: 0; }
    .hero-scene::after { animation: none; display: none; }
    .hero-photo { animation: none; transform: none; }
    .btn-primary::after { display: none; }
    .btn-attention { animation: none !important; }
    .wa-float {
        animation: none !important;
        box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
    }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Nyomtatás ---------- */
@media print {
    .header, .topbar, .mobile-bar, .hero-scene, .quote-form { display: none; }
    body { color: #000; }
}
