  :root {
            --primary: #0f756a;
            --primary-dark: #0a5549;
            --primary-light: #e0f2f1;
            --bg: #f8fafc;
            --text: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --gradient-primary: linear-gradient(135deg, #0f756a 0%, #26a69a 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Header - Island Style */
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 900px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 1000;
            border-radius: 100px;
            padding: 8px 12px 8px 24px;
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
            border: 2px solid var(--primary); /* User requested primary border */
            transition: all 0.3s ease;
        }
        
        header.scrolled {
             top: 10px;
             max-width: 650px; /* Shrinks from 900px */
             padding: 6px 8px 6px 20px; /* Stronger shrink effect */
             background: rgba(255, 255, 255, 0.95);
        }

        .container {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .container-block {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            display: block;
            position: relative;
            z-index: 2;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 18px;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 2;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links a.nav-item {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s;
            position: relative;
        }
        
        .nav-links a.nav-item:hover {
            color: var(--primary);
        }

        .btn {
            background-color: var(--primary);
            color: var(--white) !important;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(15, 117, 106, 0.25);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(15, 117, 106, 0.3);
        }

        /* Hero */
        .hero {
            padding: 0;
            text-align: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero h1 {
            font-size: 80px;
            line-height: 1.5;
            margin-bottom: 24px;
            color: var(--text);
            letter-spacing: -0.03em;
            font-weight: 800;
        }

        .hero h1 span {
            background: white;
            color: var(--primary);
            padding: 2px 8px;
            border-radius: 8px;
            display: inline-block;
            margin: 0 4px;
            transform: rotate(-2deg)
        }

        .hero p {
            font-size: 20px;
            color: #555;
            max-width: 600px;
            margin: 0 auto 40px;
        }

       

        /* Features */
        .features {
            padding: 100px 0;
            background: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            margin-bottom: 16px;
            color: var(--primary);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            padding: 32px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            border: 2px solid rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }
        
        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
            border-color: var(--primary);
        }

        .icon-box {
            width: 48px;
            height: 48px;
            background: var(--bg);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 20px;
            border: 1px solid var(--primary-light);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .icon-box {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .icon-box svg {
            width: 24px;
            height: 24px;
            stroke-width: 2;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: #666;
            font-size: 15px;
        }

        /* Pricing */
        .pricing {
            padding: 100px 0;
            background: var(--bg);
        }

        .pricing .section-title h2,
        .pricing .section-title p {
             color: #1e293b !important;
        }

        .original-price {
            text-decoration: line-through;
            color: #94a3b8;
            font-size: 0.6em;
            font-weight: 500;
            margin-right: 8px;
        }

        .pricing-alert {
            background: #ffecec;
            color: #d63031;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 500;
            border: 1px solid #fab1a0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
            z-index: 2;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .plan-name {
            font-size: 20px;
            font-weight: 600;
            color: #555;
            margin-bottom: 10px;
        }

        .plan-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 5px;
        }

        .plan-period {
            font-size: 14px;
            color: #888;
            margin-bottom: 30px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .plan-features li {
            margin-bottom: 12px;
            display: flex;
            gap: 10px;
            font-size: 14px;
            color: #444;
        }

        .plan-features li::before {
            content: "";
            min-width: 16px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f756a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            margin-top: 4px;
        }

        .pricing-btn {
            width: 100%;
            text-align: center;
            justify-content: center;
        }

        .pricing-btn.outline {
            background: transparent;
            color: var(--primary) !important;
            border: 2px solid var(--primary);
        }
        
        .pricing-btn.outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .disclaimer {
            text-align: center;
            margin-top: 40px;
            font-size: 0.85rem;
            color: #666;
        }

        /* FAQ */
        .faq {
            padding: 100px 0;
            background: #fff;
        }

        .faq-grid {
            display: grid;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 2px solid #0a5549;
            border-radius: 8px;
            padding: 24px;
        }

        .faq-item h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }

        .faq-item p {
            font-size: 15px;
            color: #555;
            margin-bottom: 10px;
        }
        
        .faq-item a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        
        .faq-item a:hover {
            text-decoration: underline;
        }

        /* CTA */
        .cta {
            padding: 100px 0;
            text-align: center;
            background: var(--bg);
        }

        .cta-box {
            background: var(--primary);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-box h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .cta-box p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-white {
            background: white !important;
            color: var(--primary) !important;
            font-weight: 700;
        }

        .btn-white:hover {
            background: #f0f0f0 !important;
        }

        /* Footer */

        /* Aurora Background Animation */
        @keyframes aurora {
            0% {
                background-position: 50% 50%, 50% 50%;
            }
            100% {
                background-position: 350% 50%, 350% 50%;
            }
        }

        .aurora-container {
            position: relative;
            background-color: var(--bg);
            color: var(--text);
            overflow: hidden;
            /* Enhanced Teal Palette */
            --aurora: repeating-linear-gradient(100deg, #0f756a 10%, #49d7c9 15%, #0f756a 20%, #97e3db 25%, #0f756a 30%);
            --white-gradient: repeating-linear-gradient(100deg, rgba(248,250,252,0) 0%, rgba(248,250,252,0) 7%, transparent 10%, transparent 12%, rgba(248,250,252,0) 16%);
        }

        .aurora-bg {
            position: absolute;
            inset: -20px;
            pointer-events: none;
            opacity: 0.6;
            filter: blur(40px);
            background-image: var(--white-gradient), var(--aurora);
            background-size: 300%, 200%;
            background-position: 50% 50%, 50% 50%;
            animation: aurora 40s linear infinite alternate;
        }

        .footer-wrapper .aurora-bg {
            mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
        }
        
        .aurora-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: var(--white-gradient), var(--aurora);
            background-size: 200%, 100%;
            background-attachment: fixed;
            mix-blend-mode: overlay;
            opacity: 0.5;
            animation: aurora 60s linear infinite reverse;
        }

        /* FAQ Accordion */
        .faq-item {
            border: 2px solid rgba(0,0,0,0.05);
            border-radius: 12px;
            padding: 0;
            background: white;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
            transition: all 0.3s;
            cursor: pointer;
            overflow: hidden;
        }

        .faq-header {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-header h3 {
            font-size: 16px;
            margin: 0;
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .faq-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
            color: var(--primary);
        }

        .faq-item.expanded .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-item.expanded {
             box-shadow: 0 10px 15px -3px rgba(15, 117, 106, 0.1);
             border-color: #0a5549;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
            padding: 0 24px;
            color: #555;
            font-size: 15px;
        }

        .faq-item.expanded .faq-content {
            max-height: 1000px; /* Approximate max height */
            padding-bottom: 24px;
            transition: max-height 0.4s ease-in-out;
        }
        
        /* Mobile Optimization */
        @media (max-width: 768px) {
            header {
                width: 95%;
                padding: 8px 16px;
                top: 10px;
            }
            
            .nav-links .nav-item {
                display: none; /* Hide nav links on mobile */
            }
            
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .container-block {
                padding: 0 16px;
            }
        }

        footer {
            padding: 40px 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
            border-top: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 10;
        }

        footer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        
        .footer-wrapper {
            position: relative;
            background-color: var(--bg);
            overflow: hidden;
        }

        /* Footer Reveal */
        .main-content {
            position: relative;
            z-index: 10;
            background: var(--bg);
            margin-bottom: 350px;
        }

        .footer-reveal {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 350px;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            pointer-events: none;
        }

        .reveal-text {
            font-size: 15vw;
            font-weight: 900;
            text-transform: uppercase;
            /* Core Brand Gradient: Teal to Light Teal */
            background:#0f756af2;
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 4s linear infinite;
            white-space: nowrap;
            filter: drop-shadow(0 0 20px rgba(15, 117, 106, 0.3));
        }
        
        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }
        
        @media (max-width: 768px) {
            .main-content {
                margin-bottom: 140px;
            }
            .footer-reveal {
                height: 140px;
            }
        }

        /* Contact Page Specifics */
        .hero-image {
            margin-top: 60px;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(15, 117, 106, 0.15);
            overflow: hidden;
            border: 4px solid var(--primary);
            display: inline-block;
        }

        /* Utility for Aurora Fade */
        .aurora-fade-bottom {
            mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
        }
