/* CSS Variables & Design Tokens */
        :root {
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-heading: 'Outfit', 'Inter', sans-serif;

            /* Brand Colors (from hodoklima.svg) */
            --primary: #467208;
            --primary-dark: #325205;
            --primary-light: #f3f6eb;
            --primary-glow: rgba(70, 114, 8, 0.15);
            
            --accent: #769437;
            --accent-hover: #5e772b;
            --accent-glow: rgba(118, 148, 55, 0.3);
            --accent-grad: linear-gradient(135deg, #7a963f 0%, #467208 100%);

            --bg-light: #f9f9f6;
            --bg-card: #ffffff;
            --bg-card-alt: #f2f2ed;
            --text-main: #0a131c;
            --text-muted: #41473a;
            --text-light: #707667;

            --border-color: #e2e5dc;
            --border-hover: #c4c9bd;

            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 24px;
            --radius-full: 9999px;

            --shadow-sm: 0 2px 8px rgba(10, 19, 28, 0.04);
            --shadow-md: 0 10px 25px -5px rgba(10, 19, 28, 0.08), 0 8px 10px -6px rgba(10, 19, 28, 0.04);
            --shadow-lg: 0 20px 35px -10px rgba(70, 114, 8, 0.12), 0 10px 15px -5px rgba(10, 19, 28, 0.04);
            --shadow-accent: 0 12px 28px -6px rgba(70, 114, 8, 0.45);

            --container-max: 1240px;
            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-main);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--text-main);
            line-height: 1.25;
            font-weight: 700;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

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

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        /* Section Layouts */
        section {
            padding: 5rem 0;
            position: relative;
        }

        @media (max-width: 768px) {
            section {
                padding: 3.5rem 0;
            }
        }

        .section-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 3.5rem auto;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .badge-primary {
            background-color: var(--primary-light);
            color: var(--primary);
            border: 1px solid rgba(70, 114, 8, 0.2);
        }

        .badge-accent {
            background-color: var(--primary-light);
            color: var(--accent);
            border: 1px solid rgba(118, 148, 55, 0.25);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.85rem;
            }
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.625rem;
            padding: 0.9rem 1.8rem;
            font-size: 1rem;
            font-weight: 700;
            border-radius: var(--radius-md);
            cursor: pointer;
            border: none;
            transition: var(--transition);
            text-align: center;
            white-space: nowrap;
        }

        .btn-accent {
            background: var(--accent-grad);
            color: #ffffff;
            box-shadow: var(--shadow-accent);
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 32px -4px rgba(70, 114, 8, 0.55);
        }

        .btn-accent:active {
            transform: translateY(0);
        }

        .btn-outline {
            background: #ffffff;
            color: var(--text-main);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

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

        .btn-phone {
            background: rgba(70, 114, 8, 0.08);
            color: var(--primary);
            border: 1px solid rgba(70, 114, 8, 0.15);
            font-weight: 700;
        }

        .btn-phone:hover {
            background: var(--primary);
            color: #ffffff;
        }

        .cta-box-dark .btn-phone {
            background: rgba(190, 242, 100, 0.08);
            color: #bef264;
            border: 1px solid rgba(190, 242, 100, 0.25);
        }

        .cta-box-dark .btn-phone:hover {
            background: #bef264;
            color: #0a131c;
            border-color: #bef264;
        }

        /* HEADER & NAVIGATION */
        .site-header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 44px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
            display: block;
            transition: transform 0.2s ease;
        }

        .logo:hover .logo-img {
            transform: scale(1.03);
        }

        .footer-logo-img {
            filter: brightness(0) invert(1);
            opacity: 0.95;
        }

        .footer-brand .logo-main-text {
            color: #ffffff;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

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

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* OFF-CANVAS HAMBURGER MENU STYLES */
        .mobile-toggle {
            display: none;
            background: rgba(70, 114, 8, 0.08);
            border: 1px solid rgba(70, 114, 8, 0.15);
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            cursor: pointer;
            color: var(--primary);
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        .offcanvas-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 1999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .offcanvas-backdrop.active {
            opacity: 1;
            pointer-events: auto;
        }

        .offcanvas-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 330px;
            max-width: 85vw;
            background: #ffffff;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            overflow-y: auto;
        }

        .offcanvas-drawer.active {
            transform: translateX(0);
        }

        .offcanvas-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .offcanvas-close {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .offcanvas-close:hover {
            background: #f1f5f9;
            color: var(--primary);
        }

        .offcanvas-body {
            padding: 1.5rem;
            flex: 1;
        }

        .offcanvas-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .offcanvas-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 1.1rem;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
            border-radius: var(--radius-md);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .offcanvas-nav a:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: rgba(70, 114, 8, 0.15);
        }

        .offcanvas-nav a svg {
            color: var(--primary);
            opacity: 0.6;
            transition: var(--transition);
        }

        .offcanvas-nav a:hover svg {
            opacity: 1;
            transform: translateX(3px);
        }

        .offcanvas-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
            background: var(--bg-light);
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
        }

        .offcanvas-footer .btn {
            width: 100%;
        }

        .offcanvas-trust-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-light);
            margin-top: 0.25rem;
        }

        @media (max-width: 992px) {
            .nav-links,
            .header-actions {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .header-container {
                height: 70px;
            }
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            padding: 6.5rem 0 7rem 0;
            background: radial-gradient(circle at 80% 20%, rgba(2, 108, 187, 0.08) 0%, transparent 40%),
                        radial-gradient(circle at 10% 80%, rgba(70, 114, 8, 0.05) 0%, transparent 40%);
            overflow: hidden;
        }

        @media (max-width: 992px) {
            .hero {
                padding: 4.5rem 0 5rem 0;
            }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 3.5rem;
            align-items: center;
        }

        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

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

        .hero-title {
            font-size: 3.25rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 1.25rem;
        }

        .hero-title-highlight {
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.15rem;
            }
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .hero-trust-bullets {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.875rem 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }

        @media (max-width: 480px) {
            .hero-trust-bullets {
                grid-template-columns: 1fr;
            }
        }

        .trust-bullet {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 0.925rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .trust-bullet svg {
            color: #10b981;
            flex-shrink: 0;
        }

        /* Hero Visual / Card Display */
        .hero-image-wrapper {
            position: relative;
        }

        .hero-main-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 4px solid #ffffff;
            background: #ffffff;
        }

        .hero-main-card img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .hero-main-card:hover img {
            transform: scale(1.03);
        }

        .floating-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            padding: 1rem 1.25rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 0.875rem;
            z-index: 10;
        }

        .badge-top-right {
            top: 20px;
            right: -20px;
        }

        .badge-bottom-left {
            bottom: -20px;
            left: -20px;
        }

        @media (max-width: 640px) {
            .badge-top-right {
                right: 10px;
                top: 10px;
            }
            .badge-bottom-left {
                left: 10px;
                bottom: 10px;
            }
            .hero-main-card img {
                height: 340px;
            }
        }

        .badge-icon-wrap {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .badge-text-title {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .badge-text-value {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text-main);
        }

        /* BRANDS STRIP */
        .brands-strip {
            padding: 1.25rem 0;
            background: #ffffff;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .brands-strip-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .brands-strip-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

        .brands-strip-list {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .brand-pill {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            padding: 0.45rem 1rem;
            border-radius: var(--radius-sm);
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 0.9rem;
            color: var(--text-main);
            letter-spacing: 0.04em;
            transition: var(--transition);
        }

        .brand-pill:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        @media (max-width: 768px) {
            .brands-strip-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0.85rem;
            }
            .brands-strip-list {
                justify-content: center;
            }
        }

        /* INTERSTITIAL CTA BOXES (INSIDE SECTIONS) */
        .cta-strip-box {
            margin-top: 3.5rem;
            border-radius: var(--radius-lg);
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .cta-strip-box:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .cta-box-accent {
            background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
            border: 1px solid var(--border-color);
        }

        .cta-box-dark {
            background: linear-gradient(135deg, #0a131c 0%, #17230b 100%);
            color: #ffffff;
            border: 1px solid #233410;
            box-shadow: 0 12px 35px -10px rgba(10, 19, 28, 0.35);
        }

        /* Subtle radial ambient glow inside dark box */
        .cta-box-dark::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(70, 114, 8, 0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-box-light {
            background: #ffffff;
            border: 1px solid var(--border-color);
        }

        .cta-strip-text {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .cta-strip-badge {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 0.35rem 0.85rem;
            border-radius: var(--radius-full);
            background: var(--primary-light);
            color: var(--primary);
            border: 1px solid var(--border-color);
            white-space: nowrap;
        }

        .cta-badge-orange, .cta-badge-red {
            background: var(--primary-light);
            color: var(--accent);
            border-color: rgba(118, 148, 55, 0.3);
        }

        .cta-badge-green {
            background: #dcfce7;
            color: #16a34a;
            border-color: #bbf7d0;
        }

        .cta-strip-text h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.35;
        }

        .cta-box-dark h3 {
            color: #ffffff;
        }

        .cta-strip-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-outline-white {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-color: #ffffff;
        }

        .btn-sm {
            padding: 0.55rem 1.15rem;
            font-size: 0.875rem;
        }

        @media (max-width: 768px) {
            .cta-strip-box {
                margin-top: 2.5rem;
                padding: 1.25rem 1.25rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 1.25rem;
            }
            .cta-strip-text {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            .cta-strip-text h3 {
                font-size: 1rem;
            }
        }

        /* BENTO GRID - WHY US / ADVANTAGES */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 992px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }
        }

        .bento-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bento-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(70, 114, 8, 0.3);
        }

        .bento-card.col-span-2 {
            grid-column: span 2;
        }

        @media (max-width: 992px) {
            .bento-card.col-span-2 {
                grid-column: span 1;
            }
        }

        .bento-card-gradient {
            background: var(--accent-grad);
            color: #ffffff;
            border: 1px solid rgba(70, 114, 8, 0.4);
            box-shadow: 0 16px 36px -8px rgba(70, 114, 8, 0.4);
        }

        .bento-card-gradient .bento-stat,
        .bento-card-gradient .bento-title,
        .bento-card-gradient .bento-text {
            color: #ffffff;
        }

        .bento-card-gradient .bento-stat {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .bento-card-gradient .bento-text {
            color: rgba(255, 255, 255, 0.95);
        }

        .bento-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .bento-card-gradient .bento-icon {
            background: rgba(255, 255, 255, 0.22);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .bento-title {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .bento-text {
            color: var(--text-muted);
            font-size: 0.975rem;
            line-height: 1.6;
        }

        .bento-stat {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        /* SERVICES SECTION */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
        }

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

        @media (max-width: 640px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(70, 114, 8, 0.3);
        }

        .service-img-wrap {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

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

        .service-card:hover .service-img-wrap img {
            transform: scale(1.06);
        }

        .service-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(15, 23, 42, 0.75);
            backdrop-filter: blur(8px);
            color: #ffffff;
            padding: 0.3rem 0.8rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .service-body {
            padding: 1.75rem;
        }

        .service-title {
            font-size: 1.35rem;
            margin-bottom: 0.75rem;
        }

        .service-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--text-main);
            font-weight: 500;
            margin-bottom: 0.4rem;
        }

        .service-features li svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        /* REGIONAL COVERAGE SECTION */
        .region-section {
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--primary-light) 100%);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .region-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (max-width: 992px) {
            .region-grid {
                grid-template-columns: 1fr;
            }
        }

        .region-list-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin-top: 2rem;
        }

        @media (max-width: 480px) {
            .region-list-grid {
                grid-template-columns: 1fr;
            }
        }

        .region-item {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 1.25rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .region-item-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .region-item-cities {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .map-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 0;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            width: 100%;
            aspect-ratio: 1;
            min-height: 380px;
            background: linear-gradient(180deg, rgba(10, 19, 28, 0.25) 0%, rgba(10, 19, 28, 0.88) 100%),
                        url('../img/palava.png') center/cover no-repeat;
            border-radius: var(--radius-lg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 2.5rem 2rem;
            position: relative;
            text-align: center;
            color: #ffffff;
            box-sizing: border-box;
        }

        .map-pin {
            width: 58px;
            height: 58px;
            background: var(--accent-grad);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 10px rgba(70, 114, 8, 0.3), 0 10px 25px rgba(0, 0, 0, 0.4);
            animation: pulse 2s infinite;
            margin-bottom: 1.25rem;
        }

        .map-card-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.9rem;
            border-radius: var(--radius-full);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .map-placeholder h3 {
            color: #ffffff;
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.6rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .map-placeholder p {
            color: #e2e8f0;
            font-size: 0.975rem;
            line-height: 1.6;
            max-width: 440px;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(118, 148, 55, 0.4); }
            70% { box-shadow: 0 0 0 20px rgba(118, 148, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(118, 148, 55, 0); }
        }

        /* PROCESS / HOW IT WORKS */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            position: relative;
        }

        @media (max-width: 992px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .process-steps {
                grid-template-columns: 1fr;
            }
        }

        .step-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 1.75rem 1.25rem;
            border: 1px solid var(--border-color);
            position: relative;
            text-align: center;
        }

        .step-number {
            width: 44px;
            height: 44px;
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 800;
            font-size: 1.2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem auto;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .step-desc {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* TESTIMONIALS & FAQ */
        .testimonials-section {
            padding: 4.5rem 0;
            background: #ffffff;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .faq-section {
            padding: 4.5rem 0;
            background: #f8fafc;
            border-top: 1px solid var(--border-color);
        }

        @media (max-width: 992px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .rating-stars {
            color: #f59e0b;
            display: flex;
            gap: 2px;
            margin-bottom: 1rem;
        }

        .testimonial-quote {
            font-size: 0.975rem;
            color: var(--text-main);
            font-style: italic;
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .avatar-initial {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-name {
            font-weight: 700;
            font-size: 0.95rem;
        }

        .author-loc {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* FAQ & KODEX GRID LAYOUT */
        .faq-layout-grid {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 2.5rem;
            align-items: start;
        }

        .align-left {
            text-align: left;
            margin-bottom: 2rem;
        }

        .align-left .section-title,
        .align-left .section-subtitle {
            margin-left: 0;
            margin-right: 0;
        }

        .kodex-card {
            background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
            border-radius: var(--radius-lg);
            padding: 2.25rem;
            border: 1px solid rgba(70, 114, 8, 0.4);
            box-shadow: 0 20px 45px -10px rgba(10, 19, 28, 0.35);
            position: relative;
            overflow: hidden;
            color: #ffffff;
        }

        .kodex-card::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(70, 114, 8, 0.25) 0%, transparent 70%);
            pointer-events: none;
        }

        .kodex-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 0.75rem 0;
            letter-spacing: -0.02em;
        }

        .kodex-intro {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            padding-bottom: 1.25rem;
        }

        .kodex-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .kodex-item {
            display: flex;
            align-items: flex-start;
            gap: 1.15rem;
            padding: 1.1rem 1.25rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: var(--transition);
        }

        .kodex-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 25px -6px rgba(0, 0, 0, 0.25);
        }

        .kodex-icon-box {
            width: 46px;
            height: 46px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .kodex-card .icon-blue {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .kodex-card .icon-red {
            background: var(--accent-grad);
            color: #ffffff;
            box-shadow: 0 4px 14px rgba(118, 148, 55, 0.45);
        }

        .kodex-item-title {
            font-size: 0.975rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 0.25rem 0;
        }

        .kodex-item-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.82);
            margin: 0;
            line-height: 1.5;
        }

        @media (max-width: 992px) {
            .faq-layout-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        /* FAQ ACCORDION */
        .faq-accordion {
            width: 100%;
            margin: 0;
        }

        .faq-item {
            background: #ffffff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            width: 100%;
            padding: 1.25rem 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-main);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .faq-question svg {
            transition: transform 0.3s ease;
            color: var(--primary);
            flex-shrink: 0;
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 1.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.25rem 1.5rem;
        }

        /* CONVERSION FORM SECTION - RESPONSIVE OPTIMIZED */
        .form-section {
            background: linear-gradient(135deg, #0a131c 0%, #203504 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
            border-radius: 0;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(70, 114, 8, 0.4) 0%, transparent 70%);
            pointer-events: none;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 3.5rem;
            align-items: center;
        }

        @media (max-width: 992px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        .form-info h2 {
            color: #ffffff;
            font-size: 2.5rem;
            margin-bottom: 1.25rem;
        }

        @media (max-width: 768px) {
            .form-info h2 {
                font-size: 1.85rem;
            }
        }

        .form-info p {
            color: #94a3b8;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .form-perks {
            list-style: none;
        }

        .form-perk-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .form-perk-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .form-perk-title {
            font-weight: 700;
            font-size: 1.05rem;
            color: #ffffff;
        }

        .form-perk-desc {
            font-size: 0.875rem;
            color: #94a3b8;
        }

        /* FORM CARD */
        .form-card {
            background: rgba(255, 255, 255, 0.98);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            color: var(--text-main);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
            position: relative;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .form-card {
                padding: 1.75rem 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .form-card {
                padding: 1.25rem 1rem;
                border-radius: var(--radius-md);
            }
        }

        .form-header {
            text-align: center;
            margin-bottom: 1.75rem;
        }

        .form-header-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.4rem;
        }

        .form-header-sub {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .form-group {
            margin-bottom: 1.25rem;
            width: 100%;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--text-main);
        }

        .form-label span {
            color: #ef4444;
        }

        .form-control,
        .form-group input[type="text"],
        .form-group input[type="tel"],
        .form-group input[type="email"],
        .form-group input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
        .form-group select,
        .form-group textarea {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding: 0.85rem 1rem;
            font-family: var(--font-main);
            font-size: 0.975rem;
            border: 1.5px solid var(--border-color);
            border-radius: var(--radius-md);
            background: #f8fafc;
            color: var(--text-main);
            transition: var(--transition);
        }

        .form-control:focus,
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(70, 114, 8, 0.15);
        }

        .form-control.error,
        .form-group input.error,
        .form-group select.error,
        .form-group textarea.error {
            border-color: #ef4444;
            background: #fef2f2;
        }

        .error-msg {
            color: #ef4444;
            font-size: 0.8rem;
            margin-top: 0.3rem;
            display: none;
        }

        .form-control.error + .error-msg {
            display: block;
        }

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

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }

        .form-submit-btn {
            width: 100%;
            padding: 1.1rem 1.25rem;
            font-size: 1.1rem;
            margin-top: 0.5rem;
            white-space: normal;
            line-height: 1.35;
        }

        @media (max-width: 480px) {
            .form-submit-btn {
                font-size: 1rem;
                padding: 0.95rem 1rem;
            }
        }

        .form-trust-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem 0.75rem;
            margin-top: 1.25rem;
            font-size: 0.8rem;
            color: var(--text-light);
            flex-wrap: wrap;
            text-align: center;
        }

        .form-trust-footer span {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        /* SUCCESS MODAL / OVERLAY */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.75);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 1rem;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-box {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            max-width: 500px;
            width: 100%;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-box {
            transform: scale(1);
        }

        .success-icon {
            width: 72px;
            height: 72px;
            background: #dcfce7;
            color: #16a34a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            font-size: 2rem;
        }

        .modal-title {
            font-size: 1.75rem;
            margin-bottom: 0.75rem;
        }

        .modal-desc {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        /* FOOTER */
        .site-footer {
            background: #090d16;
            color: #94a3b8;
            padding: 4rem 0 2rem 0;
            border-top: 1px solid #1e293b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-brand .logo {
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-desc {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-heading {
            color: #ffffff;
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .contact-item svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        .contact-item a {
            color: #94a3b8;
            transition: var(--transition);
        }

        .contact-item a:hover {
            color: #ffffff;
        }

        .tech-status-item {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: #ffffff;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.25);
            padding: 0.5rem 0.9rem;
            border-radius: var(--radius-full);
            width: fit-content;
        }

        .pulse-dot {
            width: 10px;
            height: 10px;
            background-color: #10b981;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            animation: pulseGreen 1.8s infinite;
            flex-shrink: 0;
        }

        .pulse-dot.offline {
            background-color: #64748b;
            box-shadow: none;
            animation: none;
        }

        @keyframes pulseGreen {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }

        .disclaimer-text {
            max-width: 800px;
            margin: 0 auto 1.5rem auto;
            line-height: 1.5;
        }

        /* FLOATING MOBILE CTA BAR */
        .mobile-floating-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            padding: 0.75rem 1rem;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
            z-index: 999;
            border-top: 1px solid var(--border-color);
        }

        .mobile-floating-bar-inner {
            display: flex;
            gap: 0.75rem;
        }

        .mobile-floating-bar .btn {
            flex: 1;
            padding: 0.75rem;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .mobile-floating-bar {
                display: block;
            }
            body {
                padding-bottom: 70px;
            }
        }

        /* Company Details Footer Stripe */
        .site-footer .company-details {
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
            padding: 1.25rem 0 0 0;
            border: 0;
            border-top: 1px solid #1e293b;
            border-radius: 0;
            background: transparent;
        }

        .site-footer .company-details-line {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.3rem 0.75rem;
            margin: 0;
            color: #64748b;
            font-size: 0.75rem;
            line-height: 1.55;
            list-style: none;
            padding: 0;
        }

        .site-footer .company-details-line span {
            display: inline-flex;
            align-items: center;
        }

        .site-footer .company-details-line span + span::before {
            content: "·";
            margin-right: 0.75rem;
            color: #475569;
            font-weight: bold;
        }

        /* Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 24px;
            left: 24px;
            right: 24px;
            max-width: 600px;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 24px;
            color: #f8fafc;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
            z-index: 10000;
            display: none;
            flex-direction: column;
            gap: 16px;
            animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            transition: opacity 0.4s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .cookie-banner-main {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            width: 100%;
        }

        .cookie-content {
            width: 100%;
        }

        .cookie-text {
            font-size: 0.9rem;
            line-height: 1.55;
            color: #cbd5e1;
            margin: 0;
            text-align: center;
        }

        .cookie-text a {
            color: var(--primary-light);
            text-decoration: underline;
            font-weight: 500;
        }

        .cookie-text a:hover {
            color: #ffffff;
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .cookie-btn {
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 10px 18px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .cookie-btn-accept {
            background: var(--primary);
            color: #ffffff;
        }

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

        .cookie-btn-reject {
            background: transparent;
            color: #94a3b8;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .cookie-btn-reject:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
        }

        .cookie-btn-settings {
            background: rgba(255, 255, 255, 0.08);
            color: #e2e8f0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookie-btn-settings:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

        /* Settings Panel */
        .cookie-settings-panel {
            width: 100%;
            margin-top: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookie-settings-title {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .cookie-settings-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .cookie-option {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cookie-switch-label {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            cursor: pointer;
        }

        .cookie-switch-label input[type="checkbox"] {
            display: none;
        }

        .cookie-switch-custom {
            position: relative;
            display: inline-block;
            width: 38px;
            height: 20px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .cookie-switch-custom::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #ffffff;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
        }

        .cookie-switch-label input[type="checkbox"]:checked + .cookie-switch-custom {
            background-color: var(--primary);
        }

        .cookie-switch-label input[type="checkbox"]:checked + .cookie-switch-custom::after {
            transform: translateX(18px);
        }

        .cookie-switch-label input[type="checkbox"]:disabled + .cookie-switch-custom {
            opacity: 0.5;
            background-color: var(--primary);
            cursor: not-allowed;
        }

        .cookie-option-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .cookie-option-name {
            font-size: 0.875rem;
            font-weight: 700;
            color: #ffffff;
        }

        .cookie-option-desc {
            font-size: 0.75rem;
            color: #94a3b8;
            line-height: 1.4;
        }

        .cookie-settings-actions {
            display: flex;
            justify-content: flex-end;
        }

        @media (max-width: 768px) {
            .cookie-banner {
                bottom: 80px; /* position above mobile-floating-bar */
                left: 16px;
                right: 16px;
                flex-direction: column;
                gap: 16px;
                padding: 20px;
            }
            .cookie-banner-main {
                flex-direction: column;
                gap: 12px;
            }
            .cookie-banner-main .cookie-actions {
                width: 100%;
                justify-content: center;
            }
            .cookie-actions {
                width: 100%;
                justify-content: center;
            }
        }

        .cookie-services-list {
            display: block;
            margin-top: 6px;
            font-size: 0.72rem;
            color: var(--primary-light);
            opacity: 0.95;
            line-height: 1.35;
        }
