
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary: #166534;
            --primary-dark: #14532d;
            --primary-light: #15803d;
            --secondary: #22C55E;
            --secondary-light: #4ade80;
            --accent: #FFFFFF;
            --bg: #F0FDF4;
            --bg-dark: #022c22;
            --text-dark: #0f172a;
            --text-body: #334155;
            --text-muted: #64748b;
            --border: rgba(22,101,52,0.12);
            --glass-bg: rgba(255,255,255,0.6);
            --glass-border: rgba(255,255,255,0.3);
            --shadow-sm: 0 2px 8px rgba(22,101,52,0.06);
            --shadow-md: 0 8px 30px rgba(22,101,52,0.1);
            --shadow-lg: 0 20px 60px rgba(22,101,52,0.12);
            --shadow-xl: 0 30px 80px rgba(22,101,52,0.15);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --glow: 0 0 40px rgba(34,197,94,0.15);
        }

        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Open Sans', sans-serif;
            background: var(--bg);
            color: var(--text-body);
            overflow-x: hidden;
            line-height: 1.7;
        }

        .nav-links a{
            margin-left:25px !important;
        }

        h1,h2,h3,h4,h5,h6 { font-family: 'Manrope', sans-serif; color: var(--text-dark); line-height: 1.2; }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .container-lg { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(2deg); }
            66% { transform: translateY(10px) rotate(-1deg); }
        }
        @keyframes float2 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(3deg); }
        }
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(34,197,94,0.2); }
            50% { box-shadow: 0 0 40px rgba(34,197,94,0.4); }
        }
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        @keyframes rotate-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes bounce-subtle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-left.active { opacity: 1; transform: translateX(0); }
        .reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-right.active { opacity: 1; transform: translateX(0); }
        .reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-scale.active { opacity: 1; transform: scale(1); }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            padding: 16px 0;
            transition: all 0.4s ease;
            background: rgba(240,253,244,0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(240,253,244,0.92);
            backdrop-filter: blur(24px);
            box-shadow: 0 4px 30px rgba(22,101,52,0.08);
        }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; }
        .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .nav-logo-icon {
            width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 20px;
        }
        .nav-logo-text { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--primary); }
        .nav-logo-text span { color: var(--secondary); }
        .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
        .nav-links a {
            text-decoration: none; color: var(--text-body); font-weight: 600; font-size: 0.9rem;
            position: relative; transition: color 0.3s;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s; border-radius: 2px;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a:hover::after { width: 100%; }
        .nav-cta {
            display: inline-flex; align-items: center; gap: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff !important; padding: 12px 28px; border-radius: 50px;
            font-weight: 700; font-size: 0.9rem; text-decoration: none;
            transition: all 0.3s; box-shadow: 0 4px 20px rgba(22,101,52,0.3);
        }
        .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(22,101,52,0.4); }
        .nav-cta::after { display: none !important; }
        .mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

        .mobile-menu {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            background: rgba(240,253,244,0.98); backdrop-filter: blur(24px);
            z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
        }
        .mobile-menu.active { display: flex; }
        .mobile-menu a {
            font-family: 'Manrope', sans-serif; font-size: 1.5rem; font-weight: 700;
            color: var(--primary); text-decoration: none; transition: color 0.3s;
        }
        .mobile-menu a:hover { color: var(--secondary); }
        .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 2rem; color: var(--primary); cursor: pointer; }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh; display: flex; align-items: center;
            padding: 140px 0 80px; position: relative; overflow: hidden;
        }
        .hero-bg-gradient {
            position: absolute; top: -200px; right: -200px;
            width: 800px; height: 800px; border-radius: 50%;
            background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
            animation: float 8s ease-in-out infinite;
        }
        .hero-bg-gradient-2 {
            position: absolute; bottom: -150px; left: -150px;
            width: 600px; height: 600px; border-radius: 50%;
            background: radial-gradient(circle, rgba(22,101,52,0.08), transparent 70%);
            animation: float2 10s ease-in-out infinite;
        }
        .hero-floating-el {
            position: absolute; border-radius: 20px; opacity: 0.1;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        .hero-floating-el:nth-child(1) { width: 120px; height: 120px; top: 15%; right: 10%; animation: float 6s ease-in-out infinite; }
        .hero-floating-el:nth-child(2) { width: 80px; height: 80px; bottom: 20%; left: 5%; animation: float2 8s ease-in-out infinite; }
        .hero-floating-el:nth-child(3) { width: 60px; height: 60px; top: 30%; left: 15%; animation: float 7s ease-in-out infinite 1s; border-radius: 50%; }

        .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
        .hero-content { animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(22,101,52,0.08); border: 1px solid rgba(22,101,52,0.15);
            padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
            color: var(--primary); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em;
        }
        .hero-badge i { color: var(--secondary); }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
            line-height: 1.1; margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem; color: var(--text-muted); margin-bottom: 36px;
            max-width: 520px; line-height: 1.8;
        }
        .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 10px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff; padding: 16px 36px; border-radius: 50px;
            font-weight: 700; font-size: 1rem; text-decoration: none; border: none; cursor: pointer;
            transition: all 0.3s; box-shadow: 0 4px 20px rgba(22,101,52,0.3);
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(22,101,52,0.4); }
        .btn-secondary {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--glass-bg); backdrop-filter: blur(12px);
            border: 2px solid var(--border); color: var(--primary);
            padding: 14px 32px; border-radius: 50px;
            font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
            transition: all 0.3s;
        }
        .btn-secondary:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }

        .hero-visual { animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; opacity: 0; position: relative; }
        .hero-image-wrapper {
            position: relative; border-radius: var(--radius-lg); overflow: hidden;
            box-shadow: var(--shadow-xl);
        }
        .hero-image-wrapper img { width: 100%; height: 520px; object-fit: cover; display: block; }
        .hero-image-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(22,101,52,0.3), transparent 50%);
        }
        .hero-float-card {
            position: absolute; background: rgba(255,255,255,0.9); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius-sm);
            padding: 16px 20px; box-shadow: var(--shadow-md);
        }
        .hero-float-card.card-1 { bottom: -20px; left: -30px; animation: bounce-subtle 3s ease-in-out infinite; }
        .hero-float-card.card-2 { top: 20px; right: -20px; animation: bounce-subtle 3s ease-in-out infinite 1.5s; }
        .hero-float-card .hfc-icon {
            width: 40px; height: 40px; border-radius: 10px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 1rem; margin-bottom: 8px;
        }
        .hero-float-card .hfc-num { font-family: 'Manrope'; font-weight: 800; font-size: 1.3rem; color: var(--primary); }
        .hero-float-card .hfc-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

        /* ===== SECTION COMMON ===== */
        .section { padding: 100px 0; position: relative; }
        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.08em; color: var(--secondary); margin-bottom: 12px;
        }
        .section-label i { font-size: 0.7rem; }
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
            margin-bottom: 16px; color: var(--primary-dark);
        }
        .section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; line-height: 1.8; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header .section-desc { margin: 0 auto; }
        .section-divider {
            width: 60px; height: 4px; border-radius: 4px; margin: 16px auto 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        /* ===== ABOUT ===== */
        .about { background: #fff; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-image { position: relative; }
        .about-image img {
            width: 100%; height: 480px; object-fit: cover;
            border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
        }
        .about-image-badge {
            position: absolute; bottom: -20px; right: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; padding: 20px 28px; border-radius: var(--radius-sm);
            box-shadow: var(--shadow-md); text-align: center;
        }
        .about-image-badge .num { font-family: 'Manrope'; font-size: 2.2rem; font-weight: 800; display: block; }
        .about-image-badge .txt { font-size: 0.8rem; font-weight: 600; opacity: 0.9; }
        .about-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--primary-dark); margin-bottom: 20px; }
        .about-content > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
        .about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .about-value {
            background: var(--bg); border: 1px solid var(--border);
            border-radius: var(--radius-sm); padding: 20px; transition: all 0.3s;
        }
        .about-value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
        .about-value i { color: var(--secondary); font-size: 1.2rem; margin-bottom: 8px; display: block; }
        .about-value h5 { font-family: 'Manrope'; font-weight: 700; font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; }
        .about-value p { font-size: 0.8rem; color: var(--text-muted); }

        /* ===== MILESTONES ===== */
        .milestones {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            position: relative; overflow: hidden;
        }
        .milestones::before {
            content: ''; position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .milestones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
        .milestone-card {
            text-align: center; padding: 40px 24px;
            background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
            transition: all 0.4s;
        }
        .milestone-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }
        .milestone-icon {
            width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 16px;
            background: rgba(34,197,94,0.15); display: flex; align-items: center; justify-content: center;
            color: var(--secondary); font-size: 1.4rem;
        }
        .milestone-num { font-family: 'Manrope'; font-size: 2.8rem; font-weight: 800; color: #fff; }
        .milestone-num span { color: var(--secondary); }
        .milestone-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-top: 4px; }

        /* ===== WHY CHOOSE US ===== */
        .why-us { background: var(--bg); }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .feature-card {
            background: rgba(255,255,255,0.7); backdrop-filter: blur(12px);
            border: 1px solid var(--border); border-radius: var(--radius-md);
            padding: 36px 28px; transition: all 0.4s; position: relative; overflow: hidden;
        }
        .feature-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
        }
        .feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
        .feature-card:hover::before { transform: scaleX(1); }
        .feature-icon {
            width: 56px; height: 56px; border-radius: 16px;
            background: linear-gradient(135deg, rgba(22,101,52,0.1), rgba(34,197,94,0.1));
            display: flex; align-items: center; justify-content: center;
            color: var(--primary); font-size: 1.3rem; margin-bottom: 20px;
        }
        .feature-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--primary-dark); }
        .feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

        /* ===== WORK PROCESS ===== */
        .work-process { background: #fff; }
        .process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
        .process-step {
            text-align: center; padding: 36px 20px; position: relative;
            background: var(--bg); border-radius: var(--radius-md);
            border: 1px solid var(--border); transition: all 0.4s;
        }
        .process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
        .process-step-num {
            width: 50px; height: 50px; border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; font-family: 'Manrope'; font-weight: 800; font-size: 1.2rem;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(22,101,52,0.25);
        }
        .process-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
        .process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
        .process-connector {
            position: absolute; top: 60px; right: -14px; color: var(--secondary);
            font-size: 1.2rem; z-index: 2;
        }

        /* ===== SERVICES ===== */
        .services { background: var(--bg); }
        .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .service-card {
            background: #fff; border-radius: var(--radius-md); overflow: hidden;
            border: 1px solid var(--border); transition: all 0.4s; cursor: pointer;
        }
        .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
        .service-card-img { position: relative; overflow: hidden; height: 200px; }
        .service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
        .service-card:hover .service-card-img img { transform: scale(1.08); }
        .service-card-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(22,101,52,0.6), transparent 60%);
        }
        .service-card-body { padding: 24px; }
        .service-card-body i { color: var(--secondary); font-size: 1.3rem; margin-bottom: 12px; display: block; }
        .service-card-body h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
        .service-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
        .service-link {
            display: inline-flex; align-items: center; gap: 6px;
            color: var(--primary); font-weight: 700; font-size: 0.85rem;
            text-decoration: none; transition: gap 0.3s;
        }
        .service-link:hover { gap: 12px; color: var(--secondary); }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            position: relative; overflow: hidden; text-align: center;
        }
        .cta-section::before {
            content: ''; position: absolute; top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(34,197,94,0.15), transparent 50%);
        }
        .cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
        .cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
        .cta-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.8; }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 10px;
            background: #fff; color: var(--primary); padding: 16px 40px; border-radius: 50px;
            font-weight: 800; font-size: 1rem; text-decoration: none; border: none; cursor: pointer;
            transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .cta-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

        /* ===== INSURANCE ===== */
        .insurance { background: #fff; }
        .insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .insurance-cards { display: grid; gap: 20px; }
        .insurance-card {
            display: flex; gap: 20px; padding: 24px;
            background: var(--bg); border-radius: var(--radius-sm);
            border: 1px solid var(--border); transition: all 0.3s;
        }
        .insurance-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); transform: translateX(6px); }
        .insurance-card-icon {
            width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
            background: linear-gradient(135deg, rgba(22,101,52,0.1), rgba(34,197,94,0.1));
            display: flex; align-items: center; justify-content: center;
            color: var(--primary); font-size: 1.2rem;
        }
        .insurance-card h5 { font-family: 'Manrope'; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
        .insurance-card p { font-size: 0.85rem; color: var(--text-muted); }
        .insurance-image img {
            width: 100%; height: 450px; object-fit: cover;
            border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
        }

        /* ===== PRICING ===== */
        .pricing { background: var(--bg); }
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .pricing-card {
            background: #fff; border-radius: var(--radius-md); padding: 40px 32px;
            border: 2px solid var(--border); transition: all 0.4s; position: relative; overflow: hidden;
        }
        .pricing-card.featured {
            border-color: var(--secondary);
            box-shadow: var(--shadow-xl); transform: scale(1.04);
        }
        .pricing-card.featured::before {
            content: 'Most Popular'; position: absolute; top: 20px; right: -30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; font-size: 0.7rem; font-weight: 700; padding: 6px 40px;
            transform: rotate(45deg); text-transform: uppercase; letter-spacing: 0.05em;
        }
        .pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
        .pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
        .pricing-tier { font-size: 0.8rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
        .pricing-name { font-family: 'Manrope'; font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
        .pricing-price { font-family: 'Manrope'; font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
        .pricing-price span { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
        .pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
        .pricing-features { list-style: none; margin-bottom: 28px; }
        .pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-body); margin-bottom: 12px; }
        .pricing-features li i { color: var(--secondary); font-size: 0.85rem; }
        .pricing-btn {
            display: block; text-align: center; padding: 14px; border-radius: 50px;
            font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s; border: 2px solid var(--primary);
        }
        .pricing-btn-outline { color: var(--primary); background: transparent; }
        .pricing-btn-outline:hover { background: var(--primary); color: #fff; }
        .pricing-btn-fill { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-color: transparent; }
        .pricing-btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,101,52,0.3); }

        /* ===== BOOKING FORM ===== */
        .booking { background: #fff; }
        .booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
        .booking-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--primary-dark); margin-bottom: 16px; }
        .booking-info > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
        .booking-contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
        .booking-contact-item .bci-icon {
            width: 48px; height: 48px; border-radius: 14px;
            background: linear-gradient(135deg, rgba(22,101,52,0.1), rgba(34,197,94,0.1));
            display: flex; align-items: center; justify-content: center;
            color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
        }
        .booking-contact-item h5 { font-family: 'Manrope'; font-weight: 700; color: var(--primary-dark); font-size: 0.95rem; }
        .booking-contact-item p { font-size: 0.85rem; color: var(--text-muted); }

        .booking-form {
            background: var(--bg); border: 1px solid var(--border);
            border-radius: var(--radius-md); padding: 40px;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
        .form-group { margin-bottom: 16px; }
        .form-group label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--primary-dark); margin-bottom: 6px; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px 16px; border: 2px solid var(--border);
            border-radius: var(--radius-sm); font-family: 'Open Sans'; font-size: 0.9rem;
            background: #fff; color: var(--text-dark); transition: border-color 0.3s; outline: none;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .form-submit {
            width: 100%; padding: 16px; border: none; border-radius: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; font-weight: 800; font-size: 1rem; cursor: pointer;
            transition: all 0.3s; box-shadow: 0 4px 20px rgba(22,101,52,0.3);
        }
        .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(22,101,52,0.4); }
        .form-success {
            display: none; text-align: center; padding: 30px;
        }
        .form-success.show { display: block; }
        .form-success i { font-size: 3rem; color: var(--secondary); margin-bottom: 12px; }
        .form-success h4 { font-family: 'Manrope'; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
        .form-success p { color: var(--text-muted); font-size: 0.9rem; }

        /* ===== REVIEWS ===== */
        .reviews { background: var(--bg); }
        .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .review-card {
            background: #fff; border-radius: var(--radius-md); padding: 32px;
            border: 1px solid var(--border); transition: all 0.4s;
        }
        .review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .review-stars { margin-bottom: 14px; }
        .review-stars i { color: #fbbf24; font-size: 0.9rem; margin-right: 2px; }
        .review-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
        .review-author { display: flex; align-items: center; gap: 12px; }
        .review-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 1rem;
        }
        .review-author-info h5 { font-family: 'Manrope'; font-weight: 700; color: var(--primary-dark); font-size: 0.95rem; }
        .review-author-info p { font-size: 0.8rem; color: var(--text-muted); }

        /* ===== FAQ ===== */
        .faq { background: #fff; }
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item {
            border: 1px solid var(--border); border-radius: var(--radius-sm);
            margin-bottom: 12px; overflow: hidden; transition: all 0.3s;
        }
        .faq-item:hover { border-color: var(--secondary); }
        .faq-question {
            display: flex; align-items: center; justify-content: space-between;
            padding: 20px 24px; cursor: pointer; background: var(--bg);
            font-family: 'Manrope'; font-weight: 700; font-size: 1rem; color: var(--primary-dark);
            transition: background 0.3s; border: none; width: 100%; text-align: left;
        }
        .faq-question:hover { background: rgba(34,197,94,0.08); }
        .faq-question i { transition: transform 0.3s; color: var(--secondary); }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

        /* ===== CONTACT ===== */
        .contact { background: var(--bg); }
        .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
        .contact-info-cards { display: grid; gap: 16px; }
        .contact-card {
            display: flex; gap: 16px; padding: 24px;
            background: #fff; border-radius: var(--radius-sm);
            border: 1px solid var(--border); transition: all 0.3s;
        }
        .contact-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
        .contact-card-icon {
            width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
            background: linear-gradient(135deg, rgba(22,101,52,0.1), rgba(34,197,94,0.1));
            display: flex; align-items: center; justify-content: center;
            color: var(--primary); font-size: 1.1rem;
        }
        .contact-card h5 { font-family: 'Manrope'; font-weight: 700; color: var(--primary-dark); font-size: 0.95rem; margin-bottom: 4px; }
        .contact-card p { font-size: 0.85rem; color: var(--text-muted); }
        .contact-card a { color: var(--primary); text-decoration: none; font-weight: 600; }
        .contact-card a:hover { color: var(--secondary); }
        .contact-form {
            background: #fff; border: 1px solid var(--border);
            border-radius: var(--radius-md); padding: 36px;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            position: relative; overflow: hidden;
        }
        .newsletter::before {
            content: ''; position: absolute; top: -100px; right: -100px;
            width: 400px; height: 400px; border-radius: 50%;
            background: rgba(34,197,94,0.1);
        }
        .newsletter .container { position: relative; z-index: 1; max-width: 800px; text-align: center; }
        .newsletter h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
        .newsletter > .container > p { color: rgba(255,255,255,0.8); margin-bottom: 36px; }
        .newsletter-form {
            background: rgba(255,255,255,0.08); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md);
            padding: 32px; text-align: left;
        }
        .newsletter-form .form-row { margin-bottom: 12px; }
        .newsletter-form .form-group { margin-bottom: 12px; }
        .newsletter-form label { color: rgba(255,255,255,0.9); }
        .newsletter-form input[type="text"],
        .newsletter-form input[type="email"],
        .newsletter-form input[type="tel"],
        .newsletter-form input[type="date"] {
            width: 100%; padding: 12px 16px; border: 2px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-sm); font-family: 'Open Sans'; font-size: 0.9rem;
            background: rgba(255,255,255,0.08); color: #fff; outline: none; transition: border-color 0.3s;
        }
        .newsletter-form input:focus { border-color: var(--secondary); }
        .newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
        .newsletter-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
        .newsletter-consent input[type="checkbox"] { margin-top: 4px; accent-color: var(--secondary); }
        .newsletter-consent label { font-size: 0.8rem; color: rgba(255,255,255,0.7); cursor: pointer; }
        .newsletter-form .form-submit { background: #fff; color: var(--primary); }
        .newsletter-form .form-submit:hover { background: var(--secondary); color: #fff; }
        .newsletter-success {
            display: none; padding: 40px; text-align: center;
        }
        .newsletter-success.show { display: block; }
        .newsletter-success i { font-size: 3rem; color: var(--secondary); margin-bottom: 12px; }
        .newsletter-success h4 { color: #fff; font-family: 'Manrope'; font-weight: 800; margin-bottom: 8px; }
        .newsletter-success p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

        /* ===== PRIVACY / TERMS ===== */
        .legal-section { background: #fff; padding: 80px 0; }
        .legal-content { max-width: 800px; margin: 0 auto; }
        .legal-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin: 28px 0 12px; }
        .legal-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
        .legal-content ul { margin-left: 24px; margin-bottom: 12px; }
        .legal-content li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 80px 0 0;
        }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; }
        .footer-about .nav-logo { margin-bottom: 16px; }
        .footer-about .nav-logo-text { color: #fff; }
        .footer-about p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
        .footer-socials { display: flex; gap: 10px; }
        .footer-socials a {
            width: 40px; height: 40px; border-radius: 10px;
            background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.6); font-size: 1rem; transition: all 0.3s; text-decoration: none;
        }
        .footer-socials a:hover { background: var(--secondary); color: #fff; }
        .footer h5 { font-family: 'Manrope'; font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
        .footer-links a:hover { color: var(--secondary); }
        .footer-newsletter p { font-size: 0.9rem; margin-bottom: 16px; line-height: 1.7; }
        .footer-newsletter-btn {
            display: inline-flex; align-items: center; gap: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; padding: 12px 24px; border-radius: 50px;
            font-weight: 700; font-size: 0.85rem; text-decoration: none;
            transition: all 0.3s;
        }
        .footer-newsletter-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(34,197,94,0.3); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
            display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
        }
        .footer-bottom p { font-size: 0.8rem; }
        .footer-bottom-links { display: flex; gap: 24px; }
        .footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
        .footer-bottom-links a:hover { color: var(--secondary); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container { grid-template-columns: 1fr; text-align: center; }
            .hero p { margin: 0 auto 36px; }
            .hero-btns { justify-content: center; }
            .hero-visual { max-width: 550px; margin: 0 auto; }
            .about-grid, .insurance-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
            .about-image { order: -1; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-card.featured { transform: none; }
            .pricing-card.featured:hover { transform: translateY(-8px); }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .milestones-grid { grid-template-columns: repeat(2, 1fr); }
            .process-timeline { grid-template-columns: repeat(2, 1fr); }
            .process-connector { display: none; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .hero { padding-top: 120px; min-height: auto; padding-bottom: 60px; }
            .hero-image-wrapper img { height: 350px; }
            .hero-float-card.card-1 { left: 10px; bottom: -10px; }
            .hero-float-card.card-2 { right: 10px; }
            .features-grid, .services-grid, .reviews-grid, .pricing-grid { grid-template-columns: 1fr; }
            .milestones-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .process-timeline { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .section { padding: 60px 0; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero-btns { flex-direction: column; align-items: center; }
            .milestones-grid { grid-template-columns: 1fr; }
            .about-values { grid-template-columns: 1fr; }
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
            background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
            border-top: 1px solid var(--border); padding: 20px 0;
            transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        .cookie-banner.show { transform: translateY(0); }
        .cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
        .cookie-inner p { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
        .cookie-inner p a { color: var(--primary); font-weight: 600; }
        .cookie-btns { display: flex; gap: 10px; }
        .cookie-accept {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; border: none; padding: 10px 24px; border-radius: 50px;
            font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all 0.3s;
        }
        .cookie-accept:hover { transform: translateY(-2px); }
        .cookie-decline {
            background: transparent; border: 2px solid var(--border); color: var(--text-muted);
            padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
            cursor: pointer; transition: all 0.3s;
        }
        .cookie-decline:hover { border-color: var(--primary); color: var(--primary); }

        /* Back to Top */
        .back-to-top {
            position: fixed; bottom: 30px; right: 30px; z-index: 99;
            width: 48px; height: 48px; border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; border: none; cursor: pointer; font-size: 1.1rem;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(22,101,52,0.3);
            opacity: 0; transform: translateY(20px); transition: all 0.3s;
        }
        .back-to-top.show { opacity: 1; transform: translateY(0); }
        .back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(22,101,52,0.4); }
