/* ============================================================
   VARMEPUMPEEKSPERTEN — Modern Professional Theme
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --header-offset: 80px;
    --adminbar-offset: 0px;
    --safe-top-offset: env(safe-area-inset-top, 0px);
    --color-primary: #0066ff;
    --color-primary-dark: #0052cc;
    --color-primary-light: #e6f0ff;
    --color-accent: #00c9a7;
    --color-dark: #0a1628;
    --color-gray-900: #111827;
    --color-gray-800: #1f2937;
    --color-gray-700: #374151;
    --color-gray-600: #4b5563;
    --color-gray-500: #6b7280;
    --color-gray-400: #9ca3af;
    --color-gray-300: #d1d5db;
    --color-gray-200: #e5e7eb;
    --color-gray-100: #f3f4f6;
    --color-gray-50: #f9fafb;
    --color-white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-700);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
    color: var(--color-gray-900);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-gradient {
    color: var(--color-accent); /* fallback when gradient is overridden by Dark Reader or forced-colors */
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    forced-color-adjust: none;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--color-gray-500);
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(255,255,255,.15);
    color: var(--color-white);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0,102,255,.35);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(0,102,255,.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.8);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

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

.btn-full {
    width: 100%;
}

/* ── Header / Navigation ──────────────────────────────────── */
.site-header {
    position: fixed;
    top: calc(var(--adminbar-offset) + var(--safe-top-offset));
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.site-header.scrolled .site-logo,
.site-header.scrolled .nav-link {
    color: var(--color-gray-900);
}

.site-header.scrolled .hamburger-line {
    background: var(--color-gray-900);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-white);
    z-index: 1001;
    transition: var(--transition);
}

.site-logo strong {
    font-weight: 700;
}

.site-logo-image {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
    background: rgba(255,255,255,.1);
}

.site-logo svg {
    flex-shrink: 0;
}

/* Desktop nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255,255,255,.1);
}

.site-header.scrolled .nav-link {
    color: var(--color-gray-600);
}

.site-header.scrolled .nav-link:hover {
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.nav-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 10px 22px;
    border-radius: var(--radius-md);
    margin-left: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-overlay.active {
    display: block;
    opacity: 1;
}

/* ── Hero — Split Layout ──────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    color-scheme: dark; /* tells Dark Reader this section is intentionally dark */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--color-dark);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,.97) 0%, rgba(0,30,80,.9) 40%, rgba(0,60,140,.7) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-offset) + var(--adminbar-offset) + var(--safe-top-offset) + 16px);
}

body.admin-bar {
    --adminbar-offset: 32px;
}

@media (max-width: 782px) {
    body.admin-bar {
        --adminbar-offset: 46px;
    }
}

.hero-owner-top {
    width: 100%;
    margin-top: 0;
    margin-bottom: 32px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow-2xl);
}

.hero-owner-top img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 0 0 80px;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    background: rgba(0,201,167,.1);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    border: 1px solid rgba(0,201,167,.2);
}

.hero-badge svg {
    flex-shrink: 0;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust { margin-top: 8px; }

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

.trust-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.06);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,.08);
}

/* Hero visual — product card and floating stats */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-product-card {
    display: block;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    transition: var(--transition);
}

.hero-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
}

.hero-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.hero-product-img {
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
}

.product-illustration {
    width: 100%;
    height: auto;
    max-height: 220px;
}

.hero-product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-product-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.hero-product-info strong {
    font-size: 1.15rem;
    color: var(--color-white);
}

.hero-product-rating {
    font-size: 0.85rem;
    color: rgba(255,255,255,.45);
}

.hero-floating-stats {
    display: flex;
    gap: 16px;
}

.floating-stat {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-stat svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.floating-stat strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-white);
    font-weight: 600;
    line-height: 1.3;
}

.floating-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,.4);
}

/* ── Why Section (replaces Services) ──────────────────────── */
.why-section {
    padding: 120px 0;
    background: var(--color-dark);
}

.why-section .section-header h2 {
    color: var(--color-white);
}

.why-section .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: var(--transition);
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.why-card-inner {
    padding: 32px 28px;
}

.why-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--color-dark), #001e50);
    border: none;
    color-scheme: dark;
}

.why-card--featured .why-icon {
    background: rgba(0,201,167,.15);
    color: var(--color-accent);
}

.why-card--featured h3 {
    color: var(--color-white);
    font-size: 1.5rem;
}

.why-card--featured p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    max-width: 640px;
}

.why-card--featured .why-card-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 40px 36px;
}

.why-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,201,167,.1);
    border: 1px solid rgba(0,201,167,.2);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    min-width: 140px;
    text-align: center;
}

.why-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.why-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,.5);
    margin-top: 6px;
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.why-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

.why-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}

.why-bottom-cta p {
    font-size: 1rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

/* ── Models / Products ────────────────────────────────────── */
.financing-banner-section {
    background: var(--color-white);
    padding: 28px 0;
}

.financing-banner {
    padding: 0;
}

.financing-banner-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 30px 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #07172f 0%, #0d2d63 55%, #008c74 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}

.financing-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 34%);
    pointer-events: none;
}

.financing-banner-copy,
.financing-banner-meta {
    position: relative;
    z-index: 1;
}

.financing-banner-copy h2 {
    color: var(--color-white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 10px 0 10px;
}

.financing-banner-copy p {
    color: rgba(255,255,255,.8);
    max-width: 640px;
}

.financing-banner-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.models {
    padding: 120px 0;
}

.models-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.model-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.model-card--highlight {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0,102,255,.08);
}

.model-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.model-image--gradient-warm {
    background: linear-gradient(135deg, #faf5f0, #f0e6d8);
}

.model-image--gradient-cool {
    background: linear-gradient(135deg, #f0f2f5, #e2e8f0);
}

.model-image--gradient-blue {
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image img,
.model-card:hover .model-placeholder svg {
    transform: scale(1.03);
}

.model-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.model-placeholder svg {
    width: 100%;
    height: auto;
    max-height: 180px;
    transition: transform 0.5s ease;
}

.model-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.model-info h3 {
    min-height: 3.2rem;
    margin-bottom: 10px;
}

.model-excerpt {
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6.4em;
}

.model-specs-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.model-specs-mini span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    font-size: 0.82rem;
    color: var(--color-gray-700);
}

.model-price {
    margin-top: auto;
    margin-bottom: 16px;
}

.model-info .btn {
    align-self: flex-start;
}

.model-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.model-badge--gold {
    color: #92400e;
    background: #fef3c7;
}

.model-badge--green {
    color: #166534;
    background: #dcfce7;
}

.model-info h3 {
    margin-bottom: 10px;
}

.model-info p,
.model-excerpt {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.model-specs-mini {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.model-specs-mini span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-600);
    background: var(--color-gray-100);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.model-specs-mini svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.models-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ── Financing Page ──────────────────────────────────────── */
.financing-page {
    padding-top: var(--header-offset);
}

.financing-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071224 0%, #0b1f46 52%, #0b5b64 100%);
    color: var(--color-white);
    padding: 88px 0 96px;
}

.financing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 30%), radial-gradient(circle at bottom left, rgba(0,201,167,.16), transparent 32%);
    pointer-events: none;
}

.financing-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .8fr);
    gap: 40px;
    align-items: center;
}

.financing-hero h1 {
    color: var(--color-white);
    max-width: 14ch;
    margin: 12px 0 18px;
}

.financing-hero p {
    color: rgba(255,255,255,.82);
    font-size: 1.04rem;
    max-width: 62ch;
}

.financing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.financing-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.financing-bullets span {
    padding: 9px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.92);
    font-size: 0.92rem;
    font-weight: 600;
}

.financing-hero-card {
    display: grid;
    gap: 18px;
}

.financing-hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 250px;
}

.financing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.financing-highlight-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-xl);
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
}

.financing-highlight-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.1);
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.financing-highlight-card ol {
    margin: 0;
    padding-left: 20px;
    list-style: decimal;
}

.financing-highlight-card li {
    margin-bottom: 12px;
    color: var(--color-white);
}

.financing-highlight-card h3 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.financing-highlight-card p {
    margin-top: 16px;
    color: rgba(255,255,255,.78);
    font-size: 0.96rem;
}

.financing-benefits,
.financing-models {
    padding: 120px 0;
}

.financing-benefits {
    background: var(--color-gray-50);
}

.financing-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.financing-benefit-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.financing-benefit-card h3 {
    margin-bottom: 12px;
}

.financing-benefit-card p {
    color: var(--color-gray-600);
}

.financing-info-strip {
    padding: 0 0 24px;
    background: var(--color-gray-50);
}

.financing-info-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.financing-info-strip-inner strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--color-gray-900);
}

.financing-info-strip-inner p {
    color: var(--color-gray-600);
}

.financing-cta-block {
    padding: 0 0 80px;
}

.financing-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 36px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #09162d, #0c4370);
    color: var(--color-white);
}

.financing-cta-box h2 {
    color: var(--color-white);
    margin: 10px 0 10px;
}

.financing-cta-box p {
    color: rgba(255,255,255,.78);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-gray-700);
    border: 2px solid var(--color-gray-300);
}

.btn-outline-dark:hover {
    background: var(--color-gray-900);
    color: var(--color-white);
    border-color: var(--color-gray-900);
}

/* ── Process Section ──────────────────────────────────────── */
.process-section {
    padding: 120px 0;
    background: var(--color-gray-50);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,102,255,.3);
}

.process-step-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 0.88rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

.process-connector {
    flex: 0 0 auto;
    width: 60px;
    height: 2px;
    background: var(--color-gray-300);
    margin-top: 28px;
}

/* ── About Section (replaces About-CTA) ──────────────────── */
.about-section {
    padding: 120px 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.about-content > p {
    font-size: 1rem;
    color: var(--color-gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-200);
}

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

.about-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.about-stat span {
    display: block;
    font-size: 0.78rem;
    color: var(--color-gray-500);
    margin-top: 6px;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--color-gray-200);
    transition: var(--transition);
}

.about-feature-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,102,255,.06);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-gray-900);
    margin-bottom: 4px;
}

.about-feature-item p {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.contact-info-card {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-gray-200);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.82rem;
    color: var(--color-gray-900);
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 0.88rem;
    color: var(--color-gray-500);
    margin: 0;
}

/* Contact form */
.contact-form-wrapper {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--color-gray-200);
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-family);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
    color: var(--color-gray-800);
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,102,255,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group--wide { flex: 2; }
.form-group--narrow { flex: 1; min-width: 100px; }

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--color-gray-400);
    line-height: 1.5;
    margin-top: -8px;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,.7);
    color-scheme: dark;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.footer-logo strong {
    font-weight: 700;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,.5);
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 12px;
    color: rgba(255,255,255,.5);
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: .5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,.35);
}

/* ── Single Post / Page ───────────────────────────────────── */
.heat-pump-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.heat-pump-brand-logo,
.archive-brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.heat-pump-brand-logo img,
.archive-brand-logo img {
    width: min(220px, 65vw);
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-md);
    background: var(--color-white);
    padding: 6px;
}

.heat-pump-single h1 {
    margin-bottom: 24px;
}

.heat-pump-offer-banner {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f766e, #155e75);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
    text-decoration: none;
}

.heat-pump-offer-banner:hover {
    filter: brightness(1.05);
}

.heat-pump-content {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 48px;
}

.heat-pump-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 10px 0 26px;
    border: 1px solid var(--color-gray-200);
}

.heat-pump-content h2 {
    margin-top: 26px;
    margin-bottom: 10px;
}

.heat-pump-content h3 {
    font-size: 1.05rem;
    color: var(--color-gray-700);
    margin: 0 0 8px;
}

.heat-pump-meta {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-gray-200);
}

.heat-pump-meta h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.heat-pump-meta ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.heat-pump-meta li {
    font-size: 0.95rem;
    color: var(--color-gray-600);
}

.heat-pump-meta li strong {
    color: var(--color-gray-900);
}

/* Content area for page template */
.content-area {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

/* ── Archive ──────────────────────────────────────────────── */
.heat-pump-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.heat-pump-archive h1 {
    margin-bottom: 40px;
}

.heat-pump-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.heat-pump-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.heat-pump-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.heat-pump-item a {
    display: block;
    padding: 28px;
}

.heat-pump-item h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.heat-pump-thumbnail {
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.heat-pump-excerpt {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

/* ── Front-page section wrappers ──────────────────────────── */
.hero-section,
.services-section,
.models-section,
.parallax-section,
.contact-section {
    /* Sections handle their own padding */
}

/* ── Site main (index / blog) ─────────────────────────────── */
.site-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

/* ── Service Page ─────────────────────────────────────────── */
.service-page {
    background:
        radial-gradient(900px 420px at 95% 0%, rgba(0, 201, 167, 0.14), transparent 58%),
        radial-gradient(640px 380px at 0% 12%, rgba(0, 102, 255, 0.14), transparent 52%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f8fafc 100%);
}

.service-hero {
    padding: 130px 0 84px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 34px;
    align-items: stretch;
}

.service-hero-copy h1 {
    max-width: 16ch;
    margin-bottom: 16px;
}

.service-hero-copy p {
    max-width: 56ch;
    font-size: 1.04rem;
    color: var(--color-gray-600);
}

.service-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-btn-light {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0, 22, 40, .12);
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
}

.service-btn-light:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-hero-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-hero-meta span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: .01em;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0, 22, 40, .08);
    color: var(--color-gray-700);
}

.service-overview-card {
    background: linear-gradient(150deg, #09203f 0%, #183b66 52%, #0f766e 100%);
    color: rgba(255,255,255,.92);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 24px 48px rgba(9, 32, 63, .34);
}

.service-overview-label {
    display: inline-flex;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    margin-bottom: 14px;
}

.service-overview-card h2 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-overview-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.service-overview-card li {
    position: relative;
    padding-left: 22px;
    line-height: 1.5;
}

.service-overview-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .58em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3dd5f3;
    box-shadow: 0 0 0 4px rgba(61, 213, 243, .17);
}

.service-overview-card p {
    color: rgba(255,255,255,.82);
    font-size: .92rem;
}

.service-why,
.service-contact {
    padding: 84px 0;
}

.service-include {
    padding: 74px 0 84px;
}

.service-reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-reason-card {
    background: linear-gradient(140deg, rgba(255,255,255,.96), rgba(244, 249, 255, .96));
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 12px 28px rgba(2, 30, 84, .07);
}

.service-reason-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.service-reason-card p {
    color: var(--color-gray-600);
}

.service-include-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: start;
}

.service-include-copy p {
    margin-top: 10px;
    color: var(--color-gray-600);
    max-width: 58ch;
}

.service-checklist {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.service-checklist li {
    position: relative;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, .18);
    background: rgba(255,255,255,.86);
    padding: 14px 14px 14px 46px;
    line-height: 1.45;
}

.service-checklist li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 6px 16px rgba(0, 102, 255, .25);
}

.service-process {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: var(--radius-xl);
    padding: 26px;
    box-shadow: var(--shadow-lg);
}

.service-process h3 {
    font-size: 1.22rem;
    margin-bottom: 16px;
}

.service-step-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
}

.service-step > span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .88rem;
    color: #fff;
    background: linear-gradient(135deg, #0066ff, #00a9b4);
    box-shadow: 0 8px 18px rgba(0, 102, 255, .32);
}

.service-step strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-gray-900);
}

.service-step p {
    color: var(--color-gray-600);
    font-size: .93rem;
    line-height: 1.55;
}

.service-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: start;
}

.service-form-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
    border-color: rgba(0, 102, 255, .2);
}

.service-form-success {
    margin: 0 auto 26px;
    max-width: 860px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, .45);
    background: rgba(209, 250, 229, .55);
    color: #065f46;
    padding: 14px 16px;
    font-weight: 600;
}

.service-contact-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(17, 24, 39, .09);
    background: linear-gradient(170deg, #fff, #f8fafc);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.service-contact-card h3 {
    margin-bottom: 10px;
}

.service-contact-card p {
    color: var(--color-gray-600);
    margin-bottom: 16px;
}

.service-contact-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-contact-card li {
    color: var(--color-gray-700);
    font-size: .95rem;
}

.service-contact-card a {
    color: var(--color-primary-dark);
    font-weight: 600;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .service-hero-grid,
    .service-include-grid,
    .service-contact-grid {
        grid-template-columns: 1fr;
    }

    .service-reason-grid {
        grid-template-columns: 1fr;
    }

    .financing-banner-card,
    .financing-hero-grid {
        grid-template-columns: 1fr;
    }

    .financing-info-strip-inner,
    .financing-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .financing-benefit-grid {
        grid-template-columns: 1fr;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .why-card--featured {
        grid-column: 1 / -1;
    }

    .why-card--featured .why-card-inner {
        grid-template-columns: auto 1fr;
    }

    .why-highlight {
        display: none;
    }

    .models-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 16px;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 8px);
    }

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

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

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

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

@media (max-width: 768px) {
    .service-hero {
        padding: 102px 0 64px;
    }

    .service-why,
    .service-include,
    .service-contact {
        padding: 68px 0;
    }

    .service-overview-card,
    .service-contact-card,
    .service-process,
    .service-reason-card {
        padding: 22px;
    }

    .financing-banner-section {
        padding: 20px 0;
    }

    .financing-banner {
        padding: 0;
    }

    .financing-banner-card,
    .financing-highlight-card,
    .financing-info-strip-inner,
    .financing-cta-box,
    .financing-benefit-card {
        padding: 24px;
    }

    .financing-hero {
        padding: 72px 0 80px;
    }

    .financing-benefits,
    .financing-models {
        padding: 88px 0;
    }

    .site-header {
        background: rgba(10,22,40,.95);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 0 12px;
    }

    .header-container {
        height: 74px;
    }

    .site-logo {
        gap: 6px;
        max-width: calc(100% - 56px);
    }

    .site-logo-image {
        width: 34px;
        height: 34px;
    }

    .site-logo span {
        display: inline;
        font-size: 0.92rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Header — mobile nav */
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--adminbar-offset) + var(--safe-top-offset));
        right: -100%;
        width: 300px;
        height: calc(100vh - var(--adminbar-offset) - var(--safe-top-offset));
        height: calc(100dvh - var(--adminbar-offset) - var(--safe-top-offset));
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        z-index: 999;
        transition: right 0.35s cubic-bezier(.4,0,.2,1);
        box-shadow: var(--shadow-2xl);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-link {
        color: var(--color-gray-700);
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link:hover {
        background: var(--color-gray-100);
        color: var(--color-primary);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        padding: 14px 22px;
    }

    /* Hero mobile */
    .hero .container {
        padding-top: calc(74px + var(--adminbar-offset) + var(--safe-top-offset) + 28px);
    }

    .hero-split {
        padding: 0 0 60px;
    }

    .hero-owner-top {
        margin-top: 0;
        margin-bottom: 24px;
    }

    .hero-owner-top img {
        height: 230px;
    }

    .hero-floating-stats {
        flex-direction: column;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Why section mobile */
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card--featured .why-card-inner {
        grid-template-columns: 1fr;
    }

    .why-bottom-cta {
        flex-direction: column;
        text-align: center;
    }

    /* Models mobile */
    .models-showcase {
        grid-template-columns: 1fr;
    }

    /* Process mobile */
    .process-step {
        flex: 0 0 100%;
    }

    /* About mobile */
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Archive mobile */
    .heat-pump-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero-meta span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .service-step {
        grid-template-columns: 1fr;
    }

    .financing-banner-card {
        gap: 16px;
    }

    .financing-banner-meta {
        white-space: normal;
    }

    .financing-bullets {
        gap: 8px;
    }

    .financing-bullets span {
        width: 100%;
        text-align: center;
    }

    .site-logo span {
        font-size: 0.82rem;
    }

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

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

    .hero-product-card {
        padding: 20px;
    }

    .hero-product-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.why-grid .why-card.reveal:nth-child(2) { transition-delay: .1s; }
.why-grid .why-card.reveal:nth-child(3) { transition-delay: .2s; }
.why-grid .why-card.reveal:nth-child(4) { transition-delay: .3s; }
.why-grid .why-card.reveal:nth-child(5) { transition-delay: .4s; }

.models-showcase .model-card.reveal:nth-child(2) { transition-delay: .12s; }
.models-showcase .model-card.reveal:nth-child(3) { transition-delay: .24s; }

.process-steps .process-step.reveal:nth-child(2) { transition-delay: .1s; }
.process-steps .process-step.reveal:nth-child(3) { transition-delay: .2s; }
.process-steps .process-step.reveal:nth-child(4) { transition-delay: .3s; }

.about-features-list .about-feature-item.reveal:nth-child(2) { transition-delay: .1s; }
.about-features-list .about-feature-item.reveal:nth-child(3) { transition-delay: .2s; }
.about-features-list .about-feature-item.reveal:nth-child(4) { transition-delay: .3s; }
