/* =========================================================
   PrimeGuard — Teljes stíluslap
   Mobile-first | CSS Custom Properties | Geist font
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS VÁLTOZÓK
   --------------------------------------------------------- */
:root {
    --blue-primary:  #0051BA;
    --blue-dark:     #002B7F;
    --navy:          #01132B;
    --black:         #000A15;
    --gray:          #DCE0E4;
    --white:         #EFF2F5;

    --bg-main:       #000A15;
    --bg-section:    #01132B;
    --bg-card:       #0D1F3C;
    --bg-input:      #0A1A30;
    --text-primary:  #EFF2F5;
    --text-muted:    #DCE0E4;
    --accent:        #0051BA;
    --accent-hover:  #002B7F;
    --border:        rgba(0, 81, 186, 0.2);
    --success:       #22c55e;
    --danger:        #ef4444;

    --radius-card:   12px;
    --radius-btn:    8px;
    --radius-input:  8px;

    --transition:    150ms ease;
    --transition-md: 250ms ease;
    --transition-lg: 300ms ease-out;

    --container-max: 1280px;
    --container-pad: 0 24px;

    --section-py-mob: 48px;
    --section-py-desk: 80px;
}

/* ---------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

@media (min-width: 640px) { html { font-size: 17px; } }
@media (min-width: 1024px) { html { font-size: 18px; } }

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ---------------------------------------------------------
   3. UTILITIES
   --------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-pad);
}

.section-py {
    padding-top: var(--section-py-mob);
    padding-bottom: var(--section-py-mob);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }

/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-lg), transform var(--transition-lg);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------
   4. TIPOGRÁFIA
   --------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p { line-height: 1.7; color: var(--text-muted); }

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0051BA 0%, #7BB4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(0, 81, 186, 0.3);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 12px;
    box-shadow:
        0 0 16px rgba(0, 81, 186, 0.25),
        0 0 32px rgba(0, 81, 186, 0.10);
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 640px;
}

/* ---------------------------------------------------------
   5. GOMBOK
   --------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 4px 20px rgba(0, 81, 186, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(239, 242, 245, 0.3);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-white {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--gray);
    border-color: var(--gray);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ---------------------------------------------------------
   6. HEADER / NAV
   --------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 10, 21, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition-md), border-color var(--transition-md), box-shadow var(--transition-md);
}

.site-header.scrolled {
    background: rgba(0, 10, 21, 0.97);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 52px;
    width: auto;
}
@media (min-width: 1024px) {
    .nav-logo img { height: 78px; }
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 4px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
    position: relative;
}

.nav-menu a {
    padding: 8px 14px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}
.nav-menu a.current-menu-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-phone {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
    white-space: nowrap;
}
.nav-phone:hover { color: var(--text-primary); }
.nav-phone svg {
    color: var(--accent);
    filter: drop-shadow(0 0 5px rgba(0, 81, 186, 0.65));
}

/* Hamburger */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--transition);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-md), opacity var(--transition-md);
}

body.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 20px;
    border-top: 1px solid var(--border);
    background: rgba(0, 10, 21, 0.98);
}
body.nav-open .nav-mobile { display: flex; }

.nav-mobile a {
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    min-height: 44px;
    display: flex;
    align-items: center;
}
.nav-mobile a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-mobile a.btn-primary { color: #fff; justify-content: center; margin-top: 8px; }

/* ---------------------------------------------------------
   7. FOOTER
   --------------------------------------------------------- */
.site-footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-brand img {
    height: 48px;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 380px;
    line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-nav ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a,
.footer-contact a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--accent); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.footer-contact svg {
    color: var(--accent);
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(0, 81, 186, 0.65));
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}
.footer-bottom p,
.footer-bottom a {
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }

/* ---------------------------------------------------------
   8. HERO SZEKCIÓ
   --------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-main);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 10, 21, 0.88) 0%,
        rgba(0, 10, 21, 0.6) 55%,
        rgba(0, 10, 21, 0.4) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 88px;
    padding-bottom: 48px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    background: linear-gradient(135deg, #0051BA 0%, #7BB4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(0, 81, 186, 0.35);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    margin-bottom: 20px;
    box-shadow:
        0 0 16px rgba(0, 81, 186, 0.25),
        0 0 32px rgba(0, 81, 186, 0.10);
}
.hero-badge span.dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-text h1 span { color: var(--accent); }

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image {
    display: flex;
    justify-content: center;
}
.hero-image img {
    max-width: 420px;
    width: 100%;
    border-radius: var(--radius-card);
    filter: drop-shadow(0 24px 64px rgba(0, 81, 186, 0.25));
}

/* Hero stats bar */
.hero-stats {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hero-stat {
    text-align: center;
}
.hero-stat .stat-value {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.hero-stat .stat-value .suffix,
.hero-stat .stat-value .prefix {
    font-size: 0.6em;
    background: linear-gradient(135deg, #0051BA 0%, #7BB4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(0, 81, 186, 0.8));
}
.hero-stat .stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.hero-stat .stat-value--text {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 600;
    background: linear-gradient(135deg, #0051BA 0%, #7BB4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(0, 81, 186, 0.8));
    line-height: 1.2;
}

/* ---------------------------------------------------------
   9. TERMÉKKÁRTYÁK SZEKCIÓ
   --------------------------------------------------------- */
.products-section {
    padding: var(--section-py-mob) 0;
    position: relative;
    background-image: url('../img/bg-dark-1_180_degree.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 81, 186, 0.12) 0%, transparent 70%),
        rgba(0, 10, 21, 0.68);
    pointer-events: none;
    z-index: 0;
}
.products-section .container {
    position: relative;
    z-index: 1;
}
@media (max-width: 639px) {
    .products-section { background-attachment: scroll; }
}

.section-header {
    margin-bottom: 40px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: rgba(13, 31, 60, 0.80);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: border-color var(--transition-md), transform var(--transition-md), box-shadow var(--transition-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-card:hover {
    border-color: rgba(0, 81, 186, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 81, 186, 0.15);
}

.product-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 81, 186, 0.15);
    border: 1px solid rgba(0, 81, 186, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow:
        0 0 16px rgba(0, 81, 186, 0.25),
        0 0 32px rgba(0, 81, 186, 0.10);
}
.product-card-icon svg {
    filter: drop-shadow(0 0 6px rgba(0, 81, 186, 0.65));
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.product-card .product-subtitle {
    font-size: 0.875rem;
    background: linear-gradient(135deg, #0051BA 0%, #7BB4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.product-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.product-feature-badge {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(0, 81, 186, 0.1);
    border: 1px solid rgba(0, 81, 186, 0.2);
    color: var(--text-muted);
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--accent);
    margin-top: auto;
    transition: gap var(--transition);
}
.product-card-link:hover { gap: 10px; }

/* ---------------------------------------------------------
   10. MIÉRT PRIMEGUARD SZEKCIÓ
   --------------------------------------------------------- */
.why-section {
    background: var(--bg-main);
    padding: var(--section-py-mob) 0;
    position: relative;
    overflow: hidden;
}
.why-section .section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
}

.why-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.why-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 81, 186, 0.15);
    border: 1px solid rgba(0, 81, 186, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow:
        0 0 16px rgba(0, 81, 186, 0.25),
        0 0 32px rgba(0, 81, 186, 0.10);
}
.why-feature-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 81, 186, 0.65));
}
.why-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ---------------------------------------------------------
   11. SZÉLVÉDŐ SZEKCIÓ
   --------------------------------------------------------- */
.windshield-section {
    background: var(--bg-section);
    padding: var(--section-py-mob) 0;
}

.windshield-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.windshield-image img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}

.windshield-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}
.windshield-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 81, 186, 0.1);
    border: 1px solid rgba(0, 81, 186, 0.25);
    color: var(--text-muted);
}
.windshield-badge svg {
    color: var(--accent);
    filter: drop-shadow(0 0 4px rgba(0, 81, 186, 0.7));
}
.windshield-section--alt {
    background: var(--bg-main);
}
.chameleon-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chameleon-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.chameleon-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(0, 81, 186, 0.8);
}

/* ---------------------------------------------------------
   12. GARANCIA RENDSZER SZEKCIÓ
   --------------------------------------------------------- */
.warranty-section {
    padding: var(--section-py-mob) 0;
    position: relative;
    background-image: url('../img/bg-dark-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.warranty-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 81, 186, 0.12) 0%, transparent 70%),
        rgba(0, 10, 21, 0.68);
    pointer-events: none;
    z-index: 0;
}
.warranty-section .container {
    position: relative;
    z-index: 1;
}

.warranty-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.warranty-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.warranty-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 24px;
    background: rgba(13, 31, 60, 0.78);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
}
.warranty-step-num {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow:
        0 0 16px rgba(0, 81, 186, 0.5),
        0 0 32px rgba(0, 81, 186, 0.25);
}
.warranty-step h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.warranty-step p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ---------------------------------------------------------
   13. CTA BANNER
   --------------------------------------------------------- */
.cta-banner {
    background: var(--accent);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(1.375rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 12px;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------------------------------------------------------
   14. FAQ ACCORDION
   --------------------------------------------------------- */
.faq-section {
    background: var(--bg-section);
    padding: var(--section-py-mob) 0;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color var(--transition-md);
}
.faq-item.is-open { border-color: rgba(0, 81, 186, 0.4); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--transition);
    background: none;
    border: none;
    font-family: inherit;
    min-height: 44px;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(0, 81, 186, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: transform var(--transition-md), background var(--transition-md);
}
.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 81, 186, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-lg);
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------------------------------------------------------
   15. OLDAL HERO (belső oldalak)
   --------------------------------------------------------- */
.page-hero {
    padding: 120px 0 60px;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}
.page-hero .section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero h1 {
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    margin-bottom: 16px;
}
.page-hero p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 560px;
    margin: 0 auto;
}

/* ---------------------------------------------------------
   16. TERMÉK SZEKCIÓK (karosszéria oldal)
   --------------------------------------------------------- */
.product-section {
    padding: var(--section-py-mob) 0;
}
.product-section:nth-child(odd) { background: var(--bg-section); }
.product-section:nth-child(even) { background: var(--bg-main); }

.product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.product-image img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 81, 186, 0.12);
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9375rem;
}
.product-specs-table tr {
    border-bottom: 1px solid var(--border);
}
.product-specs-table tr:last-child { border-bottom: none; }
.product-specs-table td {
    padding: 10px 4px;
    color: var(--text-muted);
}
.product-specs-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
    width: 45%;
}

/* ---------------------------------------------------------
   17. ÖSSZEHASONLÍTÓ TÁBLÁZAT
   --------------------------------------------------------- */
.comparison-section {
    background: var(--bg-section);
    padding: var(--section-py-mob) 0;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 560px;
}
.comparison-table th {
    background: var(--bg-card);
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table th:first-child { border-right: 1px solid var(--border); }
.comparison-table td {
    padding: 12px 20px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
    border-right: 1px solid var(--border);
    background: rgba(13, 31, 60, 0.4);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--success); font-size: 1.1em; }

/* ---------------------------------------------------------
   18. FORM STÍLUSOK
   --------------------------------------------------------- */
.form-section {
    background: var(--bg-section);
    padding: var(--section-py-mob) 0;
}

.form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}
.form-label .required {
    color: var(--danger);
    margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--text-primary);
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    min-height: 44px;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(220, 224, 228, 0.4);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 81, 186, 0.15);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23DCE0E4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    font-size: 0.9375rem;
    color: var(--text-muted);
    min-height: 44px;
}
.radio-option input[type="radio"] { accent-color: var(--accent); }
.radio-option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(0, 81, 186, 0.1);
    color: var(--text-primary);
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.checkbox-group input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}
.checkbox-group label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}
.checkbox-group a { color: var(--accent); text-decoration: underline; }

/* ---------------------------------------------------------
   19. KAPCSOLAT OLDAL
   --------------------------------------------------------- */
.contact-section {
    padding: var(--section-py-mob) 0;
    background: var(--bg-main);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 81, 186, 0.15);
    border: 1px solid rgba(0, 81, 186, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow:
        0 0 16px rgba(0, 81, 186, 0.25),
        0 0 32px rgba(0, 81, 186, 0.10);
}
.contact-detail-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 81, 186, 0.65));
}
.contact-detail h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}
.contact-detail a, .contact-detail p {
    font-size: 1rem;
    color: var(--text-primary);
}
.contact-detail a:hover { color: var(--accent); }

.map-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 240px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(0.9) hue-rotate(180deg);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px;
}
.contact-form-card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

/* ---------------------------------------------------------
   20. 404 OLDAL
   --------------------------------------------------------- */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}
.error-code {
    font-size: clamp(4rem, 15vw, 9rem);
    font-weight: 600;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}
.error-page h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.error-page p { max-width: 420px; margin: 0 auto 28px; }

/* ---------------------------------------------------------
   21. NOTICE / ALERT
   --------------------------------------------------------- */
.notice {
    padding: 14px 18px;
    border-radius: var(--radius-input);
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.notice-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}
.notice-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* ---------------------------------------------------------
   22. RESZPONZÍV — TABLET (640px+)
   --------------------------------------------------------- */
@media (min-width: 640px) {
    .hero-stats { grid-template-columns: repeat(4, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .why-features { grid-template-columns: repeat(2, 1fr); }
    .warranty-steps { grid-template-columns: repeat(3, 1fr); }
    .form-row.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------------------------------------------------------
   22b. HEADER VÁLTÓ (1200px+) — nav fér el teljesen
   --------------------------------------------------------- */
@media (min-width: 1200px) {
    .nav-menu { display: flex; }
    .nav-actions { display: flex; }
    .nav-hamburger { display: none; }
}

/* ---------------------------------------------------------
   23. RESZPONZÍV — DESKTOP (1024px+)
   --------------------------------------------------------- */
@media (min-width: 1024px) {
    :root {
        --section-py-mob: var(--section-py-desk);
    }

    .hero-inner { padding-top: 100px; padding-bottom: 80px; }
    .hero-content { grid-template-columns: 6fr 4fr; gap: 64px; }
    .hero-stats { grid-template-columns: repeat(4, 1fr); }

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

    .why-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
    .why-inner.reverse .why-image { order: 2; }
    .why-inner.reverse .why-text { order: 1; }

    .windshield-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
    .windshield-inner.reverse .windshield-image { order: 2; }
    .windshield-inner.reverse .windshield-text { order: 1; }

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

    .product-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
    .product-layout.reverse .product-image { order: 2; }
    .product-layout.reverse .product-text { order: 1; }

    .contact-layout { grid-template-columns: 1fr 1fr; gap: 48px; }

    .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; }
    .footer-brand img { height: 64px; width: auto; }

    .map-wrap { height: 280px; }
}

/* ---------------------------------------------------------
   24. RESZPONZÍV — WIDE (1280px+)
   --------------------------------------------------------- */
@media (min-width: 1280px) {
    .hero-text h1 { font-size: 3.75rem; }
}

/* ---------------------------------------------------------
   25. KAPCSOLAT PARALLAX CTA
   --------------------------------------------------------- */
.contact-parallax-cta {
    padding: var(--section-py-mob) 0;
    background: var(--bg-main);
}

.contact-parallax-cta__panel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
    padding: 64px 32px;
    text-align: center;
}

.contact-parallax-cta__bg {
    position: absolute;
    inset: -110px;
    background-image: url('../img/bg-dark-2.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.contact-parallax-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 10, 21, 0.60) 0%,
        rgba(0, 19, 43, 0.48) 50%,
        rgba(0, 10, 21, 0.60) 100%
    );
    z-index: 1;
}

.contact-parallax-cta__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0, 81, 186, 0.22) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.contact-parallax-cta__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(0, 81, 186, 0.25);
    z-index: 4;
    pointer-events: none;
}

.contact-parallax-cta__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 640px;
    margin: 0 auto;
}

.contact-parallax-cta__logo {
    opacity: 0.9;
    height: 48px;
    width: auto;
}
@media (min-width: 1024px) {
    .contact-parallax-cta__logo { height: 120px; }
}

.contact-parallax-cta__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(0, 81, 186, 0.15);
    border: 1px solid rgba(0, 81, 186, 0.35);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.contact-chip svg {
    color: #002a6e;
    flex-shrink: 0;
}
.contact-chip:hover {
    background: rgba(0, 81, 186, 0.28);
    border-color: rgba(0, 81, 186, 0.6);
    transform: translateY(-1px);
}

.contact-parallax-cta__headline {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.25;
    margin: 0;
}

.contact-parallax-cta__sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
}

@media (min-width: 640px) {
    .contact-parallax-cta__panel { padding: 80px 48px; }
}

@media (min-width: 1024px) {
    .contact-parallax-cta__panel { padding: 96px 80px; }
}

@media (max-width: 639px) {
    .warranty-section { background-attachment: scroll; }
}

/* ---------------------------------------------------------
   26. CSÖKKENTETT MOZGÁS
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ---------------------------------------------------------
   27. FORM SPACING & UTILITIES
   --------------------------------------------------------- */

/* Automatikus térköz form group-ok között (.primeguard-form) */
.primeguard-form > .form-group,
.primeguard-form > .form-row,
.primeguard-form > fieldset {
    margin-bottom: 16px;
}
.primeguard-form > .form-group:last-child,
.primeguard-form > .form-row:last-child,
.primeguard-form > fieldset:last-child {
    margin-bottom: 0;
}

/* Teljes szélességű gomb */
.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------------------------------------------------------
   27b. HÁTTÉRKÉPEK — reszponzív zoom
   --------------------------------------------------------- */
/*
 * cover kis viewporton erősen rázoomol (pl. 390px-es mobilon csak a kép
 * közepső 44%-a látszik). Progresszív background-size csökkentéssel
 * biztosítjuk hogy a kék fényes motívum minden képernyőméreten látható legyen.
 */
@media (max-width: 1100px) {
    .section-bg,
    .hero-bg {
        background-size: 130% auto;
    }
}
@media (max-width: 768px) {
    .section-bg,
    .hero-bg {
        background-size: 110% auto;
    }
}
@media (max-width: 480px) {
    .section-bg,
    .hero-bg {
        background-size: 100% auto;
    }
}

/* ---------------------------------------------------------
   28. MOBIL NAV — wp_nav_menu() struktúra
   --------------------------------------------------------- */
.nav-mobile ul {
    list-style: none;
    display: contents;
}
.nav-mobile li {
    list-style: none;
    display: contents;
}

/* ---------------------------------------------------------
   29. JOGI OLDALAK (Adatvédelmi tájékoztató, Impresszum)
   --------------------------------------------------------- */
.legal-section {
    padding: var(--section-py-mob) 0;
}
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}
.legal-content h2 {
    font-size: clamp(1.15rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem;
}
.legal-content p,
.legal-content li {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}
.legal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { color: var(--text-primary); }
.legal-content code {
    font-size: 0.85em;
    background: rgba(0, 81, 186, 0.12);
    border: 1px solid rgba(0, 81, 186, 0.2);
    border-radius: 4px;
    padding: 1px 6px;
    color: #7BB4FF;
}
