@charset "UTF-8";
:root {
    --blue: #1a5f8a;
    --blue-light: #5aa9d6;
    --blue-dark: #12405c;
    --orange: #c15a1e;
    --orange-light: #ef924d;
    --text: #1f2937;
    --muted: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f4f8fb;
    --max: 720px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}
section {
    padding: 52px 0;
}
section.alt {
    background: var(--bg-alt);
}

h1,
h2,
h3 {
    text-wrap: pretty;
}
h1 {
    font-size: 30px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--blue-dark);
    margin-top: 32px;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}
h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--blue);
    margin: 26px 0 10px;
}
p,
li {
    text-wrap: pretty;
}
p {
    margin-bottom: 16px;
    text-align: justify;
}
strong {
    font-weight: 700;
}
.muted {
    color: var(--muted);
}
.small {
    font-size: 15px;
}
.center {
    text-align: center;
}
/* Első h2 ne kapjon dupla felső térközt a szekció tetején */
.wrap > h2:first-child {
    margin-top: 0;
}

/* HERO */
.hero {
    background: linear-gradient(160deg, var(--blue-light) 0%, var(--blue) 60%, var(--blue-dark) 100%);
    color: #fff;
    padding: 56px 0 48px;
    text-align: center;
}
.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}
.hero .promise {
    font-size: 17px;
    color: #eaf5fb;
    margin-bottom: 28px;
}
.hero .micro {
    font-size: 14px;
    color: #cfe6f3;
    margin-top: 14px;
}

/* CTA GOMB */
.cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--orange-light);
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.01em;
    padding: 19px 24px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.cta:active {
    transform: translateY(1px);
}
.cta:focus-visible,
.cookie-consent__btn:focus-visible,
details summary:focus-visible {
    outline: 3px solid var(--blue-light);
    outline-offset: 2px;
}
.cta-bar {
    padding: 34px 0;
}

/* MOBIL STICKY CTA */
.sticky-cta {
    display: none;
}
@media (max-width: 639px) {
    .sticky-cta {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: #fff;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
        transform: translateY(100%);
        transition: transform 0.25s ease;
    }
    .sticky-cta.is-visible {
        transform: translateY(0);
    }
    .sticky-cta .cta {
        margin: 0;
    }
}

/* COOKIE CONSENT */
.cookie-consent {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
}
.cookie-consent.is-visible {
    display: block;
}
.cookie-consent__inner {
    max-width: var(--max);
    margin: 0 auto;
}
.cookie-consent__text {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 14px;
}
.cookie-consent__text a {
    color: var(--blue);
}
.cookie-consent__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cookie-consent__btn {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.cookie-consent__btn--accept {
    background: var(--orange-light);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cookie-consent__btn--reject {
    background: transparent;
    color: var(--muted);
    border: 1px solid #cbd5e1;
}
@media (min-width: 640px) {
    .cookie-consent__inner {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .cookie-consent__text {
        margin-bottom: 0;
        flex: 1;
    }
    .cookie-consent__actions {
        flex-direction: row;
        flex-shrink: 0;
    }
    .cookie-consent__btn {
        white-space: nowrap;
    }
}

/* VIDEÓ */
.video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #0f172a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 15px;
    text-align: center;
    padding: 16px;
}
.video--embed {
    padding: 0;
    overflow: hidden;
}
.video--embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}
@media (max-width: 639px) {
    .video--portrait {
        aspect-ratio: 9/16;
        max-width: 400px;
        margin: 0 auto 0;
    }
    .video-caption {
        max-width: 400px;
        margin: 8px auto 22px;
    }
}
@media (min-width: 640px) {
    .video--landscape {
        aspect-ratio: 16/9;
        margin: 0 auto 0;
    }
    .video-caption:last-child {
        margin-bottom: 0;
    }
}
.video-caption {
    max-width: 500px;
    margin: 8px auto 40px;
    font-size: 13px;
    color: #475569;
    text-align: center;
}

/* LISTÁK */
.list {
    list-style: none;
    margin: 8px 0 18px;
}
.list li {
    padding: 10px 0 10px 34px;
    position: relative;
    border-bottom: 1px solid #e5eaf0;
}
.list li:last-child {
    border-bottom: 0;
}
.list li .icon {
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 19px;
}

.benefits li {
    padding: 12px 0 12px 34px;
}

/* SZÖVEGDOBOZ */
.box {
    background: #fff;
    border-left: 5px solid var(--orange);
    padding: 18px 18px 4px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}
.box.blue {
    border-left-color: var(--blue);
}

/* METAFORA */
.metaphor {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 18px 0;
}
.metaphor .row {
    display: flex;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #eef2f6;
}
.metaphor .row:last-child {
    border-bottom: 0;
}
.metaphor .image {
    font-weight: 800;
    color: var(--orange);
    min-width: 92px;
    font-size: 15px;
}
.metaphor .meaning {
    font-size: 15px;
    color: #374151;
}

/* TERMÉK KÁRTYÁK */
.product {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 14px;
}
.product h3 {
    margin: 0 0 8px;
    color: var(--blue-dark);
}
.product p {
    margin: 0;
    font-size: 16px;
}

/* RÓLAM */
.photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #e2e8f0;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
    padding: 10px;
}
.photo--filled {
    background: none;
    padding: 0;
    overflow: hidden;
}
.photo--filled img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.no-margin-bottom {
    margin-bottom: 0;
}
.no-margin-top {
    margin-top: 0;
}
.no-margin {
    margin: 0;
}

/* SOCIAL PROOF */
.testimonial {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 14px;
}
.testimonial .header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.testimonial .circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e2e8f0;
    flex: none;
}
.testimonial .circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial .name {
    font-weight: 700;
    font-size: 16px;
    color: var(--blue-dark);
}
.testimonial .topic {
    font-size: 13px;
    color: var(--muted);
}
.testimonial .quote {
    font-size: 15px;
    color: #374151;
    font-style: italic;
}
.testimonial .quote p {
    margin: 0 0 12px;
}
.testimonial .quote p:last-child {
    margin-bottom: 0;
}
.testimonial .quote ul {
    margin: 0 0 12px;
    padding-left: 20px;
}
.testimonial .quote li {
    margin-bottom: 6px;
}
.testimonial-photos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
}
.testimonial-photos img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.verified {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    background: #e7f4ea;
    color: #2d7a3e;
    padding: 6px 12px;
    border-radius: 999px;
}

/* ÁR */
.price-box {
    background: linear-gradient(160deg, #fff 0%, #fdf6f0 100%);
    border: 2px solid var(--orange-light);
    border-radius: 14px;
    padding: 22px;
    margin: 22px 0;
}
.price {
    font-size: 27px;
    font-weight: 800;
    color: var(--orange);
    display: block;
    text-align: center;
    margin-bottom: 6px;
}

/* GYIK */
details {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
details summary {
    padding: 16px 44px 16px 16px;
    font-weight: 700;
    font-size: 16px;
    color: var(--blue-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
}
details summary:hover {
    background: var(--bg-alt);
}
details summary::-webkit-details-marker {
    display: none;
}
details summary::after {
    content: "\002B"; /* + */
    position: absolute;
    right: 16px;
    top: 16px;
    line-height: 26px;
    font-size: 22px;
    font-weight: 400;
    color: var(--orange);
}
details[open] summary::after {
    content: "\2212"; /* − minus sign */
}
details .answer {
    padding: 0 16px 16px;
    font-size: 16px;
    color: #374151;
}

/* ZÁRÓ */
.closing {
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    text-align: center;
}
.closing h2 {
    color: #fff;
}
.closing p {
    color: #dbeafe;
}

footer {
    background: #0f172a;
    color: #94a3b8;
    font-size: 13px;
    padding: 26px 0;
    text-align: center;
}
footer a {
    color: #cbd5e1;
}

/* JOGI OLDAL */
.legal h2 {
    margin-top: 36px;
}
.legal h3 {
    color: var(--blue-dark);
}
.legal ul,
.legal ol {
    margin: 0 0 16px;
    padding-left: 22px;
}
.legal li {
    margin-bottom: 8px;
}
.legal .effective {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 28px;
}
.legal .table-wrap {
    overflow-x: auto;
    margin: 0 0 20px;
}
.legal table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 560px;
}
.legal th,
.legal td {
    text-align: left;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    vertical-align: top;
}
.legal th {
    background: var(--bg-alt);
    color: var(--blue-dark);
}
.legal a {
    color: var(--blue);
}

@media (min-width: 640px) {
    body {
        font-size: 18px;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 29px;
        margin-top: 44px;
    }
    .wrap > h2:first-child {
        margin-top: 0;
    }
    section {
        padding: 64px 0;
    }
    .cta {
        display: inline-block;
        width: auto;
        min-width: 340px;
    }
    .center-button {
        text-align: center;
    }
}
