/* ************************************************************
   Telepocak landing v4 — funnel redesign
   Light hero (no background image), offer-card, pricing plans,
   trust strip, steps, mobile CTA bar.
   Loaded after style.css + responsive.css, overrides both.
************************************************************ */

:root {
    --tp-green: #07a24b;
    --tp-green-dark: #058a40;
    --tp-green-deep: #08371c;
    --tp-ink: #16241c;
    --tp-muted: #5a6b61;
    --tp-bg-soft: #f4faf6;
    --tp-border: #e2ede6;
    --tp-amber: #ffd54f;
    --tp-radius: 18px;
    --tp-shadow: 0 10px 30px rgba(8, 55, 28, 0.08);
    --tp-shadow-lg: 0 18px 44px rgba(8, 55, 28, 0.14);
}

body {
    color: var(--tp-ink);
}

/* Anchor targets clear the sticky navbar on native hash jumps */
section[id] {
    scroll-margin-top: 90px;
}

/* ==============================
   TOP CONTACT BAR
============================== */
.top-contact-bar {
    position: relative;
    z-index: 998;
    background: #ffffff;
    padding: 9px 0;
}

/* 1px-es elválasztó csík a menü felé — a trust-strip gradiense 50% áttetszőséggel */
.top-contact-bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, #8a2b64, #1c6fb8);
    opacity: 0.5;
    pointer-events: none;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px 18px;
    flex-wrap: wrap;
}

.tcb-login {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    white-space: nowrap;
    color: #8a2b64;
    background: linear-gradient(90deg, #8a2b64, #1c6fb8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tcb-login:hover,
.tcb-login:focus {
    text-decoration: underline;
    text-decoration-color: #1c6fb8;
}

/* A trust-strip gradiense egyetlen folytonos sávként fut a teljes felirat alatt
   (background-clip: text), nem betűnként színezve */
.top-contact-bar .tcb-inner {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #8a2b64;
    background: linear-gradient(90deg, #8a2b64, #1c6fb8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-contact-bar .tcb-inner a,
.top-contact-bar .tcb-inner span {
    color: inherit;
    -webkit-text-fill-color: transparent;
}

.top-contact-bar .tcb-inner a:hover,
.top-contact-bar .tcb-inner a:focus {
    text-decoration: underline;
    text-decoration-color: #1c6fb8;
}

/* A navbar a kapcsolati sáv alatt kezdődik; sticky állapotban visszaáll a tetejére */
.navbar.navbar-onlight {
    top: 37px;
}

.navbar.navbar-onlight.navbar-sticky-moved-up {
    top: 0;
}

/* Mobil: egyetlen, tömör sor — telefonszám balra, belépés jobbra; a navbar a sáv tényleges magassága alatt kezdődik */
@media (max-width: 767px) {
    .top-contact-bar {
        padding: 7px 0;
    }

    .top-contact-bar .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
    }

    .top-contact-bar .tcb-inner {
        flex-wrap: nowrap;
        gap: 6px;
        font-size: 13px;
        line-height: 1.3;
        min-width: 0;
    }

    .top-contact-bar .tcb-sep,
    .top-contact-bar .tcb-inner a[href^="mailto:"] {
        display: none;
    }

    .tcb-login {
        font-size: 13px;
        line-height: 1.3;
    }

    .navbar.navbar-onlight {
        top: 31px;
    }
}

@media (max-width: 400px) {
    .top-contact-bar .tcb-label {
        display: none;
    }
}

/* ==============================
   NAVBAR ON LIGHT HERO
============================== */
.navbar-onlight .navbar-nav .nav-link {
    color: #2c3a31;
    font-weight: 600;
}

.navbar-onlight .navbar-nav .nav-link:hover,
.navbar-onlight .navbar-nav .nav-link:focus,
.navbar-dark.navbar-onlight .navbar-nav .nav-link.active {
    color: var(--tp-green);
}

.navbar-onlight .navbar-brand-regular {
    width: auto;
    max-height: 56px;
}

.navbar-onlight .navbar-toggler-icon,
.navbar-onlight .navbar-toggler-icon:before,
.navbar-onlight .navbar-toggler-icon:after {
    background: #2c3a31;
}

.navbar-cta-link {
    display: inline-block;
    background: var(--tp-green);
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 12px 22px;
    border-radius: 100px;
    margin-left: 14px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.navbar-cta-link:hover,
.navbar-cta-link:focus {
    background: var(--tp-green-dark);
    color: #fff !important;
    transform: translateY(-1px);
    text-decoration: none;
}

@media (min-width: 992px) {
    .navbar-onlight .navbar-nav {
        align-items: center;
    }
}

@media (max-width: 991px) {
    .navbar-cta-link {
        margin: 16px 0 0 0;
        text-align: center;
        display: block;
    }
}

/* ==============================
   HERO (light, no bg image)
============================== */
.hero-area {
    position: relative;
    background:
        radial-gradient(1100px 520px at 88% -10%, rgba(7, 162, 75, 0.10), transparent 60%),
        radial-gradient(700px 420px at -10% 110%, rgba(7, 162, 75, 0.07), transparent 60%),
        #ffffff;
    padding: 170px 0 70px;
    overflow: hidden;
}

.hero-area.hero-compact {
    padding: 170px 0 50px;
}

.hero-compact .hero-sub {
    max-width: 640px;
}

.hero-eyebrow-light {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--tp-green);
    background: rgba(7, 162, 75, 0.08);
    border: 1px solid rgba(7, 162, 75, 0.22);
    border-radius: 100px;
    padding: 7px 16px;
    margin-bottom: 22px;
}

.hero-area h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--tp-ink);
    margin-bottom: 18px;
}

.hero-price-mark {
    white-space: nowrap;
    display: inline-block;
    background: var(--tp-amber);
    padding: 1px 14px 3px;
    border-radius: 14px;
}

.hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--tp-muted);
    max-width: 560px;
    margin-bottom: 24px;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.hero-checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #26382d;
}

.hero-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(7, 162, 75, 0.12);
}

.hero-checklist li::after {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 0;
    color: var(--tp-green);
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 767px) {
    .hero-checklist li {
        font-size: 14px;
        line-height: 1.5;
        white-space: nowrap;
        margin-bottom: 9px;
        padding-left: 30px;
    }

    .hero-checklist li::before {
        width: 20px;
        height: 20px;
    }

    .hero-checklist li::after {
        left: 4px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .hero-checklist li {
        font-size: 13px;
    }
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

.btn-cta,
.btn-cta:visited {
    display: inline-block;
    background: var(--tp-green);
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 17px 34px;
    border-radius: 100px;
    border: 2px solid var(--tp-green);
    box-shadow: 0 10px 24px rgba(7, 162, 75, 0.28);
    transition: all 0.25s ease;
}

.btn-cta:hover,
.btn-cta:focus {
    background: var(--tp-green-dark);
    border-color: var(--tp-green-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(7, 162, 75, 0.34);
    text-decoration: none;
}

.btn-cta-outline,
.btn-cta-outline:visited {
    display: inline-block;
    background: #fff;
    color: var(--tp-green) !important;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 17px 34px;
    border-radius: 100px;
    border: 2px solid rgba(7, 162, 75, 0.45);
    transition: all 0.25s ease;
}

.btn-cta-outline:hover,
.btn-cta-outline:focus {
    background: rgba(7, 162, 75, 0.07);
    border-color: var(--tp-green);
    color: var(--tp-green) !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-trust-line {
    font-size: 14px;
    color: var(--tp-muted);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.hero-trust-line strong {
    color: var(--tp-ink);
}

/* Hero visual — product image with floating price chip */
.hero-visual {
    position: relative;
    padding: 20px 0 30px;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 24px 40px rgba(8, 55, 28, 0.18));
}

.hero-visual-chip {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: 14px;
    box-shadow: var(--tp-shadow-lg);
    padding: 12px 18px;
}

.hero-visual-chip .chip-price {
    font-size: 21px;
    font-weight: 800;
    color: var(--tp-green);
    line-height: 1.2;
}

.hero-visual-chip .chip-sub {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--tp-muted);
}

@media (min-width: 992px) {
    .hero-visual {
        padding: 0 0 36px;
    }

    .hero-visual img {
        width: 108%;
        max-width: none;
        margin-left: -2%;
    }
}

/* Mobile hero: image on top, bottom half fades to white, text starts over the fade */
@media (max-width: 991px) {
    .hero-visual {
        position: relative;
        margin: 0 auto;
        max-width: 560px;
        padding: 0;
    }

    .hero-visual img {
        filter: none;
        border-radius: 20px 20px 0 0;
    }

    .hero-visual::after {
        content: "";
        position: absolute;
        left: -2px;
        right: -2px;
        bottom: -2px;
        height: 58%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.78) 32%, #ffffff 68%);
        pointer-events: none;
    }

    .hero-visual-chip {
        display: none;
    }

    .hero-text-col {
        position: relative;
        z-index: 2;
        margin-top: -16%;
        text-align: center;
    }

    .hero-text-col .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-checklist {
        display: inline-block;
        text-align: left;
        margin-bottom: 26px;
    }

    .hero-cta-row {
        justify-content: center;
    }
}

/* Offer card — the funnel entrance */
.offer-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: 22px;
    box-shadow: var(--tp-shadow-lg);
    padding: 38px 34px 30px;
    max-width: 440px;
    margin-left: auto;
}

.offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--tp-green) 0%, #35c176 100%);
}

.offer-badge {
    display: inline-block;
    background: var(--tp-amber);
    color: #201a04;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.offer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--tp-ink);
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.offer-price .amount {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--tp-green);
    letter-spacing: -0.5px;
}

.offer-price .period {
    font-size: 16px;
    font-weight: 600;
    color: var(--tp-muted);
}

.offer-meta {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--tp-ink);
    background: var(--tp-bg-soft);
    border: 1px solid var(--tp-border);
    border-radius: 10px;
    padding: 8px 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.offer-list li {
    position: relative;
    padding: 9px 0 9px 30px;
    border-bottom: 1px dashed var(--tp-border);
    font-size: 15px;
    color: #2c3a31;
    line-height: 1.45;
}

.offer-list li:last-child {
    border-bottom: 0;
}

.offer-list li::before {
    content: "✓";
    position: absolute;
    left: 2px;
    top: 9px;
    color: var(--tp-green);
    font-weight: 800;
}

.offer-card .btn-cta {
    display: block;
    text-align: center;
    width: 100%;
}

.offer-footnote {
    font-size: 13px;
    color: var(--tp-muted);
    line-height: 1.5;
    margin: 14px 0 0;
    text-align: center;
}

/* ==============================
   TRUST / STATS STRIP
============================== */
.trust-strip {
    background: linear-gradient(136deg, #8a2b64, #1c6fb8);
    padding: 24px 0;
}

.trust-strip .row {
    align-items: center;
}

.trust-item {
    text-align: center;
    padding: 4px 0;
}

.trust-number {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
}

.trust-label {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0;
}

/* ==============================
   ALL-IN-ONE EXPLAINER
============================== */
.allinone-area {
    background: #ffffff;
}

.allinone-area .section_heading {
    margin-bottom: 40px;
}

.allinone-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--tp-muted);
    max-width: 860px;
    margin: 0 auto 18px;
}

.allinone-lead strong {
    color: var(--tp-ink);
    font-weight: 700;
}

.allinone-punch {
    font-size: 21px;
    font-weight: 700;
    color: var(--tp-green-deep);
    margin-bottom: 30px;
}

.allinone-note {
    font-size: 14.5px;
    color: var(--tp-muted);
    margin: 18px 0 0;
}

.allinone-note a {
    color: var(--tp-green);
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 575px) {
    .allinone-lead {
        font-size: 17px;
    }

    .allinone-punch {
        font-size: 18px;
    }
}

/* ==============================
   AI FUNCTIONS (reorder + upsell)
============================== */
#aifunctions {
    overflow: hidden;
}

#aifunctions .section-heading {
    margin-bottom: 30px;
}

.ai-heading-pill {
    display: inline-block;
    background: linear-gradient(136deg, #8a2b64, #1c6fb8);
    color: #fff;
    font-size: 26px;
    line-height: 1.4;
    padding: 16px 26px;
    border-radius: 22px;
}

.ai-heading-pill::after {
    display: none;
}

@media (max-width: 575px) {
    .ai-heading-pill {
        font-size: 21px;
        padding: 14px 20px;
    }
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.ai-feature-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(7, 162, 75, 0.1);
    color: var(--tp-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon i {
    font-size: 26px;
    line-height: 1;
}

.ai-feature h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--tp-ink);
}

.ai-feature p {
    color: var(--tp-muted);
    margin: 0;
    line-height: 1.6;
}

.ai-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 24px 40px rgba(8, 55, 28, 0.16));
}

@media (min-width: 992px) {
    .ai-visual img {
        width: 112%;
        max-width: none;
        margin-left: -2%;
    }
}

@media (max-width: 991px) {
    .ai-visual {
        max-width: 560px;
        margin: 36px auto 0;
    }
}

/* ==============================
   GREEN BAND OVERLINE
============================== */
.band-overline {
    color: rgba(255, 255, 255, 0.85);
}

/* ==============================
   HUNGARIAN TRICOLOR ACCENTS
============================== */
.support-band {
    position: relative;
}

/* Tricolor stripe across the top of the band */
.support-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 9px;
    background: linear-gradient(
        to bottom,
        #cd2a3e 0%, #cd2a3e 33.4%,
        #ffffff 33.4%, #ffffff 66.7%,
        #436f4d 66.7%, #436f4d 100%
    );
    z-index: 3;
}

/* Small Hungarian flag badge in the heading */
.hu-flag {
    display: inline-block;
    width: 40px;
    height: 26px;
    border-radius: 5px;
    margin-right: 14px;
    vertical-align: baseline;
    transform: translateY(2px);
    background: linear-gradient(
        to bottom,
        #cd2a3e 0%, #cd2a3e 33.4%,
        #ffffff 33.4%, #ffffff 66.7%,
        #436f4d 66.7%, #436f4d 100%
    );
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
    .hu-flag {
        width: 32px;
        height: 21px;
        margin-right: 10px;
    }
}

/* ==============================
   STEPS — how onboarding works
============================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-box {
    position: relative;
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    box-shadow: var(--tp-shadow);
    padding: 34px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--tp-shadow-lg);
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(7, 162, 75, 0.1);
    color: var(--tp-green);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.step-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-box p {
    color: var(--tp-muted);
    margin-bottom: 0;
}

.steps-note {
    margin-top: 34px;
    text-align: center;
}

.steps-note span {
    display: inline-block;
    background: rgba(7, 162, 75, 0.07);
    border: 1px solid rgba(7, 162, 75, 0.2);
    border-radius: 100px;
    color: var(--tp-green-deep);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
}

@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   TESTIMONIAL CAROUSEL
============================== */
.testimonial-area .section-heading {
    margin-bottom: 50px;
}

.testimonial-slider {
    position: relative;
    padding: 0 74px;
}

.testimonial-slide {
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: 22px;
    /* Az owl-stage-outer overflow:hidden levágná a nagy árnyékot — kisebb
       szórás + belső margó, hogy az árnyék a kártya körül elférjen */
    box-shadow: 0 12px 22px rgba(8, 55, 28, 0.08);
    padding: 46px 52px 38px;
    margin: 8px 14px 34px;
    text-align: center;
}

.testimonial-text {
    font-size: 21px;
    line-height: 1.7;
    color: var(--tp-ink);
    max-width: 720px;
    margin: 0 auto 26px;
}

.testimonial-person {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid var(--tp-border);
    text-align: left;
}

.testimonial-slider .owl-item .testimonial-person img,
.testimonial-person img {
    width: 88px !important;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-person-meta strong {
    font-size: 18px;
    color: var(--tp-ink);
    line-height: 1.35;
}

.testimonial-person-meta span {
    font-size: 15px;
    font-weight: 600;
    color: var(--tp-muted);
}

/* Owl nav arrows */
.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid var(--tp-border) !important;
    box-shadow: var(--tp-shadow);
    color: var(--tp-green) !important;
    font-size: 30px !important;
    line-height: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.testimonial-slider .owl-nav button.owl-prev {
    left: 0;
}

.testimonial-slider .owl-nav button.owl-next {
    right: 0;
}

.testimonial-slider .owl-nav button.owl-prev:hover,
.testimonial-slider .owl-nav button.owl-next:hover {
    background: var(--tp-green) !important;
    color: #fff !important;
    border-color: var(--tp-green) !important;
}

.testimonial-slider .owl-nav button span {
    display: block;
    margin-top: -4px;
}

/* Owl dots */
.testimonial-slider .owl-dots {
    text-align: center;
    margin-top: 2px;
}

.testimonial-slider .owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbdcd2;
    margin: 0 6px;
    transition: all 0.25s ease;
}

.testimonial-slider .owl-dots button.owl-dot.active {
    background: var(--tp-green);
    transform: scale(1.3);
}

@media (max-width: 767px) {
    .testimonial-slider {
        padding: 0;
    }

    .testimonial-slide {
        padding: 32px 22px 28px;
        margin: 6px 8px 26px;
    }

    .testimonial-text {
        font-size: 17px;
        line-height: 1.65;
    }

    /* Mobilon nincsenek nyilak: húzással lapozható, a pontok jelzik a további véleményeket */
    .testimonial-slider .owl-nav {
        display: none;
    }

    .testimonial-slider .owl-dots {
        margin-top: 18px;
    }
}

/* ==============================
   PRICING
============================== */
.pricing-area {
    position: relative;
    background:
        radial-gradient(760px 420px at 0% 100%, rgba(7, 162, 75, 0.10), transparent 62%),
        radial-gradient(760px 420px at 100% 0%, rgba(255, 213, 79, 0.16), transparent 60%),
        linear-gradient(180deg, #f4faf6 0%, #edf7f0 100%);
    border-top: 1px solid var(--tp-border);
    border-bottom: 1px solid var(--tp-border);
}

.pricing-area .section-heading > .section-overline {
    display: inline-block;
    width: auto;
    background: var(--tp-green-deep);
    color: #fff;
    border-radius: 100px;
    padding: 6px 16px;
}

.pricing-area .section-heading {
    margin-bottom: 36px;
}

.pricing-area .section-lead strong {
    color: var(--tp-green-deep);
}

.section-heading > .pricing-punch {
    display: inline-block;
    width: auto;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 12px;
    background: var(--tp-amber);
    color: #201a04;
    font-weight: 800;
    font-size: 15px;
    border-radius: 14px;
    padding: 6px 16px;
}

.plans-included {
    background: var(--tp-bg-soft);
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    padding: 24px 28px;
    margin-bottom: 44px;
}

.plans-included h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--tp-green-deep);
    margin-bottom: 14px;
    text-align: center;
}

.plans-included ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    padding: 0;
    margin: 0;
}

.plans-included li {
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3a31;
}

.plans-included li::before {
    content: "✓ ";
    color: var(--tp-green);
    font-weight: 800;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    box-shadow: var(--tp-shadow);
    padding: 30px 24px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tp-shadow-lg);
}

.plan-card.plan-featured {
    border: 2px solid var(--tp-green);
    box-shadow: 0 18px 44px rgba(7, 162, 75, 0.18);
}

.plan-flag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--tp-green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 6px 16px;
    border-radius: 100px;
}

.plan-flag.plan-flag-amber {
    background: var(--tp-amber);
    color: #201a04;
}

.plan-name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin: 6px 0 2px;
    color: var(--tp-ink);
}

.plan-tagline {
    font-size: 13.5px;
    color: var(--tp-muted);
    min-height: 40px;
    margin-bottom: 12px;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 2px;
}

.plan-price-row .amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--tp-ink);
    letter-spacing: -0.5px;
}

.plan-featured .plan-price-row .amount {
    color: var(--tp-green);
}

.plan-price-row .period {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--tp-muted);
}

.plan-commission {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--tp-green-deep);
    margin-bottom: 14px;
}

.plan-limit {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--tp-ink);
    background: var(--tp-bg-soft);
    border: 1px solid var(--tp-border);
    border-radius: 8px;
    padding: 7px 12px;
    margin-bottom: 18px;
    text-align: center;
}

.plan-products {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.plan-products-label {
    flex: 0 0 100%;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--tp-muted);
    margin-bottom: 2px;
}

.plan-product {
    background: rgba(7, 162, 75, 0.08);
    border: 1px solid rgba(7, 162, 75, 0.22);
    color: var(--tp-green-deep);
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 100px;
    padding: 5px 12px;
}

.plan-product::before {
    content: "✓ ";
    color: var(--tp-green);
}

.product-availability {
    display: inline-block;
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--tp-green-deep);
    background: rgba(7, 162, 75, 0.08);
    border: 1px solid rgba(7, 162, 75, 0.22);
    border-radius: 100px;
    padding: 6px 14px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1 1 auto;
}

.plan-features li {
    position: relative;
    padding: 7px 0 7px 26px;
    font-size: 14px;
    line-height: 1.45;
    color: #2c3a31;
    border-bottom: 1px dashed var(--tp-border);
}

.plan-features li:last-child {
    border-bottom: 0;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--tp-green);
    font-weight: 800;
    font-size: 13px;
}

.plan-features li.minus {
    color: #9aa8a0;
}

.plan-features li.minus::before {
    content: "—";
    color: #b9c4be;
}

.plan-cta {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 14px 20px;
    border-radius: 100px;
    border: 2px solid rgba(7, 162, 75, 0.45);
    color: var(--tp-green) !important;
    background: #fff;
    transition: all 0.25s ease;
}

.plan-cta:hover,
.plan-cta:focus {
    background: rgba(7, 162, 75, 0.07);
    border-color: var(--tp-green);
    text-decoration: none;
}

.plan-featured .plan-cta {
    background: var(--tp-green);
    border-color: var(--tp-green);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(7, 162, 75, 0.26);
}

.plan-featured .plan-cta:hover,
.plan-featured .plan-cta:focus {
    background: var(--tp-green-dark);
    border-color: var(--tp-green-dark);
}

.plan-note-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.plan-note {
    background: var(--tp-bg-soft);
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    padding: 24px 26px;
}

.plan-note h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--tp-green-deep);
}

.plan-note p {
    font-size: 14px;
    color: var(--tp-muted);
    margin: 0;
    line-height: 1.55;
}

.plan-smallprint {
    text-align: center;
    font-size: 13px;
    color: var(--tp-muted);
    margin-top: 26px;
    margin-bottom: 0;
}

/* Egyetlen ár-kijelentés (nincs csomag, nincs oszlop) */
.price-statement {
    background: #fff;
    border: 2px solid var(--tp-green);
    border-radius: var(--tp-radius);
    box-shadow: 0 18px 44px rgba(7, 162, 75, 0.16);
    padding: 8px 32px 0;
}

.price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px dashed var(--tp-border);
}

.price-line-label strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--tp-ink);
    margin-bottom: 3px;
}

.price-line-label span {
    display: block;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--tp-muted);
}

.price-line-value {
    flex: 0 0 auto;
    text-align: right;
    font-size: 26px;
    font-weight: 800;
    color: var(--tp-green);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.price-line-main {
    border-bottom: 0;
}

.price-line-main .price-line-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
}

.price-line-main .price-main {
    font-size: 30px;
    color: var(--tp-ink);
}

.price-line-main .price-alt {
    font-size: 19px;
    color: var(--tp-green);
    margin-top: 2px;
}

.price-line-main .price-fineprint {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--tp-muted);
    letter-spacing: 0.2px;
    margin-top: 3px;
}

.price-statement-foot {
    margin: 14px 0 0;
    padding: 0;
    background: none;
    border: 0;
    justify-content: flex-start;
}

.price-statement-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 -32px;
    padding: 16px 24px;
    background: var(--tp-bg-soft);
    border-top: 1px solid var(--tp-border);
    border-radius: 0 0 calc(var(--tp-radius) - 2px) calc(var(--tp-radius) - 2px);
}

.price-statement-foot span {
    font-size: 13px;
    font-weight: 700;
    color: var(--tp-green-deep);
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: 100px;
    padding: 6px 14px;
    white-space: nowrap;
}

.price-statement-foot span::before {
    content: "✓ ";
    color: var(--tp-green);
    font-weight: 800;
}

@media (max-width: 767px) {
    .price-statement {
        padding: 4px 20px 0;
    }

    .price-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px 0;
    }

    .price-line-value,
    .price-line-main .price-line-value {
        text-align: left;
        align-items: flex-start;
        white-space: normal;
    }

    .price-line-label strong {
        font-size: 17px;
    }

    .price-statement-foot {
        margin: 0 -20px;
        padding: 14px 16px;
        gap: 6px;
    }

    .price-statement-foot span {
        font-size: 12.5px;
        padding: 5px 12px;
    }
}

/* ==============================
   PRODUCT CARDS / DETAILS polish
============================== */
.solution-card {
    border: 1px solid var(--tp-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tp-shadow-lg);
}

.product-pricing-hint {
    display: inline-block;
    background: rgba(7, 162, 75, 0.07);
    border: 1px solid rgba(7, 162, 75, 0.2);
    border-radius: 10px;
    color: var(--tp-green-deep);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 18px;
}

.product-pricing-hint a {
    font-weight: 700;
    text-decoration: underline;
}

/* ==============================
   MISC / GENERAL POLISH
============================== */
.section-lead {
    font-size: 18px;
    color: var(--tp-muted);
    line-height: 1.65;
}

.single-work {
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    background: #fff;
    box-shadow: var(--tp-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Consistent vertical gap between card rows in promo grids */
#whytelepocak .single-promo > [class*="col-"] {
    margin-bottom: 26px;
}

.single-work:hover {
    transform: translateY(-4px);
    box-shadow: var(--tp-shadow-lg);
}

.audience-card,
.case-study-card {
    border: 1px solid var(--tp-border);
}

/* FAQ polish */
.faq-area .card {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid var(--tp-border) !important;
    background: #fff;
}

.faq-area .card-header .btn {
    font-weight: 700;
    color: var(--tp-ink);
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    text-align: left;
    width: 100%;
}

.faq-area .card .card-body {
    border: 0;
    color: var(--tp-muted);
}

/* ==============================
   MOBILE STICKY CTA BAR
============================== */
.mobile-cta-bar {
    display: none;
}

@media (max-width: 767px) {
    .mobile-cta-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 900;
        background: #fff;
        border-top: 1px solid var(--tp-border);
        box-shadow: 0 -8px 24px rgba(8, 55, 28, 0.12);
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    }

    .mobile-cta-bar .mcb-price {
        font-size: 13px;
        font-weight: 700;
        color: var(--tp-ink);
        line-height: 1.3;
    }

    .mobile-cta-bar .mcb-price small {
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: var(--tp-muted);
    }

    .mobile-cta-bar .btn-cta {
        padding: 13px 20px;
        font-size: 0.8rem;
        box-shadow: none;
        flex-shrink: 0;
    }

    #scrollUp {
        bottom: 90px;
    }

    body {
        padding-bottom: 68px;
    }
}

/* ==============================
   MOBILE RHYTHM & ALIGNMENT
   Egységes szekció-térközök és középre zárt fejlécek mobilon
============================== */
@media (max-width: 767px) {
    .ptb_100 {
        padding: 52px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section_heading {
        margin-top: 12px;
        margin-bottom: 18px;
    }

    .section-lead {
        font-size: 16px;
    }

    /* Minden szekciófejléc középre zárva mobilon */
    .section-heading.text-left,
    .section_heading.text-left,
    #aifunctions .section-heading,
    #aifunctions .section-lead {
        text-align: center !important;
    }

    .ai-heading-pill {
        display: block;
    }

    .testimonial-area .section-heading,
    .trust-strip {
        margin-bottom: 0;
    }

    .steps-grid {
        gap: 16px;
    }

    .step-box {
        padding: 26px 22px;
    }

    .plan-note-grid {
        gap: 14px;
        margin-top: 28px;
    }

    .plans-included {
        padding: 20px 18px;
        margin-bottom: 32px;
    }

    .plan-grid {
        gap: 16px;
    }
}

/* ==============================
   RESPONSIVE HERO
============================== */
@media (max-width: 991px) {
    .hero-area {
        padding: 74px 0 48px;
    }

    .hero-area h1 {
        font-size: 30px !important;
        text-align: center;
        padding-top: 0;
    }

    .hero-sub {
        text-align: center;
    }

    .offer-card {
        margin: 40px auto 0;
    }
}

@media (max-width: 575px) {
    .hero-area h1 {
        font-size: 28px !important;
    }

    .offer-card {
        padding: 30px 22px 24px;
    }

    .offer-price .amount {
        font-size: 38px;
    }

    .hero-cta-row .btn-cta,
    .hero-cta-row .btn-cta-outline {
        width: 100%;
        text-align: center;
    }

    .trust-number {
        font-size: 32px;
    }

    .trust-label {
        font-size: 14px;
    }
}
