:root {
    --primary: #FF6B00;
    /* Vibrant Orange */
    --primary-light: #FF8533;
    --bg-body: #FFFFFF;
    --bg-alt: #F5F5F7;
    --text-main: #1D1D1F;
    --text-muted: #86868B;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    --radius: 20px;
    --font-main: 'Outfit', sans-serif;
    --font-hero: 'Inter', sans-serif;
    /* Apple-like */
    --transition: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-top-logo {
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 8px;
    /* Visual optical alignment */
    transition: transform 0.3s;
    cursor: pointer;
}

.hero-top-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.grid {
    display: grid;
    gap: 30px;
}

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: rgba(245, 245, 247, 0.6);
    /* Slightly gray */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    padding: 40px;
    transition: 0.4s var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(47, 47, 47, 0.15);
    border-color: #eee;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Info Card (Static, Readable) */
.info-card {
    background: #F2F2F4;
    /* Solid, readable gray */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 40px;
    color: #191919;
    /* Darker text */
}

.info-card h1,
.info-card h2,
.info-card h3 {
    color: #000;
}

.info-card p {
    color: #333;
}

/* Dark Button */
.btn-dark {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumbs a {
    transition: 0.3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1280px;
    z-index: 1000;
    border-radius: 100px;
    padding: 15px 30px;
    transition: 0.3s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 12px;
}
.header-contacts { display:flex; align-items:center; gap:8px; margin-left:8px; margin-right:16px; }
.header-contacts .socials { display:flex; align-items:center; gap:8px; }
.header-contacts .socials img { width:20px; height:20px; }

.nav-socials { display:none; }
@media (max-width: 768px){
  .header-contacts { display:none; }
  nav .nav-socials { display:flex; gap:10px; justify-content:center; padding-top:10px; margin-top:10px; border-top:1px solid #eee; }
  nav .nav-socials img { width:22px; height:22px; }
}

@media (min-width: 769px){
  nav { flex: 1; }
  nav ul { justify-content: center; }
}

.logo img {
    height: 32px;
}

.header-logo {
    transition: transform 1s ease;
    transform: scale(1.15);
}

.header-logo:hover {
    transform: scale(1.15);
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

/* Hamburger Menu */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .burger {
        display: flex;
        z-index: 1003;
        /* Ensure above nav */
        position: relative;
        /* Needed for z-index */
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s;
        z-index: 1002;
        /* Ensure above everything */
    }

    nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    header .btn {
        display: none;
        /* Hide book button on mobile header to save space, or keep it? User said "add hamburger". */
    }
}

/* Hero (v1 Full Style) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    /* v1 text is white on dark/image bg */
}

.hero-bg-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/hero-bg-2.png') no-repeat center center / cover;
    z-index: 1;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: crosshair;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    pointer-events: none;
    margin-top: 60px;
    /* Let clicks pass to canvas/form */
}

.hero-content h1 {
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Allow interaction with form */
.calc {
    pointer-events: auto;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Cleaning Overlay */
.cleaning-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Custom Cursor Brush */
.cursor-brush {
    position: fixed;
    top: 0;
    left: 0;
    font-size: 40px;
    pointer-events: none;
    z-index: 9999 !important;
    display: none;
    /* Hidden by default */
    transform-origin: bottom left;
}

.cursor-brush.active {
    display: block;
    animation: scrub 0.5s infinite alternate ease-in-out;
}

@keyframes scrub {
    0% {
        transform: rotate(-10deg) translateX(-5px);
    }

    100% {
        transform: rotate(20deg) translateX(5px);
    }
}

/* v1 Calculator Form */
.calc {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    max-width: 400px;
    color: #000;
    /* Fix text color to black */
}

.calc-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.calc-tabs .type {
    display: flex;
    gap: 10px;
    width: 100%;
}

.calc-tabs button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #f0f0f0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.calc-tabs button.active {
    background: var(--primary);
    color: #fff;
}

.counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.controls button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.controls span {
    font-weight: 700;
    width: 20px;
    text-align: center;
}

/* Order form validation */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.15);
}

/* Packages */
.packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pkg-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.pkg-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

/* Why Us */
.why-us {
    background: var(--bg-alt);
}

.why-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.why-item img {
    height: 120px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.why-item img:hover {
    transform: scale(1.05);
}



/* Larger icons requested */

/* Before/After Gallery */
.ba-gallery {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ba-item {
    height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.ba-img-after {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.ba-overlay {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border-right: 2px solid #fff;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Reviews (Bubbles) */
.reviews-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scrollbar-width: none;
}

/* Reviews (Cards) */
.reviews-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0 40px;
}

.review-card {
    background: #F5F5F7;
    /* Gray cloud */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: 0.3s;
    min-width: 0;
}

.review-card:hover {
    transform: translateY(-10px);
    background: #F5F5F7;
    box-shadow: 0 20px 40px rgba(47, 47, 47, 0.15);
    border-color: #eee;
}

.review-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    /* Push to bottom */
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
    /* Fallback */
}

/* Order Flow */
.order-flow {
    background: var(--bg-alt);
}

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

.step-num {
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255, 107, 0, 0.1);
    line-height: 1;
    position: relative;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-head {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    padding: 0 20px;
    color: var(--text-muted);
}

.faq-item.active .faq-body {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Contact Form (v1 style) */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.section.contact .subtitle { margin-bottom: 16px; }

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    background: #f9f9f9;
}

.date-input { display: flex; gap: 8px; align-items: center; }
.date-input input { flex: 1; }
.date-btn { padding: 10px 12px; border: 1px solid #eee; border-radius: 10px; background: #fff; cursor: pointer; }

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
}


/* Calendar */
.calendar { background:#fff; border:1px solid #e1e5ea; border-radius:14px; padding:14px; }
.cal-header { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.cal-month { font-weight:800; font-size:1.25rem; color:#0f1720; }
.cal-nav { display:flex; align-items:center; gap:8px; }
.cal-nav button { border:1px solid #e1e5ea; background:#fff; border-radius:10px; padding:6px 10px; cursor:pointer; }
.cal-status { font-size:0.9rem; color:#6b7280; margin-left:auto; }
.cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:6px; margin-top:8px; }
.cal-day { height:38px; display:flex; align-items:center; justify-content:center; border:1px solid #e1e5ea; border-radius:10px; background:#fff; cursor:pointer; color:#0f1720; }
.cal-day.selected { border-color: var(--primary); background: rgba(255,107,0,0.08); }
.cal-day.disabled { opacity:0.4; cursor:not-allowed; }
.slots { display:grid; grid-template-columns:repeat(auto-fit,minmax(90px,1fr)); gap:8px; margin-top:10px; }
.slot { padding:8px 10px; border:1px solid #e1e5ea; border-radius:12px; background:#fff; text-align:center; cursor:pointer; color:#0f1720; }
.slot.skeleton { background: #f5f5f7; color: transparent; position: relative; overflow: hidden; }
.slot.skeleton::after { content:''; position:absolute; left:-40%; top:0; width:40%; height:100%; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.6), rgba(255,255,255,0)); animation: shimmer 1.2s infinite; }
@keyframes shimmer { 0%{ left:-40% } 100%{ left:100% } }
.slot.selected { border-color: var(--primary); background: rgba(255,107,0,0.08); }
.slot.medium { border-color:#f59e0b; background:rgba(245,158,11,0.08); }
.slot.low { border-color:#ef4444; background:rgba(239,68,68,0.08); }

/* Reset text colors for cards */
.card { color:#0f1720; }
.subtitle { color:#6b7280; }

/* Order page base */
.order { width:min(100%,1200px); margin:120px auto 60px; padding:0 20px; display:grid; grid-template-columns:2fr 1fr; gap:24px; position:relative; }
.order-left { position:relative; }
.order-right { position:sticky; top:var(--sidebarTop, 120px); align-self:start; }
.card { background:#fff; border:1px solid #e1e5ea; border-radius:18px; padding:16px; transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.card.active { transform:translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,0.08); border-color:#d8dee5; }
.section-title { font-weight:800; font-size:2rem; line-height:1.2; color:#0f1720; }
.order-left .section-title { margin:30px 0 12px; }
.order-left .section-title:first-of-type { margin-top:0; }
.order-right .section-title { margin:0 0 12px; }
.order-left .card + .card { margin-top:18px; }
.row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.row.counters { grid-template-columns:repeat(3,1fr); }
.counter { display:flex; justify-content:space-between; align-items:center; padding:10px; border:1px solid #e1e5ea; border-radius:12px; }
.counter .controls { display:flex; gap:10px; align-items:center; }
.counter button { width:32px; height:32px; border-radius:50%; border:1px solid #e1e5ea; background:#fff; }
.extras { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.extra { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:8px; border:1px solid #e1e5ea; border-radius:12px; padding:14px; background:transparent; transition:border-color .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; min-height:120px; cursor:pointer; }
.extra input { display:none; }
.extra img { width:96px; height:96px; }
.extra span { font-weight:600; font-size:.9rem; }
.extra.active { border-color:var(--primary); background:var(--primary); color:#fff; }
.summary { background:#fff; border:1px solid #e1e5ea; border-radius:18px; padding:16px; }
.summary-list { list-style:none; padding:0; margin:0; display:grid; gap:6px; }
.summary-total { display:flex; justify-content:space-between; align-items:center; margin-top:12px; font-weight:700; }
.submit { width:100%; margin-top:12px; }
.summary #orderStatus,
.card #orderStatusLeft { margin-top:16px !important; }
.phasebar-inner { width:100%; background:rgba(255,255,255,.9); backdrop-filter:blur(8px); border:1px solid #e1e5ea; border-radius:14px; padding:10px; margin-bottom:12px; color:#0f1720; }
.phase-track { position:relative; height:4px; background:#eceff3; border-radius:2px; margin:10px 6px; }
.phase-fill { position:absolute; left:0; top:0; height:4px; width:0; background:#0f1720; border-radius:2px; transition:width .25s ease; }
.phase-dot { position:absolute; top:50%; transform:translate(-9px,-50%); width:18px; height:18px; border:2px solid #cfd6de; border-radius:50%; background:#fff; }
.order-form { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.contacts-row { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:8px; grid-column:1/-1; }
.order-form .full { grid-column:1/-1; }
@media (max-width:1200px){ .order-form{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:960px){ .order{ grid-template-columns:1fr; } .order-right{ position:static; } .row.counters{ grid-template-columns:1fr; } .extras{ grid-template-columns:repeat(2,1fr); } .order-form{ grid-template-columns:1fr; } .contacts-row{ grid-template-columns:1fr; } }
@media (max-width:560px){ .extras{ grid-template-columns:1fr; } .cal-month{ font-size:1.1rem; } }

/* Footer  */
footer {
    background: #111;
    color: #fff;
    padding: 100px 0 100px;
    /* Increased height */
}

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

.footer-col h4 {
    color: #e0e0e0;
    /* Lighter title */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ... (Logo styles) ... */

/* Stars */
.stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.star-icon {
    width: 18px;
    height: 18px;
}

.star-text {
    color: #000;
    /* Black as requested */
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 8px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    transition: 1s;
}

.footer-logo:hover {
    opacity: 1;
    transition: 1s;
}

.footer-col a {
    color: #ccc;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 123, 28, 0.5);
    /* Glow effect */
}

/* Lang Select */
.lang-select {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 8px 15px;
    border-radius: 20px;
    /* Rounded */
    cursor: pointer;
    outline: none;
    appearance: none;
    /* Remove default arrow if desired, or keep */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 10px auto;
    padding-right: 30px;
}

.footer-col p {
    font-size: 0.9rem;
}

.footer-col .legal-info p {
    font-size: 0.7rem;
    color: #555;
    line-height: 1.4;
}

.socials a img {
    transition: 0.3s;
}

.socials a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.in-view,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .hero-grid,
    .why-grid,
    .steps-grid,
    .footer-grid,
    .ba-gallery {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        right: 0;
        transform: none;
        margin-top: 40px;
    }

    /* nav { display: none; }  <-- THIS WAS THE BUG. REMOVED. */
}

/* Reviews Grid (No Scroll) */
.reviews-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns = 2 rows for 6 items */
    gap: 30px;
    overflow-x: visible;
    padding: 20px 0 40px;
    scrollbar-width: auto;
}

.review-bubble {
    min-width: 0;
    /* Allow shrinking */
    width: 100%;
}

@media (max-width: 1024px) {
    .reviews-scroll {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .reviews-scroll {
        grid-template-columns: 1fr;
    }

    /* Stars */
    .stars {
        color: #FFD700;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    /* Solid background */
    padding: 20px 30px;
    border-radius: 100px;
    /* Pill shape */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 10000;
    max-width: min(720px, 90%);
    width: auto;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.cookie-banner .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    box-shadow: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 90px;
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        width: calc(100% - 40px);
        text-align: center;
    }

    .cookie-banner p {
        white-space: normal;
    }

    .cookie-banner .btn {
        width: 100%;
    }
}
