@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --atoll: #0a5a78;
            --ecru-white: #fbfbf5;
            --fern: #5ab453;
            --atlantis: #92c933;
            --shadow-green: #99bac0;
            --deco: #cddf8f;
            --botticelli: #c9e0e5;
            --beryl-green: #d5e5c3;
            --waterloo: #7e8494;
            --gray-suit: #bcb9c6;
            --insurance-blue: #1E40AF;
            --insurance-gold: #F59E0B;
            --insurance-green: #10B981;
            --insurance-purple: #7C3AED;
            --insurance-orange: #EA580C;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--ecru-white);
            color: var(--waterloo);
        }
        
        /* Custom animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            75% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(90, 180, 83, 0.3), 
                           0 0 40px rgba(10, 90, 120, 0.1); 
            }
            50% { 
                box-shadow: 0 0 30px rgba(90, 180, 83, 0.5), 
                           0 0 60px rgba(10, 90, 120, 0.2); 
            }
        }
        
        @keyframes slide-up {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes wave {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            75% { transform: translateX(10px) translateY(5px); }
        }

        @keyframes fade-in-up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce-in {
            0% { opacity: 0; transform: scale(0.8); }
            50% { transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }

        @keyframes lead-flow {
            0% { transform: translateX(-100%) scale(0); opacity: 0; }
            20% { opacity: 1; transform: scale(1); }
            80% { opacity: 1; }
            100% { transform: translateX(300%) scale(0); opacity: 0; }
        }

        @keyframes funnel-drop {
            0% { transform: translateY(-20px); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateY(20px); opacity: 0; }
        }

        @keyframes score-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes conversion-grow {
            0% { width: 0%; }
            100% { width: var(--conversion-width, 85%); }
        }

        @keyframes policy-sell {
            0% { opacity: 0; transform: translateY(10px) scale(0.8); }
            50% { opacity: 1; transform: scale(1.1); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        
        .float-animation {
            animation: float 8s ease-in-out infinite;
        }
        
        .pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        .slide-up {
            animation: slide-up 0.8s ease-out forwards;
        }
        
        .wave-animation {
            animation: wave 6s ease-in-out infinite;
        }

        .fade-in-up {
            animation: fade-in-up 0.8s ease-out forwards;
        }

        .bounce-in {
            animation: bounce-in 0.6s ease-out forwards;
        }

        .lead-flow {
            animation: lead-flow 4s ease-in-out infinite;
        }

        .funnel-drop {
            animation: funnel-drop 3s ease-in-out infinite;
        }

        .score-pulse {
            animation: score-pulse 2s ease-in-out infinite;
        }

        .conversion-grow {
            animation: conversion-grow 2s ease-out;
        }

        .policy-sell {
            animation: policy-sell 1.5s ease-out;
        }
        
        /* Gradient backgrounds */
        .gradient-bg {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 50%, var(--atlantis) 100%);
        }
        
        .gradient-bg-soft {
            background: linear-gradient(135deg, var(--botticelli) 0%, var(--beryl-green) 50%, var(--deco) 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Insurance specific gradients */
        .gradient-bg-insurance {
            background: linear-gradient(135deg, var(--insurance-blue) 0%, var(--insurance-purple) 50%, var(--insurance-green) 100%);
        }
        
        .gradient-bg-insurance-soft {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(16, 185, 129, 0.1) 100%);
        }
        
        .text-gradient-insurance {
            background: linear-gradient(135deg, var(--insurance-blue) 0%, var(--insurance-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Glassmorphism effect */
        .glass {
            background: rgba(251, 251, 245, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(153, 186, 192, 0.3);
        }
        
        .glass-green {
            background: rgba(213, 229, 195, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(146, 201, 51, 0.2);
        }
        
        .glass-insurance {
            background: rgba(30, 64, 175, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(30, 64, 175, 0.2);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--ecru-white);
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--atoll), var(--fern));
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--fern), var(--atlantis));
        }
        
        /* Button styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(10, 90, 120, 0.3);
        }
        
        .btn-secondary {
            border: 2px solid var(--fern);
            color: var(--fern);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--fern);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Insurance specific button styles */
        .btn-primary-insurance {
            background: linear-gradient(135deg, var(--insurance-blue), var(--insurance-green));
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-insurance:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
        }
        
        .btn-secondary-insurance {
            border: 2px solid var(--insurance-blue);
            color: var(--insurance-blue);
            transition: all 0.3s ease;
        }
        
        .btn-secondary-insurance:hover {
            background: var(--insurance-blue);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Navigation styles */
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            padding-bottom: 2px;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--fern), var(--atlantis));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: var(--atlantis);
            border-radius: 50%;
            opacity: 0;
            transform: translateX(-50%) translateY(10px);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .nav-link:hover {
            color: var(--fern);
            transform: translateY(-1px);
        }

        /* Mobile menu styles */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
            background: white;
            backdrop-filter: none;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            width: 24px;
            height: 18px;
            cursor: pointer;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: var(--atoll);
            transition: all 0.3s ease;
            margin: 2px 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 1px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -4px);
        }

        /* Card hover effects */
        .hover-card {
            transition: all 0.3s ease;
        }

        .hover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(10, 90, 120, 0.15);
        }

        /* Insurance specific styles */
        .lead-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .lead-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--insurance-green);
        }

        .metric-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(10, 90, 120, 0.2);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(10, 90, 120, 0.2);
        }

        .metric-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Lead scoring visualization */
        .lead-score {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: conic-gradient(var(--insurance-green) 0deg 270deg, rgba(16, 185, 129, 0.2) 270deg 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--insurance-blue);
        }

        .lead-score.high {
            background: conic-gradient(var(--insurance-green) 0deg 324deg, rgba(16, 185, 129, 0.2) 324deg 360deg);
        }

        .lead-score.medium {
            background: conic-gradient(var(--insurance-gold) 0deg 216deg, rgba(245, 158, 11, 0.2) 216deg 360deg);
        }

        .lead-score.low {
            background: conic-gradient(var(--insurance-orange) 0deg 108deg, rgba(234, 88, 12, 0.2) 108deg 360deg);
        }

        /* Sales funnel visualization */
        .funnel-stage {
            background: linear-gradient(135deg, var(--insurance-blue), var(--insurance-purple));
            color: white;
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .funnel-stage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); width: 0%; }
            50% { width: 100%; }
            100% { transform: translateX(100%); width: 0%; }
        }

        /* Policy type badges */
        .policy-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .policy-badge.auto {
            background: rgba(30, 64, 175, 0.1);
            color: var(--insurance-blue);
        }

        .policy-badge.home {
            background: rgba(16, 185, 129, 0.1);
            color: var(--insurance-green);
        }

        .policy-badge.life {
            background: rgba(124, 58, 237, 0.1);
            color: var(--insurance-purple);
        }

        .policy-badge.health {
            background: rgba(245, 158, 11, 0.1);
            color: var(--insurance-gold);
        }

        /* Responsive typography */
        @media (max-width: 640px) {
            .text-hero {
                font-size: 2rem;
                line-height: 1.15;
            }
            
            .text-hero-sub {
                font-size: 1.125rem;
            }
        }

        @media (min-width: 641px) and (max-width: 768px) {
            .text-hero {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .text-hero-sub {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 769px) {
            .text-hero {
                font-size: 3rem;
                line-height: 1.1;
            }
            
            .text-hero-sub {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .text-hero {
                font-size: 3.5rem;
                line-height: 1.1;
            }
        }

        @media (min-width: 1280px) {
            .text-hero {
                font-size: 4rem;
                line-height: 1.1;
            }
        }

        /* Card hover effects for mobile */
        @media (hover: none) {
            .hover-card:active {
                transform: scale(0.98);
            }
        }