﻿/* =================================================
        | ENHANCED FINANCE-STYLE THEME                         |
        ================================================== */
        :root {
            /* --- COLOR PALETTE (Refined Finance) --- */
            --primary-dark: #0a1628;
            --primary-medium: #0d2847;
            --accent: #2563eb;
            --accent-hover: #1d4ed8;
            --accent-soft: rgba(37, 99, 235, 0.08);
            --accent-glow: rgba(37, 99, 235, 0.15);
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --bg-subtle: #f1f5f9;
            --text-dark: #0f172a;
            --text-medium: #475569;
            --text-light: #94a3b8;
            --border-color: #e2e8f0;
            --border-subtle: #f1f5f9;

            /* --- TYPOGRAPHY --- */
            --font-heading: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'DM Sans', sans-serif;

            /* --- SHADOWS (Layered System) --- */
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
            --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
            --shadow-card-hover: 0 0 0 1px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06), 0 24px 48px rgba(0, 0, 0, 0.08);

            /* --- LAYOUT & BORDERS --- */
            --max-width: 1280px;
            --border-radius: 14px;
            --border-radius-sm: 8px;
            --border-radius-lg: 20px;
            --border-radius-xl: 28px;
            --top-bar-height: 40px;
            --nav-height: 76px;
            --section-padding: clamp(80px, 10vw, 120px);
        }

        /* --- Base & Typography --- */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-body);
            line-height: 1.7;
            color: var(--text-medium);
            background-color: var(--bg-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: var(--top-bar-height);
            font-weight: 400;
        }
        .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.15;
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: -0.03em;
        }
        h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); line-height: 1.05; letter-spacing: -0.04em; color: var(--bg-white); font-weight: 800; }
        h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); text-align: center; font-weight: 800; }
        h3 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; }
        h4 { font-size: 1.15rem; font-weight: 700; }
        p { margin-bottom: 1.5rem; max-width: 65ch; color: var(--text-medium); font-size: 1rem; line-height: 1.7; }
        a { text-decoration: none; color: var(--accent); transition: all 0.25s ease; }
        a:hover { color: var(--accent-hover); }
        .highlight { color: var(--accent); }

        /* --- Layout & Structure --- */
        .section { padding: var(--section-padding) 0; position: relative; }
        #services, #key-features, #blog { background-color: var(--bg-light); }
        .section-header { text-align: center; margin: 0 auto 4rem auto; max-width: 700px; }
        .section-header p { margin-left: auto; margin-right: auto; }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            background: var(--accent-soft);
            border: 1px solid rgba(37, 99, 235, 0.12);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            border-radius: 99px;
            color: var(--accent);
            font-family: var(--font-heading);
        }

        /* --- Reusable Components --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            border: none;
            background: var(--accent);
            color: var(--bg-white);
            font-weight: 700;
            font-family: var(--font-heading);
            font-size: 0.9rem;
            transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
            white-space: nowrap;
            cursor: pointer;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3), 0 4px 12px rgba(37, 99, 235, 0.15);
        }
        .btn:hover {
            background: var(--accent-hover);
            color: var(--bg-white);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3), 0 12px 24px rgba(37, 99, 235, 0.2);
        }
        .btn:active { transform: translateY(-1px); }
        .btn-secondary {
            background: transparent;
            color: var(--text-dark);
            border: 1.5px solid var(--border-color);
            box-shadow: none;
        }
        .btn-secondary:hover {
            background: var(--text-dark);
            color: var(--bg-white);
            border-color: var(--text-dark);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .hero .btn-secondary { color: var(--accent); border-color: var(--accent); }
        .hero .btn-secondary:hover { background: var(--bg-white); color: var(--primary-dark); border-color: var(--bg-white); }

        /* --- Top Bar --- */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001;
            background: var(--primary-dark);
            color: rgba(255,255,255,0.7);
            font-size: 0.8rem;
            font-weight: 500;
            height: var(--top-bar-height);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-family: var(--font-body);
        }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
        .top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1rem; }
        .top-bar a { color: var(--bg-white); font-weight: 500; }
        .top-bar .social-icons a { margin-right: 0.5rem; opacity: 0.6; transition: opacity 0.3s ease; font-size: 0.8rem; }
        .top-bar .social-icons a:hover { opacity: 1; }
        .top-bar .top-bar-cta {
            background: var(--accent);
            padding: 5px 14px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.75rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            font-family: var(--font-heading);
            transition: all 0.3s ease;
        }
        .top-bar .top-bar-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

        /* --- Navigation --- */
        .navbar {
            position: fixed;
            top: var(--top-bar-height);
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
            height: var(--nav-height);
            background-color: transparent;
        }
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0,0,0,0.04);
            height: 64px;
        }
        .nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .nav-logo img { max-height: 70px; transition: all 0.35s ease; filter: brightness(0) invert(1); padding-top: 5px; }
        .navbar.scrolled .nav-logo img { max-height: 48px; filter: none; }
        .nav-links { display: flex; align-items: center; gap: 0.45rem; list-style: none; margin: 0; padding: 0; }
        .nav-item { position: relative; }
        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            font-family: var(--font-heading);
            font-size: 0.82rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.03em;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            border-radius: var(--border-radius-sm);
        }
        .nav-link .fa-chevron-down {
            margin-left: 0.35rem;
            font-size: 0.68rem;
            line-height: 1;
            transform: translateY(1px);
            flex-shrink: 0;
        }
        .nav-link:hover { color: var(--bg-white); background: rgba(255, 255, 255, 0.08); }
        .navbar.scrolled .nav-link { color: var(--text-dark); }
        .navbar.scrolled .nav-link:hover { color: var(--accent); background: var(--accent-soft); }
        .nav-link::after { content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.3s ease; border-radius: 2px; }
        .nav-item:hover > .nav-link::after, .nav-item:focus-within > .nav-link::after, .nav-link.active::after { transform: scaleX(1); }
        .nav-item .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-white);
            list-style: none;
            padding: 10px 8px 8px;
            border-radius: 12px;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06), 0 20px 40px rgba(0,0,0,0.08);
            min-width: 240px;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu { display: block; opacity: 1; transform: translateY(0); }
        .dropdown-menu a {
            padding: 10px 14px;
            color: var(--text-dark);
            display: block;
            font-size: 0.88rem;
            font-weight: 500;
            font-family: var(--font-body);
            border-radius: var(--border-radius-sm);
            transition: all 0.2s ease;
        }
        .dropdown-menu a:hover { background: var(--accent-soft); color: var(--accent); }
        .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--bg-white);
            cursor: pointer;
            transition: all 0.3s ease;
            align-items: center;
            justify-content: center;
            padding: 0;
        }
        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-1px);
        }
        .menu-toggle .menu-toggle-lines,
        .menu-toggle .menu-toggle-lines::before,
        .menu-toggle .menu-toggle-lines::after {
            content: '';
            display: block;
            width: 20px;
            height: 2px;
            background: currentColor;
            border-radius: 99px;
            transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease;
        }
        .menu-toggle .menu-toggle-lines {
            position: relative;
        }
        .menu-toggle .menu-toggle-lines::before,
        .menu-toggle .menu-toggle-lines::after {
            position: absolute;
            left: 0;
        }
        .menu-toggle .menu-toggle-lines::before { top: -6px; }
        .menu-toggle .menu-toggle-lines::after { top: 6px; }
        .menu-toggle.open {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--bg-white);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
        }
        .menu-toggle.open .menu-toggle-lines { transform: rotate(45deg); }
        .menu-toggle.open .menu-toggle-lines::before { transform: translateY(6px) rotate(-90deg); }
        .menu-toggle.open .menu-toggle-lines::after { transform: translateY(-6px); opacity: 0; }
        .navbar.scrolled .menu-toggle {
            color: var(--text-dark);
            background: rgba(15, 23, 42, 0.03);
            border-color: rgba(15, 23, 42, 0.18);
        }
        .navbar.scrolled .menu-toggle:hover {
            background: rgba(37, 99, 235, 0.1);
            border-color: rgba(37, 99, 235, 0.25);
        }
        .navbar.scrolled .menu-toggle.open {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--bg-white);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
        }
        
        /* --- Mobile Navigation --- */
        body.mobile-menu-open { overflow: hidden; }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: min(86vw, 360px);
            height: 100vh;
            background: linear-gradient(180deg, #0b1b31 0%, #0a1628 100%);
            box-shadow: -24px 0 60px -16px rgba(0, 0, 0, 0.5);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            z-index: 998;
            transform: translateX(108%);
            opacity: 0;
            pointer-events: none;
            padding: calc(var(--top-bar-height) + 84px) 1.25rem 1.75rem;
            overflow-y: auto;
            transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.25s ease;
        }
        .mobile-menu.open {
            transform: translateX(0);
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .mobile-nav-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .mobile-link,
        .mobile-dropdown-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
            padding: 0.85rem 0.35rem;
            color: rgba(255, 255, 255, 0.86);
            font-size: 1rem;
            font-weight: 600;
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            text-align: left;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .mobile-link:hover,
        .mobile-dropdown-toggle:hover { color: var(--bg-white); }
        .mobile-dropdown-toggle i {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.65);
            transition: transform 0.25s ease, color 0.2s ease;
        }
        .mobile-has-children.open > .mobile-dropdown-toggle i {
            transform: rotate(180deg);
            color: var(--bg-white);
        }
        .mobile-submenu {
            list-style: none;
            margin: 0;
            padding: 0 0 0.35rem 0.35rem;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-4px);
            transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
        }
        .mobile-has-children.open > .mobile-submenu {
            max-height: 320px;
            opacity: 1;
            transform: translateY(0);
        }
        .mobile-submenu a {
            display: block;
            padding: 0.55rem 0.35rem;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.9rem;
            font-family: var(--font-body);
            font-weight: 500;
            text-transform: none;
            letter-spacing: 0;
            transition: color 0.2s ease, background-color 0.2s ease;
        }
        .mobile-submenu a:hover {
            color: var(--bg-white);
            background: rgba(255, 255, 255, 0.08);
        }

        /* --- Hero Section --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(165deg, rgba(10, 22, 40, 0.88) 0%, rgba(13, 40, 71, 0.82) 50%, rgba(37, 99, 235, 0.6) 100%),
                        url('images/520.jpg') no-repeat center center/cover;
            padding-top: calc(var(--nav-height) + var(--top-bar-height));
        }
        .home-hero {
            min-height: clamp(470px, 66vh, 700px);
        }
        .home-hero .hero-description {
            color: var(--bg-white);
        }
        .order-hero.order-hub-hero .hero-description {
            color: var(--bg-white);
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, var(--bg-white) 0%, transparent 100%);
            pointer-events: none;
        }
        .hero-content { position: relative; z-index: 2; max-width: 850px; text-align: center; margin: 0 auto; }
        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.15rem);
            color: rgba(255, 255, 255, 0.7);
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }
        .hero-description {
            font-size: clamp(1.05rem, 2vw, 1.2rem);
            color: var(--text-medium);
            max-width: 620px;
            margin: 2rem auto 3rem;
            opacity: 0;
            line-height: 1.75;
        }
        .hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; opacity: 0; }

        /* --- Services Section --- */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
        .service-card {
            background: var(--bg-white);
            padding: 2.5rem 2rem;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            text-align: left;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), #60a5fa);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(37, 99, 235, 0.15);
            box-shadow: var(--shadow-card-hover);
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            background: var(--accent-soft);
            border-radius: 12px;
            border: 1px solid rgba(37, 99, 235, 0.08);
            transition: all 0.3s ease;
        }
        .service-card:hover .service-card-icon {
            background: var(--accent);
            color: var(--bg-white);
            border-color: var(--accent);
        }
        .service-card h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }
        .service-card p { flex-grow: 1; color: var(--text-medium); font-size: 0.95rem; }
        
        /* --- Key Features Section --- */
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
        .feature-card {
            text-align: center;
            padding: 2.25rem 1.75rem;
            background: var(--bg-white);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-card);
            transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(37, 99, 235, 0.12);
        }
        .feature-card i {
            width: 52px;
            height: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 1.25rem;
            background: var(--accent-soft);
            border-radius: 12px;
            border: 1px solid rgba(37, 99, 235, 0.08);
        }
        .feature-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }
        .feature-card p { font-size: 0.93rem; }

        /* --- Why Choose Us / Card Stack --- */
        #why-us { padding-bottom: var(--section-padding); background-color: var(--bg-light); }
        .card-stack-container { position: relative; margin-top: 5vh; }
        .stacking-card { position: sticky; top: calc(12vh + var(--i) * 20px); width: 90%; max-width: 900px; margin: 0 auto; will-change: transform; }
        .panel-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
            width: 100%;
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-xl);
            padding: 40px 48px;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 12px 24px -4px rgba(0,0,0,0.06), 0 32px 64px -8px rgba(0,0,0,0.06);
        }
        .panel-image img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--border-radius-lg); }
        .panel-text .panel-number {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            opacity: 0.2;
        }
        .panel-text h3 { margin: 0.75rem 0; font-size: 1.6rem; }
        .panel-text p { font-size: 0.95rem; }
        .panel-text .highlight { color: var(--accent); }

        /* --- Metrics / Stats Section --- */
        #metrics {
            background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            position: relative;
            z-index: 10;
            overflow: hidden;
        }
        #metrics::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        #metrics h2, #metrics .section-tag, #testimonials h2, #testimonials .section-tag { color: var(--bg-white); }
        #metrics .section-tag { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7); }
        #testimonials .section-tag { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7); }
        #metrics .section-header p, #testimonials p { color: rgba(255, 255, 255, 0.6); }
        .metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; text-align: center; }
        .metric-item {
            padding: 2.25rem 1.5rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .metric-item:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(37, 99, 235, 0.3);
            transform: translateY(-4px);
        }
        .metric-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: var(--bg-white);
            line-height: 1;
            margin-bottom: 0.75rem;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.02em;
        }
        .metric-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 600;
            font-family: var(--font-heading);
        }

        /* --- Testimonials Section --- */
        #testimonials {
            background: linear-gradient(165deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
            overflow: hidden;
            padding: clamp(64px, 8vw, 92px) 0;
        }
        .order-hub-testimonials {
            position: relative;
        }
        .order-hub-testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(96, 165, 250, 0.9) 30%,
                rgba(37, 99, 235, 0.95) 50%,
                rgba(96, 165, 250, 0.9) 70%,
                transparent 100%
            );
            box-shadow: 0 0 10px rgba(37, 99, 235, 0.45);
            pointer-events: none;
            z-index: 3;
        }
        .testimonial-slider { max-width: 800px; margin: 1.5rem auto 0; position: relative; }
        .testimonial-slide { display: none; text-align: center; animation: fadeIn 0.5s ease; }
        .testimonial-slide.active { display: block; }
        .testimonial-slide blockquote {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 1.6rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            position: relative;
            padding: 0 1rem;
            font-family: var(--font-body);
        }
        .testimonial-slide blockquote::before {
            content: '\201C';
            font-size: 5rem;
            color: rgba(37, 99, 235, 0.3);
            font-family: Georgia, serif;
            position: absolute;
            top: -2rem;
            left: 50%;
            transform: translateX(-50%);
            line-height: 1;
        }
        .testimonial-author { font-weight: 700; color: var(--bg-white); font-family: var(--font-heading); font-size: 1.05rem; }
        .testimonial-author span { display: block; font-weight: 400; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.35rem; font-family: var(--font-body); }
        .slider-controls { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
        .slider-arrow {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            width: 44px;
            height: 44px;
            border-radius: 10px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slider-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--bg-white); }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

        /* --- Process Section --- */
        .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-top: 4rem; position: relative; }
        .process-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--border-color) 10%, var(--border-color) 90%, transparent);
            z-index: 0;
        }
        .process-step { text-align: center; position: relative; z-index: 1; }
        .process-number {
            width: 80px;
            height: 80px;
            background: var(--bg-white);
            border: 2px solid var(--border-color);
            margin: 0 auto 1.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
            border-radius: 50%;
            color: var(--text-dark);
            box-shadow: var(--shadow-md);
        }
        .process-step:hover .process-number {
            background: var(--accent);
            color: var(--bg-white);
            border-color: var(--accent);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3), 0 8px 24px rgba(37, 99, 235, 0.15);
        }
        .process-step h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
        .process-step p { font-size: 0.93rem; }

        /* --- Blog Section --- */
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
        .blog-card {
            background-color: var(--bg-white);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
        }
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(37, 99, 235, 0.1);
        }
        .blog-card-image { position: relative; width: 100%; height: 220px; overflow: hidden; }
        .blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
        .blog-card:hover .blog-card-image img { transform: scale(1.06); }
        .blog-card-content { padding: 1.75rem; display: flex; flex-direction: column; flex-grow: 1; }
        .blog-card-content h3 {
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
            text-transform: none;
            font-family: var(--font-heading);
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.35;
        }
        .blog-card-content p { color: var(--text-medium); margin-bottom: 1.5rem; font-size: 0.93rem; flex-grow: 1; }
        .blog-card h3 a { color: var(--text-dark); }
        .blog-card h3 a:hover { color: var(--accent); }
        .read-more-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: var(--accent);
            margin-top: auto;
            font-size: 0.9rem;
            font-family: var(--font-heading);
            letter-spacing: 0.01em;
        }
        .read-more-link i { transition: transform 0.3s ease; font-size: 0.75rem; }
        .read-more-link:hover i { transform: translateX(5px); }
        
        /* --- CTA Section --- */
        .cta-banner {
            text-align: center;
            padding: 5rem 2.5rem;
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary-medium) 100%);
            color: var(--bg-white);
            border-radius: var(--border-radius-xl);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -25%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-banner::after {
            content: '';
            position: absolute;
            bottom: -40%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-banner h2, .cta-banner p { color: var(--bg-white); position: relative; z-index: 1; }
        .cta-banner h2 { font-size: clamp(1.8rem, 4.5vw, 2.75rem); }
        .cta-banner p { color: rgba(255,255,255,0.75); margin-left: auto; margin-right: auto; }
        .cta-banner .btn {
            background-color: var(--bg-white);
            color: var(--accent);
            margin-top: 1.5rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        .cta-banner .btn:hover {
            background-color: var(--text-dark);
            color: var(--bg-white);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* --- FAQ Section --- */
        .faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; align-items: flex-start; text-align: left; }
        .contact-info .info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
        .info-icon {
            font-size: 1rem;
            color: var(--accent);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-soft);
            border-radius: 10px;
            border: 1px solid rgba(37, 99, 235, 0.08);
            flex-shrink: 0;
        }
        .info-text h4 { margin-bottom: 0.25rem; font-size: 1rem; }
        .info-text p, .info-text a { color: var(--text-medium); margin: 0; font-size: 0.93rem; }
        .contact-form {
            margin-top: 0;
            padding: 2rem;
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
        }
        .faq-content .contact-info { margin-bottom: 2rem; }
        .contact-form h4 {
            margin-bottom: 1.25rem;
            color: var(--text-dark);
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: 0.01em;
            font-size: 1.2rem;
        }
        .contact-form .form-group { margin-bottom: 1rem; }
        .contact-form label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: var(--text-dark);
            font-size: 0.88rem;
            font-family: var(--font-heading);
            letter-spacing: 0.01em;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            font-family: var(--font-body);
            font-size: 0.93rem;
            color: var(--text-dark);
            background: var(--bg-light);
            transition: all 0.25s ease;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
            background: var(--bg-white);
        }
        .contact-form textarea { min-height: 120px; resize: vertical; }
        .contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .contact-form .btn { width: 100%; margin-top: 0.5rem; }
        .faq-accordion .faq-item { border-bottom: 1px solid var(--border-color); }
        .faq-accordion .faq-item:last-child { border-bottom: none; }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 1.35rem 0;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-dark);
            font-family: var(--font-heading);
            letter-spacing: -0.01em;
            transition: color 0.2s ease;
        }
        .faq-question:hover { color: var(--accent); }
        .faq-question::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.75rem;
            transition: transform 0.3s ease;
            color: var(--accent);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-soft);
            border-radius: 8px;
            flex-shrink: 0;
        }
        .faq-item.open .faq-question::after { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
        .faq-answer p, .faq-answer ul { padding-bottom: 1.5rem; color: var(--text-medium); font-size: 0.95rem; }
        .faq-answer ul { padding-left: 1.5rem; }
        .faq-summary {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--accent-soft);
            border-left: 3px solid var(--accent);
            border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
        }
        .faq-summary p { font-size: 0.93rem; margin-bottom: 0; }

        /* --- Footer --- */
        .footer {
            background-color: var(--primary-dark);
            color: rgba(255, 255, 255, 0.6);
            padding: var(--section-padding) 0 2.5rem;
            position: relative;
        }
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
        }
        .footer-content { display: grid; grid-template-columns: 2fr repeat(2, 1fr); gap: 3.5rem; margin-bottom: 4rem; }
        .footer-brand .footer-logo { max-height: 100px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
        .footer-brand p { color: rgba(255, 255, 255, 0.55); font-size: 0.93rem; }
        .footer-social { display: flex; gap: 0.75rem; margin-top: 1.75rem; }
        .footer-social a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            border-radius: 10px;
            font-size: 0.85rem;
        }
        .footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--bg-white); transform: translateY(-2px); }
        .footer-column h4 {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-family: var(--font-heading);
        }
        .footer-column ul { list-style: none; }
        .footer-column li { margin-bottom: 0.85rem; }
        .footer-column a, .footer-column span { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; transition: all 0.2s ease; }
        .footer-column a:hover { color: rgba(255, 255, 255, 0.9); padding-left: 4px; }
        .footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.06); text-align: center; }
        .footer-bottom p { max-width: none; margin: 0; color: rgba(255, 255, 255, 0.35); font-size: 0.85rem; }
        .footer-bottom a { color: rgba(255, 255, 255, 0.45); }
        .footer-bottom a:hover { color: rgba(255, 255, 255, 0.8); }
        .footer-powered-by { display: flex; justify-content: center; align-items: center; gap: 40px; margin-top: 1.5rem; }
        .footer-powered-by a { text-decoration: none; color: rgba(255, 255, 255, 0.35); transition: color 0.3s ease; }
        .footer-powered-by a:hover { color: rgba(255, 255, 255, 0.7); }
        .footer-powered-by-group { display: flex; align-items: center; gap: 10px; }
        .footer-powered-by img { height: 16px; filter: brightness(0) invert(1); opacity: 0.4; transition: opacity 0.3s ease; }
        .footer-powered-by a:hover img { opacity: 0.8; }
        .footer-powered-by p { font-size: 0.8rem; margin: 0; }
        
        /* --- Animation & Responsive --- */
        [data-anim] { opacity: 0; transform: translateY(30px); }

        .hide-on-mobile { display: inline; }

        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .menu-toggle { display: inline-flex; }
            .mobile-menu { display: flex; }
            .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
            .top-bar-left { display: none; }
            .top-bar .container { justify-content: center; }
        }
        @media (max-width: 992px) { 
            .panel-content { grid-template-columns: 1fr; text-align: center; }
            .panel-image { grid-row: 2; }
            .panel-image img { height: 280px; }
            .footer-content { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .section { padding: 72px 0; }
            h1 { font-size: 2.25rem; }
            h2 { font-size: 2rem; }
            .process-grid::before { display: none; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .footer-social { justify-content: center; }
            .panel-content { padding: 24px; }
            .contact-form .form-row { grid-template-columns: 1fr; }

            /* --- MOBILE VIEW: Remove Card Stack Effect --- */
            .card-stack-container { 
                height: auto !important; 
                display: grid; 
                gap: 16px;
                margin-top: 20px;
            }
            .stacking-card { 
                position: static !important;
                top: auto !important; 
                margin: 0; 
                transform: none !important;
            }

            /* --- MOBILE VIEW: Improve Why-Us cards --- */
            #why-us .section-header { margin-bottom: 2rem; }
            #why-us .panel-content {
                gap: 14px;
                padding: 20px;
                border-radius: 16px;
                box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            }
            #why-us .panel-text .panel-number {
                font-size: 2.5rem;
                margin-bottom: 0.1rem;
            }
            #why-us .panel-text h3 {
                font-size: 1.2rem;
                line-height: 1.25;
                margin-bottom: 0.4rem;
            }
            #why-us .panel-text p {
                font-size: 0.93rem;
                margin: 0 auto;
            }
            #why-us .panel-image img {
                height: auto; 
                max-height: 200px; 
                border-radius: 12px;
            }

            #why-us { padding-bottom: 100px; }
            .top-bar { font-size: 0.72rem; }
            .footer-powered-by { flex-direction: column; gap: 16px; }
            .hide-on-mobile { display: none; }
            
            .service-card { padding: 2rem 1.5rem; }
            .feature-card { padding: 1.75rem 1.25rem; }
            .cta-banner { padding: 3.5rem 1.5rem; border-radius: var(--border-radius-lg); }
            .contact-form { padding: 1.5rem; }
            .hero { min-height: 90vh; }
            .home-hero { min-height: clamp(420px, 61vh, 540px); }
            .hero-subtitle { font-size: 0.85rem; letter-spacing: 0.08em; }
        }

        /* --- Smooth Scrollbar Styling --- */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-light); }
        ::-webkit-scrollbar-thumb { background: var(--text-light); border-radius: 99px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--text-medium); }

        /* --- Selection Color --- */
        ::selection { background: var(--accent); color: var(--bg-white); }

        /* --- Order Pages --- */
        .order-hero {
            min-height: clamp(470px, 66vh, 700px);
            padding-top: calc(var(--nav-height) + 36px);
        }
        .order-hero .hero-content {
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }
        .order-hero .hero-description {
            color: var(--text-dark);
            margin: 1.4rem auto 1.8rem;
        }
        .order-step-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        .order-step-pill {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 99px;
            border: 1px solid var(--border-color);
            color: var(--text-medium);
            background: var(--bg-white);
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .order-step-pill.active {
            color: var(--accent);
            border-color: rgba(37, 99, 235, 0.25);
            background: var(--accent-soft);
        }
        .order-hub-section {
            background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
        }
        .report-type-picker {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }
        .report-type-picker h3 {
            margin-bottom: 1rem;
        }
        .report-type-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .report-type-buttons .btn {
            min-width: 260px;
        }
        .order-form-section {
            background: var(--bg-light);
            padding: clamp(34px, 5.5vw, 56px) 0 clamp(72px, 8vw, 100px);
        }
        .source-link {
            margin: 1rem 0 1.2rem;
            padding: 0.95rem 1rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background: var(--bg-white);
            font-size: 0.93rem;
            color: var(--text-dark);
        }
        .source-link a {
            font-weight: 600;
            word-break: break-all;
        }
        .order-form {
            display: grid;
            gap: 1rem;
        }
        .form-card {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 1.2rem;
            box-shadow: var(--shadow-sm);
        }
        .form-card h3 {
            margin-bottom: 0.7rem;
            font-size: 1.1rem;
        }
        .form-card h4 {
            margin: 1rem 0 0.45rem;
            font-size: 0.95rem;
            letter-spacing: 0.01em;
        }
        .form-note {
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        .residential-intro {
            margin-bottom: 1rem;
        }
        .residential-intro p:last-child {
            margin-bottom: 0;
        }
        .char-count {
            margin-top: -0.05rem;
            font-size: 0.78rem;
            color: var(--text-light);
            font-weight: 500;
        }
        .order-form label {
            display: flex;
            flex-direction: column;
            gap: 0.32rem;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
            font-size: 0.88rem;
            font-weight: 600;
        }
        .order-form label:last-child {
            margin-bottom: 0;
        }
        .order-form .conditional-field {
            max-height: 0;
            opacity: 0;
            margin-bottom: 0;
            overflow: hidden;
            pointer-events: none;
            transition: max-height 0.3s ease, opacity 0.25s ease, margin-bottom 0.25s ease;
        }
        .order-form .conditional-field.is-visible {
            max-height: 420px;
            opacity: 1;
            margin-bottom: 0.8rem;
            pointer-events: auto;
        }
        .order-form input,
        .order-form textarea,
        .order-form select {
            width: 100%;
            padding: 11px 12px;
            border: 1.5px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.93rem;
            color: var(--text-dark);
            background: var(--bg-light);
            transition: all 0.2s ease;
            font-family: var(--font-body);
            font-weight: 500;
        }
        .order-form textarea {
            resize: vertical;
        }
        .order-form .currency-input {
            position: relative;
        }
        .order-form .currency-symbol {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-weight: 700;
            pointer-events: none;
        }
        .order-form .currency-input input {
            padding-left: 28px;
        }
        .order-form .date-input-wrap {
            position: relative;
        }
        .order-form .date-input-wrap .date-text-input {
            padding-right: 40px;
        }
        .order-form .date-picker-toggle {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border: 0;
            border-radius: 7px;
            background: transparent;
            color: var(--text-light);
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .order-form .date-picker-toggle:hover {
            background: rgba(32, 93, 216, 0.08);
            color: var(--accent);
        }
        .order-form .date-picker-toggle:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px var(--accent-glow);
            color: var(--accent);
        }
        .order-form .date-picker-native {
            position: absolute;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }
        .order-form input.no-spinner[type="number"] {
            appearance: textfield;
            -moz-appearance: textfield;
        }
        .order-form input.no-spinner[type="number"]::-webkit-outer-spin-button,
        .order-form input.no-spinner[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        .order-form input:focus,
        .order-form textarea:focus,
        .order-form select:focus {
            outline: none;
            border-color: var(--accent);
            background: var(--bg-white);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }
        .order-grid-two {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.9rem 1rem;
        }
        .order-grid-two .full-width {
            grid-column: 1 / -1;
        }
        .choice-group {
            border: 1px solid var(--border-color);
            border-radius: 10px;
            background: var(--bg-light);
            padding: 0.85rem 0.9rem;
        }
        .choice-title {
            margin: 0 0 0.55rem;
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.4;
        }
        .choice-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
        }
        .order-form .choice-options label {
            display: inline-flex;
            flex-direction: row;
            align-items: center;
            gap: 0.45rem;
            margin: 0;
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-white);
            font-size: 0.88rem;
            font-weight: 500;
        }
        .order-form .choice-options input[type="radio"] {
            width: auto;
            margin: 0;
            accent-color: var(--accent);
        }
        .quote-price-line {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }
        .quote-price-line strong {
            color: var(--accent);
            font-family: var(--font-heading);
        }
        .radio-grid,
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.6rem;
            margin-top: 0.3rem;
        }
        .radio-grid label,
        .checkbox-grid label {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 0.8rem;
            margin-bottom: 0;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            background: var(--bg-light);
            font-weight: 500;
            font-size: 0.91rem;
        }
        .radio-grid input[type="radio"],
        .checkbox-grid input[type="checkbox"] {
            width: auto;
            margin: 0;
            accent-color: var(--accent);
        }
        .repeatable-rows {
            display: grid;
            gap: 0.6rem;
            margin-top: 0.5rem;
        }
        .repeatable-rows .row-head,
        .repeatable-rows .row {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 0.65rem;
            align-items: center;
        }
        .repeatable-rows .row-head {
            font-family: var(--font-heading);
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-medium);
            padding: 0 0.15rem;
        }
        .repeatable-rows .row input {
            margin-bottom: 0;
        }
        .payment-card {
            border-color: rgba(37, 99, 235, 0.2);
            background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.02) 100%);
        }
        .stripe-portal-btn {
            margin: 0.2rem 0 0.9rem;
        }
        .checkbox-line {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.55rem;
            margin-bottom: 0;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .checkbox-line input[type="checkbox"] {
            width: auto;
            margin: 0;
            accent-color: var(--accent);
        }
        .form-actions {
            display: flex;
            justify-content: flex-start;
            margin-top: 0.2rem;
        }

        @media (max-width: 1024px) {
            .report-type-picker {
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .order-hero {
                min-height: clamp(420px, 61vh, 540px);
                padding-top: calc(var(--nav-height) + 24px);
            }
            .report-type-buttons .btn {
                width: 100%;
            }
            .order-form-section .container {
                max-width: 100%;
                padding-left: 14px;
                padding-right: 14px;
            }
            .order-form-section .form-card,
            .order-form,
            .order-form .order-grid-two,
            .order-form .radio-grid,
            .order-form .checkbox-grid,
            .order-form label,
            .order-form input,
            .order-form textarea,
            .order-form select {
                min-width: 0;
                max-width: 100%;
            }
            .order-form-section .form-card {
                width: 100%;
                padding: 1rem;
                overflow-x: clip;
            }
            .order-step-row {
                gap: 0.5rem;
            }
            .order-step-pill {
                font-size: 0.72rem;
                padding: 7px 12px;
            }
            .order-grid-two,
            .radio-grid,
            .checkbox-grid,
            .repeatable-rows .row-head,
            .repeatable-rows .row {
                grid-template-columns: 1fr;
            }
            .repeatable-rows .row-head {
                display: none;
            }
            .choice-options {
                flex-direction: column;
            }
            .form-actions .btn {
                width: 100%;
                white-space: normal;
                text-align: center;
                line-height: 1.35;
            }
        }
