/* ========================================
   JustShow - open modern Bauhaus minimal
   ======================================== */

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

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

/* Design tokens */
:root {
    /* Backgrounds, warm en licht */
    --bg: #FAFAF7;
    --bg-soft: #F2EFE9;
    --bg-dark: #1A1A1A;
    --bg-darker: #0F0F0F;

    /* Tekst */
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-on-dark: #F5F4F0;
    --text-on-dark-muted: rgba(245, 244, 240, 0.65);

    /* Accent: warme terracotta */
    --accent: #C8553D;
    --accent-hover: #A8442F;
    --accent-soft: #E8B4A0;

    /* Lijnen */
    --border: #E8E5DE;
    --border-dark: rgba(255, 255, 255, 0.1);

    /* Layout */
    --max-w: 1280px;
    --section-py: 160px;
    --section-py-mobile: 96px;
    --radius: 8px;
    --radius-lg: 16px;

    /* Animatie */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.03em;
    color: var(--text-on-dark);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.nav.scrolled .logo { color: var(--text); }

.dot { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--text-on-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: opacity 0.2s, color 0.3s var(--ease);
}

.nav.scrolled .nav-links a { color: var(--text); }

.nav-links a:not(.nav-cta):hover { opacity: 0.55; }

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 11px 22px;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--accent-hover);
    opacity: 1 !important;
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=2400&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: heroZoom 24s var(--ease) forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-content {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    color: var(--text-on-dark);
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-soft);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(44px, 7.5vw, 96px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 1100px;
}

.hero-accent {
    font-weight: 300;
    color: var(--accent-soft);
}

.hero-sub {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
    margin-bottom: 56px;
    max-width: 620px;
    font-weight: 300;
    color: rgba(245, 244, 240, 0.85);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-on-dark-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ========================================
   Trust strip
   ======================================== */
.trust-strip {
    padding: 28px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.trust-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    font-weight: 400;
}

/* ========================================
   Sections (gemeenschappelijk)
   ======================================== */
.section {
    padding: var(--section-py) 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.section.visible {
    opacity: 1;
    transform: none;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section-light-gray {
    background: var(--bg-soft);
}

.section-head {
    max-width: 720px;
    margin-bottom: 80px;
}

.section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 24px;
}

.eyebrow.light {
    color: var(--accent-soft);
}

.section-title {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}

.section-title.light { color: var(--text-on-dark); }

.section-sub {
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
}

.section-head.centered .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.section-sub.light { color: var(--text-on-dark-muted); }

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 85, 61, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

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

/* ========================================
   Tiles (voor wie)
   ======================================== */
.tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tile {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    opacity: 0;
    transform: translateY(30px);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.tile.visible {
    opacity: 1;
    transform: none;
}

.tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.tile-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.tile:hover .tile-img {
    transform: scale(1.04);
}

/* Vervang URLs met eigen high-res foto's */
.tile-img-1 { background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1200&q=85&auto=format&fit=crop'); }
.tile-img-2 { background-image: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1200&q=85&auto=format&fit=crop'); }
.tile-img-3 { background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1200&q=85&auto=format&fit=crop'); }

/* Per-product tile images (homepage Voor wie) */
.tile-img-appartement { background-image: url('https://images.unsplash.com/photo-1741764014072-68953e93cd48?w=1200&q=85&auto=format&fit=crop'); }
.tile-img-huis         { background-image: url('https://images.unsplash.com/photo-1628744448839-a475cc0e90c3?w=1200&q=85&auto=format&fit=crop'); }
.tile-img-villa        { background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1200&q=85&auto=format&fit=crop'); }
.tile-img-hotelkamer   { background-image: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1200&q=85&auto=format&fit=crop'); }
.tile-img-jacht        { background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1200&q=85&auto=format&fit=crop'); }
.tile-img-camper       { background-image: url('https://images.unsplash.com/photo-1576793048000-494aaa93d160?w=1200&q=85&auto=format&fit=crop'); }

.tile-body {
    padding: 36px;
}

.tile h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}

.tile p {
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.tile-list {
    list-style: none;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tile-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.tile-list li::before {
    content: '→ ';
    color: var(--accent);
    margin-right: 8px;
}

.tile-cta {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.01em;
    transition: gap 0.3s var(--ease);
}

.tile:hover .tile-cta {
    color: var(--accent-hover);
}

/* ========================================
   Demo (Matterport)
   ======================================== */
.demo-frame {
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-top: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.demo-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.demo-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-on-dark-muted);
    margin-top: 32px;
}

/* ========================================
   Steps
   ======================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.step.visible {
    opacity: 1;
    transform: none;
}

.step-num {
    font-size: 72px;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.step h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
}

.step p {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    max-width: 340px;
}

/* ========================================
   Prices
   ======================================== */
.prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.prices-secondary {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 24px;
}

.price-notes {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    max-width: 720px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

.price {
    padding: 48px 36px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateY(20px);
}

.price.visible {
    opacity: 1;
    transform: none;
}

.price:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.price-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.price-featured {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border-color: var(--bg-dark);
    position: relative;
    transform: scale(1.03);
}

.price-featured.visible {
    transform: scale(1.03);
}

.price-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-featured .price-tag {
    color: var(--accent-soft);
}

.price h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
}

.price-num {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.4;
}

.price-featured .price-num { color: var(--text-on-dark-muted); }

.price-amount {
    display: inline-block;
    font-size: 52px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-top: 4px;
}

.price-featured .price-amount { color: var(--text-on-dark); }

.price-features {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.price-featured .price-features {
    border-top-color: rgba(255,255,255,0.1);
}

.price-features li {
    padding: 10px 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
}

.price-featured .price-features li {
    color: var(--text-on-dark);
}

.price-features li::before {
    content: '✓ ';
    color: var(--accent);
    font-weight: 700;
    margin-right: 6px;
}

.price-custom {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.price-custom h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.price-custom p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 16px;
}

/* ========================================
   Reasons (waarom)
   ======================================== */
.reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 56px;
    max-width: 960px;
}

.reason {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reason.visible {
    opacity: 1;
    transform: none;
}

.reason-num {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1;
}

.reason h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}

.reason p {
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.65;
    font-size: 16px;
}

/* ========================================
   FAQ (subpages)
   ======================================== */
.faq {
    max-width: 820px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.faq-item.visible {
    opacity: 1;
    transform: none;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 28px;
    color: var(--accent);
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover { color: var(--accent); }

.faq-item p {
    margin-top: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

/* ========================================
   Subpage hero (alternate backgrounds + shorter)
   ======================================== */
.hero.hero-page {
    min-height: 78vh;
}

.hero.hero-page .hero-title {
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    max-width: 880px;
}

.hero.hero-page .hero-sub {
    font-size: clamp(16px, 1.2vw, 18px);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero.hero-page .hero-content {
    padding-top: 120px;
    padding-bottom: 64px;
}

.hero.hero-page .hero-eyebrow {
    margin-bottom: 24px;
}

.hero-bg-vastgoed {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=2400&q=85&auto=format&fit=crop');
}

.hero-bg-hospitality {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=2400&q=85&auto=format&fit=crop');
}

.hero-bg-maritiem {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=2400&q=85&auto=format&fit=crop');
}

/* Product page heroes */
.hero-bg-appartement {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1741764014072-68953e93cd48?w=2400&q=85&auto=format&fit=crop');
}

.hero-bg-huis {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1628744448839-a475cc0e90c3?w=2400&q=85&auto=format&fit=crop');
}

.hero-bg-villa {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=2400&q=85&auto=format&fit=crop');
}

.hero-bg-hotelkamer {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=2400&q=85&auto=format&fit=crop');
}

.hero-bg-jacht {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=2400&q=85&auto=format&fit=crop');
}

.hero-bg-camper {
    background-image:
        linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.75) 100%),
        url('https://images.unsplash.com/photo-1576793048000-494aaa93d160?w=2400&q=85&auto=format&fit=crop');
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover { color: var(--accent); }

.breadcrumbs .sep {
    margin: 0 8px;
    color: var(--border);
}

/* CTA banner (subpages) */
.cta-banner {
    text-align: center;
    padding: 100px 0;
}

.cta-banner h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 18px;
    color: var(--text-on-dark-muted);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-banner .hero-ctas {
    justify-content: center;
}

/* ========================================
   CTA / Contact section
   ======================================== */
.section-cta {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: var(--text-on-dark);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.2s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(245, 244, 240, 0.45);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23F5F4F0' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    padding-right: 48px;
    cursor: pointer;
}

.contact-form option {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.contact-form button {
    margin-top: 12px;
    padding: 20px;
    font-size: 16px;
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-on-dark-muted);
    margin-top: 8px;
}

.form-note a {
    color: var(--accent-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-darker);
    color: var(--text-on-dark-muted);
    padding: 80px 0 32px;
}

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

.footer-brand {
    max-width: 360px;
}

.logo-light {
    color: var(--text-on-dark);
    display: inline-block;
    margin-bottom: 16px;
    font-size: 24px;
}

.footer-tag {
    font-size: 14px;
    line-height: 1.6;
}

.footer h4 {
    color: var(--text-on-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}

.footer p {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.6;
}

.footer-note {
    font-size: 12px !important;
    color: var(--text-on-dark-muted);
    margin-top: 12px !important;
    line-height: 1.55;
    max-width: 240px;
    opacity: 0.75;
}

.footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--text-on-dark);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
    font-size: 12px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .tiles { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root {
        --section-py: var(--section-py-mobile);
    }

    .container { padding: 0 24px; }
    .nav-inner { padding: 16px 24px; }

    .nav-links a:not(.nav-cta) { display: none; }

    .hero { min-height: 90vh; }
    .hero-content { padding: 120px 0 80px; }
    .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-ctas .btn { width: 100%; }
    .hero-scroll { display: none; }

    .section-head { margin-bottom: 56px; }

    .tiles, .steps, .prices, .reasons {
        grid-template-columns: 1fr;
    }

    .steps { gap: 48px; }

    .price-featured { transform: none; }
    .price-featured.visible { transform: none; }
    .price-featured:hover { transform: translateY(-4px); }

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

    .tile-body { padding: 28px; }
    .price { padding: 36px 28px; }
    .price-custom { padding: 36px 24px; }

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

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