/* =============================================================================
   HHX Stúdió - Fő stíluslap
   Design alap: "B" minta (Figtree + Sora, piros-fehér arculat)
   Mobile-first, egyetlen fájlban.
============================================================================= */

:root {
    --red: #CD2122;
    --red-hover: #E23435;
    --red-dark: #A31A1B;
    --red-soft-bg: #FBEDED;
    --red-soft-text: #8C1A1B;
    --accent-light: #F0575A;

    --navy: #101D28;
    --navy-soft: #182430;
    --text-dark: #182430;
    --text-body: #5D6C7A;
    --text-muted: #75828F;
    --text-on-dark: #AEBCC9;
    --text-on-dark-strong: #DCE4EC;

    --border: #EEECE8;
    --bg-soft: #F9F8F6;
    --white: #ffffff;

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Figtree', sans-serif;

    --container: 1200px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --radius-pill: 999px;
}

/* --- Reset / alap ------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
}
p { margin: 0; }
summary::-webkit-details-marker { display: none; }
summary { list-style: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; }
input, textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 18px;
    border: 1.5px solid #E4E1DC;
    outline: none;
    color: var(--text-dark);
    width: 100%;
}
input:focus, textarea:focus { border-color: var(--red); }
input { border-radius: var(--radius-pill); }
textarea { border-radius: 20px; resize: vertical; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 36px);
}
.section {
    padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 36px);
}
.section-narrow { max-width: 840px; margin: 0 auto; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: var(--white); }
.section-bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.eyebrow {
    font-family: var(--font-heading);
    color: var(--red);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--accent-light); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(32px, 5vw, 52px); }
.section-head h2 { font-size: clamp(27px, 3.6vw, 42px); line-height: 1.12; margin: 0 0 16px; }
.section-head p { font-size: 16.5px; line-height: 1.7; color: var(--text-body); }
.section-dark .section-head p { color: var(--text-on-dark); }

.lead { font-size: 16px; line-height: 1.7; color: var(--text-body); }
.lead + .lead { margin-top: 14px; }

/* --- Gombok --------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: var(--radius-pill);
    border: none;
    transition: transform 0.2s, background 0.2s;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 30px rgba(205, 33, 34, 0.35); }
.btn-primary:hover { background: var(--red-hover); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--navy-soft); color: var(--white); }
.btn-dark:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.28); color: var(--white); font-weight: 700; }
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-outline-dark { border: 1.5px solid var(--navy-soft); color: var(--navy-soft); font-weight: 800; }
.btn-block { width: 100%; justify-content: center; }

/* --- Fejléc / navigáció ----------------------------------------------------- */
.site-header {
    background: radial-gradient(1100px 520px at 78% -10%, rgba(205,33,34,0.22), transparent 60%), var(--navy);
    color: var(--white);
}
.nav-bar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px clamp(16px, 4vw, 36px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; color: var(--white); }
.nav-logo img { width: 42px; height: 42px; }
.nav-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 2px; margin-left: auto; }
.nav-links a {
    color: var(--text-on-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 9px 14px;
    border-radius: var(--radius-pill);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--white); font-weight: 700; background: rgba(255,255,255,0.09); }
.nav-links a.nav-cta {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    padding: 11px 20px;
    margin-left: 10px;
}
.nav-links a.nav-cta:hover { background: var(--red-hover); color: var(--white); }

.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; margin-left: auto; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin: 0 auto; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none; margin-left: 0; width: 100%;
        flex-direction: column; align-items: stretch; gap: 4px;
        padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { text-align: center; padding: 12px 14px; }
    .nav-links a.nav-cta { margin-left: 0; }
}

/* --- Hero ------------------------------------------------------------------- */
.hero { max-width: var(--container); margin: 0 auto; padding: clamp(52px,9vw,120px) clamp(16px,4vw,36px) clamp(56px,8vw,100px); text-align: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-pill);
    padding: 8px 18px; font-size: 14px; font-weight: 600; color: var(--text-on-dark-strong);
    margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.hero h1 { font-size: clamp(36px, 6.2vw, 68px); line-height: 1.06; letter-spacing: -0.035em; margin: 0 auto 24px; max-width: 18ch; }
.hero h1 .accent { background: linear-gradient(100deg, var(--accent-light), var(--red)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.hero-sub { font-size: clamp(16px,1.7vw,19px); line-height: 1.65; color: var(--text-on-dark); margin: 0 auto 14px; max-width: 66ch; }
.hero p.hero-claim { font-family: var(--font-heading); font-weight: 600; font-size: clamp(17px,1.9vw,21px); color: var(--white); margin: 0 auto 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: clamp(40px,6vw,64px); }
.hero-tags span { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-pill); padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--text-on-dark); }

/* --- Kártyarácsok ------------------------------------------------------- */
.grid { display: grid; gap: 14px; }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.grid-auto-md { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-auto-lg { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(32px,5vw,64px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: clamp(32px,5vw,72px); }

.card { background: var(--bg-soft); border-radius: var(--radius-md); padding: 28px 24px; transition: transform 0.25s, box-shadow 0.25s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(16,29,40,0.1); }
.card .icon { width: 44px; height: 44px; border-radius: 14px; background: var(--navy-soft); color: var(--white); font-family: var(--font-heading); font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card .icon.icon-red { background: var(--red); }
.card .title { font-family: var(--font-heading); font-weight: 700; font-size: 16.5px; margin-bottom: 6px; }
.card .desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

.step-card { background: var(--white); border-radius: 20px; padding: 24px 26px; box-shadow: 0 6px 20px rgba(16,29,40,0.06); display: flex; gap: 16px; align-items: flex-start; }
.step-card .num { flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px; background: var(--red-soft-bg); color: var(--red); font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.step-card .title { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.step-card .desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

.process-step { border-top: 3px solid var(--border); padding: 20px 4px 0; }
.process-step.is-active { border-top-color: var(--red); }
.process-step .num { font-family: var(--font-heading); font-weight: 700; color: var(--red); font-size: 14px; margin-bottom: 10px; }
.process-step h3 { font-size: 17px; margin: 0 0 8px; }
.process-step p { font-size: 14px; line-height: 1.6; color: var(--text-body); }

.checklist { display: grid; gap: 9px; align-content: start; }
.checklist .label { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--red); }
.checklist .item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: #3A4854; border-bottom: 1px solid var(--border); padding-bottom: 9px; }
.checklist .item:last-child { border-bottom: none; }
.checklist .item::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; }

.pill-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.pill-list span { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 12px 22px; font-size: 14.5px; font-weight: 600; color: #3A4854; }

.dark-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-md); padding: 30px 28px; transition: border-color 0.2s; }
.dark-card:hover { border-color: rgba(205,33,34,0.5); }
.dark-card .num { font-family: var(--font-heading); color: var(--accent-light); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; margin-bottom: 14px; }
.dark-card h3 { font-size: 18.5px; margin: 0 0 10px; }
.dark-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-on-dark); }
.dark-card-cta { background: linear-gradient(120deg, var(--red-hover), #B31C1D); border-radius: var(--radius-md); padding: 30px 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 22px; color: var(--white); transition: transform 0.25s; }
.dark-card-cta:hover { transform: translateY(-4px); color: var(--white); }
.dark-card-cta h3 { font-size: 20px; line-height: 1.35; }
.dark-card-cta .cta-label { font-family: var(--font-heading); font-weight: 700; font-size: 15.5px; }

.callout { max-width: 640px; margin: 28px auto 0; background: var(--red-soft-bg); border-radius: 18px; padding: 20px 26px; text-align: center; }
.callout .title { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--red-soft-text); margin-bottom: 6px; }
.callout p { font-size: 14.5px; line-height: 1.6; color: var(--text-body); }

/* --- Árkártyák ------------------------------------------------------------ */
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; }
.price-card.featured { border-color: var(--red); box-shadow: 0 16px 40px rgba(205,33,34,0.12); position: relative; }
.price-card .badge { position: absolute; top: -13px; left: 28px; background: var(--red); color: #fff; font-size: 12.5px; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-pill); }
.price-card .price-name { font-family: var(--font-heading); font-weight: 700; font-size: 19px; }
.price-card .price-value { font-family: var(--font-heading); font-weight: 800; font-size: 32px; color: var(--red); }
.price-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.price-card li { font-size: 14.5px; color: var(--text-body); display: flex; gap: 10px; align-items: flex-start; }
.price-card li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; }

/* --- FAQ --------------------------------------------------------------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border-radius: 18px; padding: 0 24px; box-shadow: 0 4px 14px rgba(16,29,40,0.05); }
.faq-item summary { font-family: var(--font-heading); font-weight: 600; font-size: 16.5px; padding: 19px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::after { content: '+'; color: var(--red); font-size: 20px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; line-height: 1.7; color: var(--text-body); margin: 0 0 20px; }

/* --- Kapcsolat blokk / form ---------------------------------------------- */
.contact-panel {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: clamp(28px,5vw,56px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%,320px), 1fr));
    gap: clamp(32px,5vw,64px);
    align-items: start;
    position: relative;
    overflow: hidden;
}
.contact-panel::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(700px 400px at 90% 110%, rgba(205,33,34,0.25), transparent 60%);
    pointer-events: none;
}
.contact-panel .panel-copy { color: var(--white); position: relative; }
.contact-panel .panel-copy h2 { font-size: clamp(26px,3.4vw,38px); line-height: 1.15; margin: 0 0 16px; }
.contact-panel .panel-copy p { font-size: 16px; line-height: 1.7; color: var(--text-on-dark); margin: 0 0 26px; }
.contact-phone-pill {
    display: inline-flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-pill); padding: 14px 26px 14px 16px; color: var(--white);
}
.contact-phone-pill .circle { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.contact-phone-pill .num { font-family: var(--font-heading); font-weight: 700; font-size: 19px; }

.contact-form-card { background: var(--white); border-radius: var(--radius-md); padding: clamp(24px,3.5vw,36px); position: relative; }
.contact-form-card h3 { font-size: 20px; margin: 0 0 6px; }
.contact-form-card .form-sub { font-size: 14px; color: var(--text-muted); margin: 0 0 20px; }
.contact-form-card form { display: grid; gap: 13px; }
.form-row-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 13px; }
.form-honeypot { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }
.form-consent input { width: auto; padding: 0; margin: 3px 0 0; }
.form-error { color: var(--red); font-size: 13.5px; margin-top: -6px; }
.form-success { text-align: center; padding: 40px 12px; }
.form-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--red-soft-bg); color: var(--red); font-size: 26px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success .title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--text-body); line-height: 1.6; }
.form-notice { background: var(--red-soft-bg); color: var(--red-soft-text); border-radius: 14px; padding: 14px 18px; font-size: 14px; margin-bottom: 4px; }

.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 26px; }
.info-card .title { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.info-card .value { font-size: 15px; color: var(--text-body); }

/* --- Lábléc ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); }
.footer-row { max-width: var(--container); margin: 0 auto; padding: 30px clamp(16px,4vw,36px); display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; font-size: 14px; color: var(--text-muted); }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 32px; height: 32px; }
.footer-brand strong { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); }
.footer-links { margin-left: auto; display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--text-body); }
.footer-links a:hover { color: var(--red); }
.footer-legal { max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px,4vw,36px) 26px; font-size: 12.5px; color: #98A3AE; }
.footer-legal a { color: #98A3AE; text-decoration: underline; }

/* --- Mobil hívósáv -------------------------------------------------------- */
.mobile-call-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--white); border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(16,29,40,0.1);
    display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.mobile-call-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; font-size: 15px; padding: 13px; border-radius: var(--radius-pill); }
.mobile-call-bar .call { flex: 1; border: 1.5px solid var(--navy-soft); color: var(--navy-soft); }
.mobile-call-bar .cta { flex: 1.4; background: var(--red); color: var(--white); }

@media (max-width: 720px) {
    .mobile-call-bar { display: flex; }
    body { padding-bottom: 74px; }
}

/* --- Belső oldal hero (breadcrumb + balra zárt cím) ------------------------ */
.subhero { padding: clamp(44px,7vw,88px) clamp(16px,4vw,36px) clamp(52px,7vw,88px); }
.subhero-inner { max-width: 820px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #8B99A7; font-weight: 600; margin-bottom: 22px; }
.breadcrumb a { color: #8B99A7; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .current { color: var(--accent-light); font-weight: 700; }
.subhero h1 { font-size: clamp(34px,5.4vw,58px); line-height: 1.07; letter-spacing: -0.035em; margin: 0 0 22px; }
.subhero .lead { color: var(--text-on-dark); max-width: 62ch; margin-bottom: 30px; }
.subhero .hero-ctas { justify-content: flex-start; }

/* --- Statisztika kártyák ------------------------------------------------- */
.stat-card { background: var(--bg-soft); border-radius: 20px; padding: 24px 22px; }
.stat-card .num { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--red); margin-bottom: 6px; }
.stat-card .desc { font-size: 14px; color: var(--text-body); line-height: 1.55; }

/* --- Fehér "pill" lista (árnyékkal) -------------------------------------- */
.pill-list-white { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 1000px; margin: 0 auto; }
.pill-list-white span { background: var(--white); border-radius: var(--radius-pill); padding: 13px 24px; font-size: 14.5px; font-weight: 600; color: #3A4854; box-shadow: 0 3px 10px rgba(16,29,40,0.05); }

/* --- Miért egyedi - jelölősávos lista ------------------------------------ */
.feature-item { border-left: 3px solid var(--border); padding: 2px 0 2px 18px; }
.feature-item.is-first { border-left-color: var(--red); }
.feature-item .title { font-family: var(--font-heading); font-weight: 700; font-size: 16.5px; margin-bottom: 4px; }
.feature-item p { font-size: 14.5px; line-height: 1.65; color: var(--text-body); }

.func-card { background: var(--bg-soft); border-radius: 18px; padding: 20px 24px; }
.func-card .title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--red); margin-bottom: 8px; }
.func-card .desc { font-size: 14.5px; color: var(--text-body); line-height: 1.65; }

/* --- Folyamat (sötét, kör alakú számokkal) -------------------------------- */
.process-dark-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px; padding: 26px 22px; }
.process-dark-card .circle { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.process-dark-card .circle.is-first { background: var(--red); }
.process-dark-card .title { font-family: var(--font-heading); font-weight: 700; font-size: 16.5px; margin-bottom: 8px; }
.process-dark-card p { font-size: 13.5px; line-height: 1.6; color: var(--text-on-dark); }

/* --- Felújítás problémalista ---------------------------------------------- */
.problem-box { background: var(--bg-soft); border-radius: 24px; padding: clamp(24px,3.5vw,36px); align-self: start; }
.problem-box .title { font-family: var(--font-heading); font-weight: 700; font-size: 16.5px; margin-bottom: 16px; }
.problem-box .item { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.55; color: #3A4854; }
.problem-box .item::before { content: '×'; color: var(--red); font-weight: 800; flex-shrink: 0; }

/* --- Árkártyák (bővített) -------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,290px),1fr)); gap: 18px; align-items: stretch; }
.price-card { background: var(--white); border-radius: 24px; padding: 34px 30px; box-shadow: 0 6px 20px rgba(16,29,40,0.05); border: none; }
.price-card .price-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0 0 18px; }
.price-card .price-value { font-size: 31px; letter-spacing: -0.02em; margin-bottom: 2px; }
.price-card .price-value .unit { font-size: 15px; color: var(--text-muted); font-weight: 500; }
.price-card .divider { height: 1px; background: #EEECE8; margin: 20px 0; }
.price-card .price-gift { margin-top: auto; padding-top: 20px; }
.price-card .price-gift-box { background: var(--red-soft-bg); border-radius: 14px; padding: 14px 16px; font-size: 13.5px; line-height: 1.55; color: var(--red-soft-text); }
.price-card.is-dark { background: var(--navy); color: #fff; position: relative; box-shadow: 0 22px 50px rgba(16,29,40,0.3); }
.price-card.is-dark .price-desc { color: #8B99A7; }
.price-card.is-dark .price-value { color: var(--accent-light); }
.price-card.is-dark .divider { background: rgba(255,255,255,0.12); }
.price-card.is-dark li { color: #C3CEDA; }
.price-card.is-dark li::before { color: var(--accent-light); }
.price-card.is-dark .price-gift-box { background: rgba(205,33,34,0.15); border: 1px solid rgba(240,87,90,0.3); color: #F5B5B6; }
.price-badge { position: absolute; top: -13px; left: 30px; background: var(--red); color: #fff; font-weight: 800; font-size: 12.5px; letter-spacing: 0.05em; padding: 5px 14px; border-radius: var(--radius-pill); }
.price-hosting { margin-top: 18px; background: var(--white); border-radius: 24px; padding: clamp(24px,3.5vw,34px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,300px),1fr)); gap: 24px; align-items: center; box-shadow: 0 6px 20px rgba(16,29,40,0.05); }
.price-hosting h3 { font-size: 18.5px; margin: 0 0 8px; }
.price-hosting p { font-size: 14.5px; line-height: 1.65; color: var(--text-body); }
.price-hosting .value { text-align: center; font-family: var(--font-heading); font-weight: 800; font-size: 29px; letter-spacing: -0.02em; }
.price-hosting .value .unit { font-size: 15px; color: var(--text-muted); font-weight: 500; }

/* --- Átadás checklist ------------------------------------------------------- */
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,230px),1fr)); gap: 12px; max-width: 1000px; margin: 0 auto; }
.delivery-item { background: var(--bg-soft); border-radius: 16px; padding: 20px 22px; display: flex; gap: 12px; align-items: center; font-size: 14.5px; font-weight: 600; color: #3A4854; }
.delivery-item::before { content: '✓'; color: var(--red); font-weight: 800; }

/* --- Központi sötét CTA panel (form nélkül) -------------------------------- */
.cta-panel { background: radial-gradient(700px 380px at 85% -20%, rgba(205,33,34,0.28), transparent 60%), var(--navy); border-radius: var(--radius-lg); padding: clamp(36px,6vw,72px); text-align: center; color: #fff; }
.cta-panel h2 { font-size: clamp(26px,3.8vw,42px); line-height: 1.12; margin: 0 0 16px; }
.cta-panel p { font-size: 16px; line-height: 1.7; color: var(--text-on-dark); margin: 0 auto 12px; max-width: 60ch; }
.cta-panel .claim { font-family: var(--font-heading); font-weight: 600; font-size: clamp(17px,2vw,20px); color: #fff; margin: 0 0 32px; }
.cta-panel .hero-ctas { justify-content: center; }
.error-page { text-align: center; padding: clamp(80px,12vw,140px) 20px; }
.error-page .code { font-family: var(--font-heading); font-weight: 800; font-size: clamp(60px,10vw,120px); color: var(--red); line-height: 1; }
.error-page h1 { font-size: clamp(22px,3vw,30px); margin: 14px 0 20px; }

/* --- Jogi / hosszú szöveges tartalom (adatvédelmi tájékoztató stb.) -------- */
.legal-content { font-size: 15.5px; line-height: 1.75; color: var(--text-body); }
.legal-content .updated-badge { display: inline-block; background: var(--red-soft-bg); color: var(--red-soft-text); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 26px; }
.legal-content h2 { font-size: clamp(20px,2.6vw,25px); line-height: 1.3; color: var(--text-dark); margin: 46px 0 14px; scroll-margin-top: 100px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 16.5px; line-height: 1.4; color: var(--text-dark); margin: 24px 0 10px; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; }
.legal-content li { margin-bottom: 7px; }
.legal-content li::marker { color: var(--red); }
.legal-content strong { color: var(--text-dark); font-weight: 700; }
.legal-content a { color: var(--red); text-decoration: underline; }
.legal-content a:hover { color: var(--red-hover); }
.legal-content .legal-box { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 18px 22px; margin: 0 0 14px; }
.legal-content .legal-box p { margin: 0 0 4px; }
.legal-content .legal-box p:last-child { margin-bottom: 0; }
.legal-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.legal-toc { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 22px 24px; margin-bottom: 40px; }
.legal-toc div.title { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--text-dark); margin-bottom: 12px; }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 24px; }
.legal-toc li { font-size: 13.5px; line-height: 1.9; }
.legal-toc a { color: var(--text-body); text-decoration: none; }
.legal-toc a:hover { color: var(--red); text-decoration: underline; }
@media (max-width: 640px) { .legal-toc ol { columns: 1; } }
