/* ============================================
   RENDES MESTER — main.css
   Klasszikus bizalom + modern tisztaság
   Színpaletta: mélykék + világoskék + krém
   ============================================ */

/* CSS Variables — golden ratio (φ = 1.618) based system */
:root {
    /* Colors */
    --color-primary: #0E3A5F;
    --color-primary-dark: #0A2A45;
    --color-primary-light: #1B5285;
    --color-accent: #4A90C2;
    --color-accent-soft: #D6E4F0;
    --color-bg: #F5EFE0;
    --color-bg-alt: #FAF6EC;
    --color-card: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-muted: #5C6470;
    --color-border: #E5E1D6;
    --color-cta: #D4A574;
    --color-cta-dark: #B88A5A;
    --color-success: #2E7D5B;
    --color-warning: #B8860B;

    /* Typography */
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Type scale — modular φ-based progression */
    --text-xs: 0.764rem;     /* ~12.2px — micro labels */
    --text-sm: 0.875rem;     /* ~14px — small body */
    --text-base: 1rem;       /* 16px — body */
    --text-md: 1.125rem;     /* 18px — lead paragraph */
    --text-lg: 1.236rem;     /* ~19.8px — large body / h4 */
    --text-xl: 1.618rem;     /* ~25.9px — h3, φ × base */
    --text-2xl: 2.058rem;    /* ~33px — between h3-h2 */
    --text-3xl: 2.618rem;    /* ~41.9px — h2, φ² × base */
    --text-4xl: 4.236rem;    /* ~67.8px — h1, φ³ × base (max) */

    /* Line heights */
    --leading-tight: 1.15;
    --leading-snug: 1.3;
    --leading-normal: 1.65;  /* close to φ for body comfort */
    --leading-loose: 1.9;

    /* Letter spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.04em;
    --tracking-wider: 0.08em;

    /* Spacing scale — pure φ progression */
    --space-1: 0.382rem;     /* φ⁻² */
    --space-2: 0.618rem;     /* φ⁻¹ */
    --space-3: 1rem;         /* base */
    --space-4: 1.618rem;     /* φ */
    --space-5: 2.618rem;     /* φ² */
    --space-6: 4.236rem;     /* φ³ */
    --space-7: 6.854rem;     /* φ⁴ */

    /* Semantic spacing (mapped to φ scale) */
    --space-xs: var(--space-1);
    --space-sm: var(--space-2);
    --space-md: var(--space-3);
    --space-lg: var(--space-4);
    --space-xl: var(--space-5);
    --space-2xl: var(--space-6);
    --space-3xl: var(--space-7);

    /* Section padding (fluid: mobile → desktop) */
    --section-pad-y: clamp(3.236rem, 7vw, 5.854rem);
    --section-pad-x: var(--space-4);

    /* Layout */
    --container-max: 1200px;
    --content-max: 65ch;     /* prose width — ~720px, golden of container */
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --shadow-xs: 0 1px 2px rgba(14, 58, 95, 0.04);
    --shadow-sm: 0 2px 6px rgba(14, 58, 95, 0.06), 0 1px 2px rgba(14, 58, 95, 0.04);
    --shadow-md: 0 6px 18px rgba(14, 58, 95, 0.08), 0 2px 5px rgba(14, 58, 95, 0.05);
    --shadow-lg: 0 14px 40px rgba(14, 58, 95, 0.10), 0 4px 10px rgba(14, 58, 95, 0.05);
    --shadow-xl: 0 24px 60px rgba(14, 58, 95, 0.14), 0 8px 16px rgba(14, 58, 95, 0.06);

    /* Transitions */
    --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: var(--leading-normal);
    font-size: var(--text-base);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Typography — φ-based modular scale */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: var(--leading-tight);
    color: var(--color-primary);
    letter-spacing: var(--tracking-tight);
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.058rem, 6vw, var(--text-4xl));
    font-weight: 700;
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.618rem, 4.5vw, var(--text-3xl));
    line-height: var(--leading-snug);
}

h3 {
    font-size: clamp(1.236rem, 2.6vw, var(--text-xl));
    line-height: var(--leading-snug);
}

h4 {
    font-size: var(--text-md);
    font-weight: 600;
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-normal);
}

h5 {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-primary);
}

p {
    color: var(--color-text);
    text-wrap: pretty;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(var(--space-3), 4vw, var(--space-4));
}

/* Buttons — φ-aware proportions */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.764rem 1.236rem;     /* φ-related vertical/horizontal ratio */
    font-family: inherit;
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--t-fast);
    pointer-events: none;
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1rem 1.618rem;
    font-size: var(--text-base);
}

.btn-sm {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
}

.btn-block {
    width: 100%;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 239, 224, 0.85);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    transition: border-color var(--t-base), background var(--t-base);
}

.site-header.is-scrolled {
    border-bottom-color: var(--color-border);
    background: rgba(245, 239, 224, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-3);
    gap: var(--space-3);
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    transition: opacity var(--t-base);
}

.brand:hover {
    opacity: 0.85;
}

.brand-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--color-primary);
    letter-spacing: var(--tracking-tight);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-top: 3px;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
}

.site-nav a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--t-fast);
}

.site-nav a:hover {
    color: var(--color-primary);
}

.site-nav a.btn {
    color: var(--color-bg);
}

.site-nav a.btn:hover {
    color: var(--color-bg);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--t-base);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu open */
.site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md);
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
}

.site-nav.is-open a {
    padding: 0.5rem 0;
}

.site-nav.is-open a.btn {
    margin-top: 0.5rem;
}

/* HERO — φ proportions */
.hero {
    padding: clamp(4.236rem, 10vw, 7rem) 0 clamp(3.236rem, 8vw, 5.854rem);
    background:
        radial-gradient(ellipse 80% 50% at 80% 0%, rgba(74, 144, 194, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(212, 165, 116, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: -1px -1px;
    opacity: 0.18;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 740px;       /* ~62% of container — golden ratio */
    z-index: 1;
}

.hero-eyebrow {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-3);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    background: rgba(74, 144, 194, 0.10);
    border-radius: 100px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(74, 144, 194, 0.18);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    margin-bottom: var(--space-4);
}

.hero h1 .highlight {
    color: var(--color-accent);
    position: relative;
    white-space: nowrap;
    background: linear-gradient(180deg, transparent 60%, rgba(74, 144, 194, 0.18) 60%);
    padding: 0 0.1em;
}

.hero-text {
    font-size: var(--text-md);
    color: var(--color-text-muted);
    margin-bottom: var(--space-5);
    max-width: 60ch;
    line-height: var(--leading-normal);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-4);
    list-style: none;
    padding: 0;
}

.hero-trust li {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    font-weight: 500;
    padding-left: 1.4rem;
    position: relative;
}

.hero-trust li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* INTRO / About section */
.section-intro {
    padding: clamp(3rem, 6vw, var(--space-2xl)) 0;
    background: var(--color-bg);
    position: relative;
}

.section-intro::before,
.section-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    transform: translateX(-50%);
}

.section-intro::before { top: 0; }
.section-intro::after { bottom: 0; }

.intro-content {
    max-width: 740px;     /* φ proportion */
    margin: 0 auto;
    text-align: center;
}

.intro-content .section-eyebrow {
    margin-bottom: var(--space-3);
}

.intro-content h2 {
    margin-bottom: var(--space-4);
}

.intro-text {
    font-size: var(--text-md);
    color: var(--color-text-muted);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-3);
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Educational note in flagship card */
.educational-note {
    background: rgba(74, 144, 194, 0.08);
    border-left: 4px solid var(--color-accent);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--color-text);
    margin-top: var(--space-md);
}

.educational-note strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Form photo note */
.form-photo-note {
    background: var(--color-bg);
    border: 1px dashed var(--color-border);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.form-photo-note strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.form-photo-note a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 500;
}

/* Footer legal */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(245, 239, 224, 0.7);
    text-decoration: underline;
    transition: color var(--t-fast);
}

.footer-legal a:hover {
    color: var(--color-cta);
}

.footer-legal .separator {
    color: rgba(245, 239, 224, 0.4);
}

/* SECTION basics */
.section {
    padding: var(--section-pad-y) 0;
}

.section-bg-alt {
    background: var(--color-bg-alt);
}

.section-head {
    text-align: center;
    max-width: 720px;     /* φ-proportion to container 1200px */
    margin: 0 auto clamp(2.618rem, 5vw, var(--space-2xl));
}

.section-eyebrow {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-3);
    display: inline-block;
}

.section-head h2 {
    margin-bottom: var(--space-3);
}

.section-lead {
    font-size: var(--text-md);
    color: var(--color-text-muted);
    max-width: 60ch;
    margin: 0 auto;
    line-height: var(--leading-normal);
}

/* SERVICES */
.section-services {
    background: var(--color-bg-alt);
}

.service-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-soft);
}

/* Flagship card (Profi tisztítás) */
.service-card-flagship {
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(74, 144, 194, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #FFFFFF 0%, #FAFCFF 100%);
    border: 1px solid var(--color-accent-soft);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.service-card-flagship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.service-flag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-primary);
    color: var(--color-bg);
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-3);
}

.service-flag::before {
    content: '★';
    color: var(--color-cta);
    font-size: 0.85em;
}

.service-card-flagship h3 {
    font-size: clamp(1.5rem, 3vw, var(--text-2xl));
    margin-bottom: var(--space-2);
}

.service-intro {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-normal);
    margin-bottom: var(--space-4);
    max-width: 65ch;
}

.subservices {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .subservices {
        grid-template-columns: repeat(3, 1fr);
    }
}

.subservice {
    background: var(--color-bg);
    padding: var(--space-4);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: transform var(--t-base), border-color var(--t-base);
    display: flex;
    flex-direction: column;
}

.subservice:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent-soft);
}

.subservice-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: var(--color-bg);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    box-shadow: 0 4px 8px rgba(14, 58, 95, 0.2);
}

.subservice-icon svg {
    width: 22px;
    height: 22px;
}

.subservice h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.subservice p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
    line-height: var(--leading-normal);
    flex: 1;
}

.price-note {
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--text-sm);
    margin-top: auto;
    padding-top: var(--space-2);
    border-top: 1px dashed var(--color-border);
}

.price-note-large {
    font-size: var(--text-md);
    color: var(--color-cta);
    font-weight: 700;
    border-top: none;
    padding-top: var(--space-2);
}

.safety-caveat {
    background: rgba(184, 134, 11, 0.08);
    border-left: 4px solid var(--color-warning);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--color-text);
    margin-top: var(--space-md);
}

.safety-caveat strong {
    color: var(--color-warning);
}

/* Standard service grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card-intro {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card ul {
    margin-bottom: 1rem;
}

.service-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.service-card-package {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-bg);
}

.service-card-package h3,
.service-card-package p {
    color: var(--color-bg);
}

.service-card-package .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-bg);
}

.service-card-package .price-note-large {
    color: var(--color-cta);
}

/* WHY ME */
.section-why {
    background: var(--color-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-item {
    background: var(--color-card);
    padding: var(--space-4);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.why-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.why-icon {
    width: 36px;
    height: 36px;
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-md);
    margin-bottom: var(--space-2);
    box-shadow: 0 0 0 4px rgba(46, 125, 91, 0.12);
}

.why-item h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.why-item p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

/* PROCESS */
.section-process {
    background: var(--color-bg-alt);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    counter-reset: step;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
        z-index: 0;
    }
}

.process-step {
    text-align: center;
    padding: var(--space-3);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 700;
    margin: 0 auto var(--space-3);
    box-shadow: var(--shadow-md), 0 0 0 6px var(--color-bg-alt);
    transition: transform var(--t-base);
}

.process-step:hover .step-number {
    transform: scale(1.06);
}

.process-step h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.process-step p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

/* AREA / ZONES */
.section-area {
    background: var(--color-bg);
}

/* Térkép wrapper */
.zone-map-wrapper {
    margin-bottom: var(--space-5);
    position: relative;
}

#zoneMap {
    height: clamp(320px, 45vw, 460px);
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    background: var(--color-bg-alt);
    z-index: 1;
}

/* Leaflet override-ok hogy illeszkedjen a brandhez */
.leaflet-container {
    font-family: var(--font-sans) !important;
    border-radius: var(--radius-lg);
}

.leaflet-control-zoom a {
    background-color: white !important;
    color: var(--color-primary) !important;
    border-color: var(--color-border) !important;
    font-weight: 600;
}

.leaflet-control-zoom a:hover {
    background-color: var(--color-bg) !important;
}

.leaflet-control-attribution {
    font-size: 10px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    color: var(--color-text-muted) !important;
}

.leaflet-control-attribution a {
    color: var(--color-accent) !important;
}

/* Markerek */
.map-marker-wrap {
    background: transparent !important;
    border: none !important;
}

.map-marker {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 2px white, 0 2px 6px rgba(14, 58, 95, 0.3);
    transition: transform 200ms ease;
}

.map-marker-wrap:hover .map-marker {
    transform: scale(1.4);
}

.map-marker-home {
    box-shadow: 0 0 0 3px white, 0 3px 10px rgba(14, 58, 95, 0.4);
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: home-pulse 2.4s ease-in-out infinite;
}

.map-marker-home svg {
    width: 12px;
    height: 12px;
}

@keyframes home-pulse {
    0%, 100% { box-shadow: 0 0 0 3px white, 0 3px 10px rgba(14, 58, 95, 0.4), 0 0 0 0 rgba(14, 58, 95, 0.4); }
    50% { box-shadow: 0 0 0 3px white, 0 3px 10px rgba(14, 58, 95, 0.4), 0 0 0 12px rgba(14, 58, 95, 0); }
}

.map-tooltip {
    font-family: var(--font-sans) !important;
    font-size: var(--text-xs) !important;
    font-weight: 600 !important;
    color: var(--color-bg) !important;
    background: var(--color-primary) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 4px 10px !important;
    box-shadow: var(--shadow-sm) !important;
}

.map-tooltip::before {
    border-top-color: var(--color-primary) !important;
}

/* Jelmagyarázat */
.zone-map-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-4);
    margin-top: var(--space-3);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px white, 0 1px 3px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.legend-dot-home {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    box-shadow: 0 0 0 2px white, 0 0 0 4px rgba(14, 58, 95, 0.2);
}

.legend-dot-a { background: var(--color-success); }
.legend-dot-b { background: var(--color-accent); }
.legend-dot-c { background: var(--color-warning); }

.zones {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .zones {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zone {
    background: var(--color-card);
    padding: var(--space-4);
    border-radius: var(--radius);
    border-top: 3px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.zone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.zone-a {
    border-top-color: var(--color-success);
}

.zone-b {
    border-top-color: var(--color-accent);
}

.zone-c {
    border-top-color: var(--color-warning);
}

.zone h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.zone-note {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: var(--space-3);
}

.zone-cities {
    color: var(--color-text);
    font-size: var(--text-sm);
    line-height: var(--leading-loose);
}

/* PRICING */
.section-pricing {
    background: var(--color-bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: var(--color-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-soft);
}

.pricing-card h3 {
    margin-bottom: var(--space-2);
}

.pricing-note {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    font-style: italic;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

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

.pricing-list li span {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.pricing-list li strong {
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
    font-size: var(--text-base);
}

.pricing-disclaimer {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    max-width: 65ch;
    margin: var(--space-4) auto 0;
    line-height: var(--leading-loose);
}

/* CONTACT */
.section-contact {
    background: var(--color-bg);
}

/* Three big contact cards */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    color: var(--color-text);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--t-base);
}

.contact-card:hover .contact-card-icon {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: scale(1.05);
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
}

.contact-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-card-value {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.contact-card-note {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Helper section: what to mention */
.contact-helper {
    background: var(--color-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact-helper-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .contact-helper-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-helper h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-helper-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-helper-list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-helper-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.contact-helper-note {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-helper-note strong {
    color: var(--color-primary);
}

.contact-helper-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-helper-hours svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-helper-hours strong {
    color: var(--color-primary);
}

/* FOOTER */
.site-footer {
    background: var(--color-primary);
    color: var(--color-bg);
    padding: var(--space-2xl) 0 var(--space-4);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent) 50%, transparent);
    opacity: 0.5;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 1.618fr 1fr 1fr 1.2fr;     /* φ proportion for the brand column */
        gap: var(--space-5);
    }
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
    color: var(--color-bg);
    letter-spacing: var(--tracking-tight);
}

.footer-tagline {
    color: rgba(245, 239, 224, 0.7);
    font-size: var(--text-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links h5 {
    color: var(--color-bg);
    margin-bottom: var(--space-2);
    font-size: var(--text-xs);
}

.footer-links a {
    color: rgba(245, 239, 224, 0.75);
    font-size: var(--text-sm);
    transition: color var(--t-fast), transform var(--t-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-cta);
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 239, 224, 0.12);
    padding-top: var(--space-4);
    text-align: center;
    color: rgba(245, 239, 224, 0.55);
    font-size: var(--text-xs);
}

/* Desktop nav */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        display: flex;
    }
}

/* Mobile only — show toggle */
@media (max-width: 1023px) {
    .site-nav {
        display: none;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   SUBPAGE STYLES (szolgaltatasok/...)
   ============================================ */

/* Container narrow — proza oldalakhoz */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--color-bg-alt);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    list-style: none;
    color: var(--color-text-muted);
}

.breadcrumb ol li {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.breadcrumb ol li:not(:last-child)::after {
    content: '›';
    color: var(--color-text-muted);
    margin-left: var(--space-2);
}

.breadcrumb ol li a {
    color: var(--color-primary-light);
    transition: color var(--t-fast);
}

.breadcrumb ol li a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.breadcrumb ol li[aria-current="page"] {
    color: var(--color-primary);
    font-weight: 600;
}

/* Subpage hero */
.subpage-hero {
    padding: clamp(2.618rem, 6vw, 4.236rem) 0 clamp(2rem, 5vw, 3.236rem);
    background:
        radial-gradient(ellipse 80% 50% at 80% 0%, rgba(74, 144, 194, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(212, 165, 116, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.subpage-hero .hero-content {
    max-width: 820px;
}

.subpage-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: var(--space-4);
}

.subpage-hero .highlight {
    color: var(--color-accent);
    background: linear-gradient(180deg, transparent 60%, rgba(74, 144, 194, 0.18) 60%);
    padding: 0 0.1em;
}

/* Content sections */
.subpage-main {
    background: var(--color-bg);
}

.content-section {
    padding: clamp(2.618rem, 5vw, 4rem) 0;
    background: var(--color-bg);
}

.content-section-alt {
    background: var(--color-bg-alt);
}

.content-section h2 {
    margin-bottom: var(--space-4);
}

.content-section h3 {
    color: var(--color-primary);
    margin-top: var(--space-4);
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
}

.content-section p {
    margin-bottom: var(--space-3);
    line-height: var(--leading-loose);
    color: var(--color-text);
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.content-section a:hover {
    color: var(--color-primary);
}

.content-section strong {
    color: var(--color-primary);
    font-weight: 600;
}

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

/* Content lists */
.content-list {
    list-style: none;
    padding: 0;
    margin: var(--space-3) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.content-list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text);
    line-height: var(--leading-normal);
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.content-list-warn li::before {
    content: '⚠';
    color: var(--color-warning);
    font-size: 0.9em;
}

.content-note {
    background: rgba(74, 144, 194, 0.08);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    margin-top: var(--space-4);
    color: var(--color-text);
    font-size: var(--text-sm);
}

/* Comparison cols (pure water vs traditional) */
.comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin: var(--space-4) 0;
}

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

.comparison-col {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-card);
}

.comparison-col h4 {
    margin-bottom: var(--space-3);
    font-size: var(--text-md);
}

.comparison-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.comparison-col li {
    padding-left: 1.5rem;
    position: relative;
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--color-text);
}

.comparison-bad {
    background: rgba(184, 134, 11, 0.04);
    border-color: rgba(184, 134, 11, 0.25);
}

.comparison-bad h4 {
    color: var(--color-warning);
}

.comparison-bad li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--color-warning);
    font-weight: 700;
}

.comparison-good {
    background: rgba(46, 125, 91, 0.04);
    border-color: rgba(46, 125, 91, 0.3);
}

.comparison-good h4 {
    color: var(--color-success);
}

.comparison-good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* Pricing table */
.pricing-table {
    background: var(--color-card);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    margin: var(--space-4) 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.pricing-row strong {
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
}

.pricing-row-highlight {
    background: rgba(212, 165, 116, 0.10);
}

.pricing-row-highlight strong {
    color: var(--color-cta-dark);
}

.pricing-note {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-top: var(--space-3);
    font-style: italic;
}

/* Process list (numbered) */
.process-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
    counter-reset: process;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.process-list li {
    counter-increment: process;
    padding-left: 4rem;
    position: relative;
    min-height: 3rem;
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.618rem;
    height: 2.618rem;
    background: var(--color-primary);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: var(--text-md);
    box-shadow: var(--shadow-sm);
}

.process-list li strong {
    display: block;
    margin-bottom: var(--space-1);
    color: var(--color-primary);
    font-size: var(--text-md);
}

.process-list li p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin: 0;
    line-height: var(--leading-normal);
}

/* FAQ accordion */
.faq {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: var(--space-2);
    overflow: hidden;
    transition: border-color var(--t-base);
}

.faq[open] {
    border-color: var(--color-accent-soft);
    box-shadow: var(--shadow-sm);
}

.faq summary {
    padding: var(--space-3) var(--space-4);
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    transition: background var(--t-fast);
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-accent);
    transition: transform var(--t-base);
    flex-shrink: 0;
    line-height: 1;
}

.faq[open] summary::after {
    transform: rotate(45deg);
}

.faq summary:hover {
    background: var(--color-bg-alt);
}

.faq p {
    padding: 0 var(--space-4) var(--space-3);
    color: var(--color-text-muted);
    line-height: var(--leading-normal);
    font-size: var(--text-sm);
    margin: 0;
}

/* Related services */
.related-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

@media (min-width: 768px) {
    .related-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    background: var(--color-card);
    padding: var(--space-4);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    text-decoration: none !important;
    color: var(--color-text) !important;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.related-card h4 {
    color: var(--color-primary);
    margin: 0;
}

.related-card p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin: 0;
    flex: 1;
}

.related-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-top: var(--space-2);
}

/* Final CTA at bottom of subpage */
.content-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-bg);
    padding: clamp(2.618rem, 6vw, 4.236rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-cta) 100%);
}

.content-cta h2 {
    color: var(--color-bg);
    margin-bottom: var(--space-3);
}

.content-cta p {
    color: rgba(245, 239, 224, 0.9);
    margin-bottom: var(--space-4);
    font-size: var(--text-md);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
}

.content-cta .btn-outline {
    color: var(--color-bg);
    border-color: rgba(245, 239, 224, 0.4);
}

.content-cta .btn-outline:hover {
    background: var(--color-bg);
    color: var(--color-primary);
    border-color: var(--color-bg);
}
