/* ==========================================================================
   CSUPI AUTÓMENTŐ — Shared stylesheet (all pages)
   Mobile-first. Design system derived from the approved base, with global
   layout rules applied: sticky header, red top-bar (all sizes), circular
   floating phone widget (bottom-right, all sizes), unified footer.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & BASE
   -------------------------------------------------------------------------- */
:root {
    --brand: #cf2e2e;
    --brand-hover: #b52525;
    --brand-deep: #a11c1c;
    --brand-dark: #2c2c40;
    --brand-darkest: #161621;
    --brand-light: #fff5f5;
    --accent: #fcb900;
    --accent-deep: #e0a500;

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --text-dark: #1e293b;
    --text-muted: #475569;

    --section-padding-y: 56px;
    --section-padding-x: 20px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 2px 4px -1px rgba(0, 0, 0, .03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, .07), 0 4px 6px -2px rgba(0, 0, 0, .04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .05);
    --shadow-xl: 0 28px 45px -12px rgba(0, 0, 0, .22);
    --shadow-brand: 0 10px 20px -5px rgba(207, 46, 46, .4);
    --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, .25);

    --t-fast: .2s ease-in-out;
    --t-norm: .3s cubic-bezier(.4, 0, .2, 1);
    --t-slow: .5s cubic-bezier(.4, 0, .2, 1);

    --z-sticky: 1000;
    --z-fixed: 1050;
    --z-modal: 2000;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* offset anchor targets so they land below the fixed header */
    scroll-padding-top: 120px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    /* overflow-x: clip clips stray horizontal overflow WITHOUT turning body into a
       scroll container (which would break anchor-link scrolling and the fixed header) */
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--brand-darkest);
    font-weight: 800;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t-norm);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

strong {
    font-weight: 700;
    color: var(--brand-darkest);
}

.container {
    width: 100%;
    max-width: 1140px;
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
    margin: 0 auto;
}

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

.bg-gray {
    background: var(--gray-50);
}

.bg-dark {
    background: var(--brand-darkest);
    color: var(--white);
}

section {
    padding: var(--section-padding-y) 0;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY HELPERS & BUTTONS
   -------------------------------------------------------------------------- */
.section-head {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-subtitle {
    font-size: .82rem;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    margin-bottom: 12px;
    display: inline-block;
}

.bg-dark .section-subtitle {
    color: var(--accent);
}

.section-title {
    font-size: 1.9rem;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.bg-dark .section-title {
    color: var(--white);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.bg-dark .section-desc {
    color: var(--gray-300);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1.02rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    transition: all var(--t-fast);
    text-align: center;
    border: 2px solid transparent;
    letter-spacing: .03em;
    line-height: 1.25;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
    background: var(--brand-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(207, 46, 46, .5);
}

.btn-primary:active {
    transform: scale(.98);
}

.btn-accent {
    background: var(--accent);
    color: var(--brand-darkest);
    box-shadow: 0 10px 20px -5px rgba(252, 185, 0, .45);
}

.btn-accent:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
}

.btn-outline-brand {
    background: var(--white);
    border-color: var(--brand);
    color: var(--brand);
}

.btn-outline-brand:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 19px 34px;
    font-size: 1.12rem;
}

/* --------------------------------------------------------------------------
   3. TOP BAR + HEADER (sticky, all sizes)
   -------------------------------------------------------------------------- */
.header-sticky-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    width: 100%;
    box-shadow: var(--shadow-sm);
}

/* offset page content so it clears the fixed header (top-bar + nav) */
body {
    padding-top: 112px;
}

.top-bar {
    background: var(--brand);
    color: var(--white);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    /* keep the container side padding so content never touches/overflows the edges */
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: .82rem;
    font-weight: 600;
}

.top-bar-phone {
    flex-shrink: 0;
}

.top-bar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: .01em;
}

.top-bar-phone i {
    font-size: 1.15rem;
}

.top-bar-extra {
    display: none;
    align-items: center;
    gap: 8px;
    opacity: .92;
}

.top-bar-badge {
    background: var(--accent);
    color: var(--brand-darkest);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: .74rem;
    padding: 5px 11px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: .02em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-bar {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--brand-darkest);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo i {
    color: var(--brand);
    font-size: 2rem;
}

.mobile-menu-btn {
    font-size: 2rem;
    color: var(--brand-darkest);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}

.nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82%, 320px);
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 90px 28px 30px;
    gap: 6px;
    /* fade in/out — stays within the viewport so it never causes horizontal scroll */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t-norm), visibility var(--t-norm);
    z-index: var(--z-modal);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    overflow-y: auto;
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand-darkest);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 4px;
}

.nav-links a:hover {
    color: var(--brand);
}

.nav-close {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--brand-darkest);
    cursor: pointer;
    line-height: 0;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-norm);
    z-index: calc(var(--z-modal) - 1);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-cta {
    display: none;
}

/* --------------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 44px 0 52px;
    background-color: var(--brand-darkest);
    background-image: url('https://csupiautomentes.hu/wp-content/uploads/2025/11/automentes-budapest-1024x576.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(22, 22, 33, .96) 0%, rgba(22, 22, 33, .88) 55%, rgba(44, 44, 64, .8) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.hero h1 {
    /* fluid so long single words (e.g. FURGONMENTÉS, SZENTENDRE) never overflow on small phones */
    font-size: clamp(2rem, 8.5vw, 2.9rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -.03em;
    line-height: 1.05;
    text-transform: uppercase;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-yellow {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 20px;
}

/* Prominent 0 Ft badge */
.hero-zero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(252, 185, 0, .12);
    border: 2px solid var(--accent);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.55rem;
    padding: 10px 22px;
    border-radius: 999px;
    box-shadow: 0 8px 24px -8px rgba(252, 185, 0, .55);
    margin-bottom: 10px;
}

.hero-zero i {
    color: var(--accent);
    font-size: 1.6rem;
}

.hero-subtitle {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 26px;
    max-width: 440px;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.trust-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    width: 100%;
    max-width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.trust-badge > i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-badge .regular-text {
    font-weight: 600;
    color: var(--white);
    font-size: 1.02rem;
}

.google-icon {
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    font-family: 'Outfit', sans-serif;
}

.google-icon span {
    background: conic-gradient(#ea4335 0 90deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg 360deg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-weight: 800;
}

.google-text h4 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-text h4 .stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
}

.google-text p {
    margin: 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .8);
}

.hero-cta-title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 16px;
}

.hero .btn {
    max-width: 420px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   5. CALLOUT CARDS — "Mit fogunk kérdezni a telefonban?"
   -------------------------------------------------------------------------- */
.callout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
}

.callout-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 5px solid var(--brand);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-norm);
}

.callout-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.callout-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.22rem;
    color: var(--brand-darkest);
    margin-bottom: 14px;
}

.callout-num {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
}

.callout-card h3 i {
    color: var(--brand);
    font-size: 1.35rem;
}

.callout-card p {
    margin: 0;
    color: var(--text-muted);
}

.callout-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 9px;
    color: var(--text-muted);
    font-size: .98rem;
}

.callout-list li:last-child {
    margin-bottom: 0;
}

.callout-list li i {
    color: var(--brand);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. RED INFO BAR (stats)
   -------------------------------------------------------------------------- */
.red-info-bar {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: var(--white);
    padding: 44px 0;
}

.red-info-grid {
    display: grid;
    gap: 26px;
}

.red-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.red-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.red-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.red-item p {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
    color: var(--white);
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}

.red-item p span {
    display: block;
    font-size: .85rem;
    font-weight: 400;
    opacity: .9;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
}

.red-bottom-row {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .22);
    padding-top: 26px;
}

/* --------------------------------------------------------------------------
   7. REVIEWS CAROUSEL (real Google reviews)
   -------------------------------------------------------------------------- */
.reviews-head {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 10px 20px;
    margin-bottom: 22px;
}

.reviews-rating .google-icon {
    width: 34px;
    height: 34px;
}

.reviews-rating .google-icon span {
    font-size: 19px;
}

.reviews-rating b {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
}

.reviews-rating .stars {
    color: var(--accent);
    letter-spacing: 2px;
}

.reviews-rating small {
    color: rgba(255, 255, 255, .75);
    font-size: .85rem;
}

.reviews-carousel {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.reviews-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.reviews-track {
    display: flex;
    transition: transform var(--t-slow);
}

.review-slide {
    min-width: 100%;
    padding: 4px;
}

.review-card {
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: var(--shadow-lg);
    text-align: left;
    position: relative;
    min-height: 230px;
    display: flex;
    flex-direction: column;
}

.review-card .quote-mark {
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 3rem;
    color: var(--gray-100);
}

.review-stars {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 22px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--gray-100);
    padding-top: 18px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-darkest);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.review-author-info {
    flex-grow: 1;
}

.review-author-info h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--brand-darkest);
}

.review-author-info p {
    margin: 0;
    font-size: .82rem;
    color: var(--gray-500);
}

.review-google {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.review-google span {
    font-size: 25px;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.reviews-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--brand);
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast);
    flex-shrink: 0;
}

.reviews-arrow:hover {
    background: var(--brand-hover);
    transform: scale(1.08);
}

.reviews-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 240px;
}

.reviews-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    padding: 0;
    transition: all var(--t-fast);
}

.reviews-dots button.active {
    background: var(--brand);
    transform: scale(1.3);
}

/* Reviews on light section variant */
.bg-gray .reviews-rating {
    background: var(--white);
    border-color: var(--gray-200);
}

.bg-gray .reviews-rating b {
    color: var(--brand-darkest);
}

.bg-gray .reviews-rating small {
    color: var(--gray-500);
}

.bg-gray .reviews-dots button {
    background: var(--gray-300);
}

.bg-gray .reviews-dots button.active {
    background: var(--brand);
}

/* --------------------------------------------------------------------------
   8. PROCESS STEPS (vertical) — "Mit tegyen pontosan?"
   -------------------------------------------------------------------------- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 8px;
}

.process-step {
    background: var(--white);
    padding: 30px 26px 28px;
    border-radius: var(--radius-md);
    /* Increased drop shadow so steps stand out (also used on M31) */
    box-shadow: 0 18px 40px -12px rgba(22, 22, 33, .28), 0 6px 14px -6px rgba(22, 22, 33, .12);
    border-top: 5px solid var(--brand);
    position: relative;
    text-align: center;
    transition: transform var(--t-norm), box-shadow var(--t-norm);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -14px rgba(22, 22, 33, .34), 0 8px 18px -6px rgba(22, 22, 33, .16);
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    margin: 0 auto 18px;
    box-shadow: 0 6px 14px rgba(207, 46, 46, .35);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--brand-darkest);
}

.process-step p,
.process-step ol {
    color: var(--text-muted);
    font-size: .98rem;
    margin: 0;
}

.process-step ol {
    text-align: left;
    counter-reset: ps;
    display: inline-block;
}

.process-step ol li {
    margin-bottom: 6px;
    padding-left: 4px;
}

/* --------------------------------------------------------------------------
   9. SCENARIOS (dark cards) — "Mikor hívja…"
   -------------------------------------------------------------------------- */
.scenarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.scenario-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 30px 18px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--t-norm);
}

.scenario-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .2);
}

.scenario-card i {
    font-size: 2.6rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.scenario-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.scenario-card p {
    color: var(--gray-400);
    margin: 0;
    font-size: .92rem;
}

/* --------------------------------------------------------------------------
   10. SERVICES + EXTRA SERVICE PILLS
   -------------------------------------------------------------------------- */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 8px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--t-norm);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-img {
    height: 200px;
    overflow: hidden;
    border-bottom: 3px solid var(--brand);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-content {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-content > p {
    margin-bottom: 18px;
}

.service-list {
    margin: 0;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-800);
}

.service-list li i {
    color: var(--brand);
    font-size: 1.2rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.extra-services {
    margin-top: 30px;
    background: radial-gradient(circle at right top, #232333, var(--brand-darkest));
    border-radius: var(--radius-md);
    padding: 36px 28px;
    color: var(--white);
    text-align: center;
}

.extra-services h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.extra-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.extra-tags .tag {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 11px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.extra-tags .tag i {
    color: var(--accent);
    font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   11. COVERAGE AREAS — "Hol dolgozunk?"
   -------------------------------------------------------------------------- */
.coverage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 8px;
}

.coverage-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-norm);
}

.coverage-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.coverage-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.coverage-text h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--brand-darkest);
}

.coverage-text p {
    margin: 0;
    font-size: .95rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. ABOUT — "Rólunk"
   -------------------------------------------------------------------------- */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: var(--accent);
    color: var(--brand-darkest);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: .92rem;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-points {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-point {
    display: flex;
    gap: 16px;
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.about-point-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.about-point h4 {
    font-size: 1.12rem;
    margin-bottom: 4px;
}

.about-point p {
    margin: 0;
    font-size: .93rem;
}

.about-check {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-check li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .98rem;
    color: var(--gray-800);
    font-weight: 500;
}

.about-check li i {
    color: var(--brand);
    font-size: 1.25rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   13. PRICING
   -------------------------------------------------------------------------- */
.pricing-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 8px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--t-norm);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    border-bottom: 3px solid var(--brand);
    padding-bottom: 14px;
    margin-bottom: 18px;
    display: inline-block;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--gray-300);
    font-size: 1rem;
    color: var(--gray-800);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li .price-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.price-list li i {
    color: var(--brand);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.price-list li .price-val {
    font-weight: 800;
    color: var(--brand);
    text-align: right;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.pricing-note {
    margin-top: 26px;
    padding: 22px 24px;
    background: var(--brand-light);
    border-left: 5px solid var(--brand);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: .96rem;
    color: var(--text-dark);
}

.pricing-note ul {
    margin: 10px 0;
    padding-left: 6px;
}

.pricing-note li {
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.pricing-note li::before {
    content: '•';
    color: var(--brand);
    position: absolute;
    left: 0;
    font-weight: 800;
}

.pricing-cta {
    margin-top: 30px;
    text-align: center;
}

.pricing-cta .btn {
    max-width: 420px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   14. VEHICLE STRIP (optional, used on home/m31)
   -------------------------------------------------------------------------- */
.vehicle-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    margin-top: 8px;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.vehicle-grid::-webkit-scrollbar {
    display: none;
}

.vehicle-card {
    min-width: 200px;
    scroll-snap-align: start;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-norm);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.vehicle-card i {
    font-size: 3rem;
    color: var(--brand);
    margin-bottom: 12px;
    display: block;
}

.vehicle-card h4 {
    font-size: 1.05rem;
    margin: 0;
}

/* --------------------------------------------------------------------------
   15. GALLERY
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative;
}

.gallery-item .gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--t-slow);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   16. FOOTER (identical across all pages)
   -------------------------------------------------------------------------- */
.footer {
    background: var(--brand-darkest);
    color: var(--gray-400);
    padding: 56px 0 28px;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.footer-logo i {
    color: var(--brand);
    font-size: 2.1rem;
}

.footer-col p {
    font-size: .95rem;
    color: var(--gray-400);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: center;
}

.footer-links a {
    color: var(--gray-400);
    font-size: .96rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-links a i {
    color: var(--brand);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-legal {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.9;
}

.footer-legal strong {
    color: var(--gray-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 44px;
    padding-top: 24px;
    font-size: .88rem;
    color: var(--gray-500);
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-500);
}

/* --------------------------------------------------------------------------
   17. FLOATING PHONE WIDGET (circular, bottom-right, all sizes)
   -------------------------------------------------------------------------- */
.widget-phone {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: var(--z-fixed);
    height: 62px;
    width: 62px;
    background: var(--brand);
    color: var(--white);
    border-radius: 999px;
    display: flex;
    align-items: center;
    box-shadow: 0 12px 30px -6px rgba(207, 46, 46, .6);
    overflow: hidden;
    border: 3px solid var(--white);
    transition: all var(--t-norm);
    animation: widget-pulse 2.4s infinite;
}

.widget-phone .icon-wrapper {
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    flex-shrink: 0;
}

.widget-phone .text-wrapper {
    white-space: nowrap;
    font-weight: 800;
    font-size: 1.15rem;
    padding-right: 22px;
    opacity: 0;
    max-width: 0;
    transition: all var(--t-norm);
    font-family: 'Outfit', sans-serif;
}

@keyframes widget-pulse {
    0% { box-shadow: 0 12px 30px -6px rgba(207, 46, 46, .6), 0 0 0 0 rgba(207, 46, 46, .5); }
    70% { box-shadow: 0 12px 30px -6px rgba(207, 46, 46, .6), 0 0 0 16px rgba(207, 46, 46, 0); }
    100% { box-shadow: 0 12px 30px -6px rgba(207, 46, 46, .6), 0 0 0 0 rgba(207, 46, 46, 0); }
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE — TABLET / DESKTOP
   -------------------------------------------------------------------------- */
@media (min-width: 700px) {
    .callout-grid {
        grid-template-columns: 1fr 1fr;
    }

    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .top-bar-extra {
        display: inline-flex;
    }
}

@media (min-width: 768px) {
    :root {
        --section-padding-y: 80px;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .coverage-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
    }

    .red-top-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        text-align: left;
        padding-top: 70px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1.3fr;
        gap: 40px;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .about-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .about-image img {
        height: 100%;
        min-height: 380px;
    }

    /* Floating widget expands on hover (desktop) */
    .widget-phone:hover {
        width: 248px;
        background: var(--brand-hover);
        animation: none;
    }

    .widget-phone:hover .text-wrapper {
        opacity: 1;
        max-width: 200px;
    }

    .widget-phone {
        bottom: 30px;
        right: 30px;
        height: 66px;
        width: 66px;
    }

    .widget-phone .icon-wrapper {
        min-width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --section-padding-y: 92px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .scenarios-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Header desktop */
    .mobile-menu-btn {
        display: none;
    }

    .nav-overlay {
        display: none;
    }

    .nav-links {
        position: static;
        height: auto;
        flex-direction: row;
        background: transparent;
        padding: 0;
        width: auto;
        box-shadow: none;
        gap: 30px;
        align-items: center;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        border: none;
        padding: 8px 0;
        font-size: 1rem;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--brand);
        transition: width var(--t-norm);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-close {
        display: none;
    }

    .nav-cta {
        display: flex;
    }

    .nav-cta .btn {
        padding: 12px 22px;
        font-size: .92rem;
    }

    .hero {
        padding: 76px 0 90px;
    }

    .hero-grid {
        align-items: center;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .red-top-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .red-bottom-row {
        border-top: none;
        padding-top: 0;
    }

    .red-info-grid {
        grid-template-columns: 2fr 1.2fr;
        align-items: center;
        gap: 40px;
    }

    .red-item {
        flex-direction: row;
        text-align: left;
    }

    .red-bottom-row .red-item {
        border-left: 1px solid rgba(255, 255, 255, .25);
        padding-left: 36px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1180px;
    }

    .hero h1 {
        font-size: 4.4rem;
    }
}

/* ==========================================================================
   19. M31 / LOCATION-PAGE COMPONENTS
   ========================================================================== */
.lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.bg-dark .lead {
    color: var(--gray-300);
}

/* Generic two-column split */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.split-title {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

/* Check list (used in price/garancia blocks) */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--gray-800);
    font-size: .98rem;
    line-height: 1.55;
}

.check-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--brand);
    font-size: 1.3rem;
}

.check-list strong {
    color: var(--brand-darkest);
}

/* "Amit a Fix Ár tartalmaz" box */
.fixprice {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--brand);
}

.fixprice h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.factor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--gray-300);
}

.factor-item:last-of-type {
    border-bottom: none;
}

.factor-item .factor-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--gray-800);
}

.factor-item .factor-label i {
    color: var(--brand);
    font-size: 1.3rem;
}

.factor-item .factor-val {
    font-weight: 800;
    color: var(--brand);
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

/* Centered area / coverage cards (icon on top) */
.area-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 8px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-norm);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.area-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin: 0 auto 16px;
}

.area-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--brand-darkest);
}

.area-card p {
    margin: 0;
    font-size: .95rem;
    color: var(--text-muted);
}

/* Fleet (Professzionális Flottánk) image cards */
.flotta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 8px;
}

.flotta-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--t-norm);
}

.flotta-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.flotta-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid var(--brand);
}

.flotta-content {
    padding: 26px;
}

.flotta-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.flotta-content p {
    margin: 0;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 8px;
}

.faq-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.faq-card h4 {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 1.1rem;
    color: var(--brand-darkest);
    margin-bottom: 10px;
}

.faq-card h4 i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-card p {
    margin: 0;
    font-size: .96rem;
}

/* Red CTA banner */
.red-banner {
    margin-top: 38px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    border-radius: var(--radius-lg);
    padding: 42px 28px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.red-banner h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.red-banner p {
    color: rgba(255, 255, 255, .92);
    margin-bottom: 22px;
}

.red-banner .btn {
    background: var(--white);
    color: var(--brand);
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}

.red-banner .btn:hover {
    background: var(--gray-100);
    color: var(--brand);
    transform: translateY(-2px);
}

/* Shield / garancia illustration */
.shield-illus {
    text-align: center;
}

.shield-illus i {
    font-size: 7rem;
    color: var(--brand);
}

/* SEO prose block */
.seo-block {
    max-width: 900px;
    margin: 0 auto;
}

.seo-block h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
}

.seo-block ul {
    margin: 16px 0;
    padding-left: 4px;
}

.seo-block li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 9px;
    color: var(--gray-800);
}

.seo-block li::before {
    content: '\2713';
    color: var(--brand);
    position: absolute;
    left: 0;
    font-weight: 800;
}

@media (min-width: 768px) {
    .split {
        grid-template-columns: 1fr 1fr;
        gap: 46px;
    }

    .split-title {
        font-size: 2rem;
    }

    .area-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .flotta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   20. FURGONMENTÉS-SPECIFIC HELPERS
   ========================================================================== */
.split-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* numbered guarantee steps */
.gstep {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.gstep .gnum {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(207, 46, 46, .3);
}

.gstep h4 {
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.gstep p {
    margin: 0;
    font-size: .95rem;
}

/* "Nincsenek extra költségek" box */
.extra-cost-box {
    background: var(--white);
    border: 2px dashed rgba(22, 163, 74, .35);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.extra-cost-box .ok-mark {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
}

/* pill tags (dark sections) */
.pill-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 12px 18px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
}

.pill-tag i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* dark variant of area cards */
.bg-dark .area-card {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .1);
}

.bg-dark .area-card h3 {
    color: #fff;
}

.bg-dark .area-card p {
    color: var(--gray-400);
}

.bg-dark .area-icon {
    background: rgba(252, 185, 0, .12);
    color: var(--accent);
}

/* B2B dark CTA card */
.b2b-cta-card {
    background: radial-gradient(circle at right top, #232333, var(--brand-darkest));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
}

.b2b-cta-card i {
    font-size: 2.6rem;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.b2b-cta-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

/* tip note (light) */
.tip-note {
    margin-top: 22px;
    padding: 18px 22px;
    background: var(--brand-light);
    border-left: 5px solid var(--brand);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: .95rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .split-img {
        height: 100%;
        min-height: 360px;
    }
}

/* Furgonmentés red stats bar: balanced 3-up row (overrides the home 2fr/1.2fr split) */
.red-info-bar .red-stats-3 {
    grid-template-columns: 1fr;
    gap: 28px;
}

.red-info-bar .red-stats-3 .red-item {
    flex-direction: column;
    text-align: center;
}

@media (min-width: 700px) {
    .red-info-bar .red-stats-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fixed-header content offset on desktop (slightly taller header) */
@media (min-width: 1024px) {
    body {
        padding-top: 118px;
    }
}

/* Prevent grid/flex "blowout" on narrow phones (children must be allowed to shrink) */
.split > *,
.pricing-wrap > *,
.flotta-grid > *,
.callout-grid > *,
.area-grid > *,
.scenarios-grid > * {
    min-width: 0;
}

.factor-item {
    flex-wrap: wrap;
    row-gap: 2px;
}

.factor-label {
    min-width: 0;
}

@media (max-width: 420px) {
    .fixprice {
        padding: 26px 20px;
    }
}
