        :root {
            /* The Maritime/River Palette */
            --maritime-blue: #3d5a80;  /* Lighter surface water */
            --hudson-blue: #1b263b;    /* Deep river bottom */
            --river-slate: #415a77;
            --river-birch: #fdfcfb;
            --white: #ffffff;
            
            /* The Sunset/Valley Accent Palette (NEWLY HARMONIZED) */
            --valley-terracotta: #a06a50; /* Sophisticated accent (was green) */
            --btn-start: #f7b733;         /* Warm Yellow-Orange */
            --btn-end: #fc4a1a;           /* Vibrant Red-Orange */
            --shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            line-height: 1.7;
            color: #2b2d42;
            background-color: var(--river-birch);
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        /* --- Mobile Nav Logic --- */

/* 1. Hide the hamburger on desktop */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2000;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--hudson-blue);
    border-radius: 3px;
    transition: 0.3s;
}

/* 2. Mobile Breakpoint (768px and down) */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex; /* Show hamburger */
    }

    .links {
        display: none; /* Hide links by default */
        position: absolute;
        top: 100%; /* Sits right under the nav */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 2px solid var(--river-birch);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        text-align: center;
        backdrop-filter: blur(10px);
    }

    /* When the menu is active/open */
    .links.active {
        display: flex;
    }

    nav a:not(.logo) {
        margin: 1.5rem 0; /* Stack them vertically */
        font-size: 1.1rem;
    }
}

        /* Glassmorphism Nav */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 8%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .logo {
            font-weight: 900;
            font-size: 1.2rem;
            color: var(--hudson-blue);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo::before {
            content: '';
            width: 12px;
            height: 12px;
            background: var(--btn-end); 
            border-radius: 50%;
        }

        nav a:not(.logo) {
            margin-left: 2rem;
            text-decoration: none;
            color: var(--river-slate);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        nav a:hover { color: var(--btn-end); }

        /* The Maritime Gradient Hero */
        header {
            padding: 12rem 8% 14rem;
            background: linear-gradient(to bottom, var(--maritime-blue) 0%, var(--hudson-blue) 100%);
            color: var(--white);
            text-align: center;
        }

        header h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin: 0;
            line-height: 1.1;
            letter-spacing: -3px;
            font-weight: 800;
        }

        header p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 2rem auto 3rem;
            font-weight: 300;
        }

        /* The Sunset CTA Button */
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, var(--btn-start) 0%, var(--btn-end) 100%);
            color: white;
            padding: 1.1rem 2.8rem;
            text-decoration: none;
            border-radius: 8px; 
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
            transition: all 0.2s ease-in-out;
            border: none;
            text-align: center;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(252, 74, 26, 0.3); 
            cursor: pointer;
        }

        .secondary-btn { 
            background: var(--hudson-blue);
            box-shadow: none;
        }

        main {
            max-width: 1200px;
            margin: -8rem auto 0;
            padding: 0 2rem 6rem;
            position: relative;
            z-index: 2;
        }

        /* Pricing Grid - Balanced Layout */
.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 6rem;
    /* Default: 1 column for mobile */
    grid-template-columns: 1fr;
}

/* Tablet & Standard Laptops: Balanced 2x2 */
@media (min-width: 700px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Screens & Desktops: Professional 4-across */
@media (min-width: 1250px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Base Tier Style */
.tier {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.02);
    
    /* THE FIX: Flexbox Column Layout */
    display: flex;
    flex-direction: column;
    
    transition: transform 0.3s ease;
    position: relative;
    height: 100%; 
}

/* THE FIX: Aligning the Top */
/* This ensures the H3 always starts at the same spot, badge or no badge */
.tier-header {
    min-height: 110px; /* Adjust this if your badge/title combo needs more space */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes the title to the bottom of this header block */
}

.tier h3 { 
    font-size: 1.6rem; 
    color: var(--hudson-blue); 
    margin-bottom: 0; /* Clear margin to keep alignment tight */
    letter-spacing: -0.5px; 
}

.price { 
    font-size: 2.8rem; 
    font-weight: 900; 
    color: var(--btn-end); 
    margin: 1rem 0; 
    letter-spacing: -1px; 
}

/* THE FIX: Aligning the Buttons */
.tier ul { 
    list-style: none; 
    padding: 0; 
    margin: 1.5rem 0 2.5rem; 
    
    /* This is the magic line: it grows to fill all empty space, 
       pushing the button to the bottom of the card */
    flex-grow: 1; 
}

.tier li { 
    margin-bottom: 0.8rem; 
    padding-left: 1.5rem; 
    position: relative; 
    font-size: 0.95rem; 
    color: var(--river-slate); 
}

.tier:hover { transform: translateY(-10px); }

/* Ensure the 'Standard' card pop still works in the 2x2 and 4x1 layouts */
.standard-highlight {
    border: 2px solid var(--valley-terracotta) !important;
    z-index: 10;
}

/* Scale effect only on larger screens to avoid overlapping in tight 2x2 grids */
@media (min-width: 1250px) {
    .standard-highlight {
        transform: scale(1.05);
    }
    .standard-highlight:hover {
        transform: scale(1.05) translateY(-10px);
    }
}

        /* SEO Feature Banner */
        .feature-banner {
            background: #fff;
            padding: 4rem;
            border-radius: 32px;
            box-shadow: var(--shadow);
            margin: 6rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .feature-banner h3 { color: var(--valley-terracotta); font-size: 2rem; margin-top: 0; letter-spacing: -1px; }
        
        .checklist-box {
            background: var(--river-birch);
            padding: 2.5rem;
            border-radius: 20px;
            font-size: 0.95rem;
            border: 1px dashed var(--river-slate);
        }

        /* Contact Section */
        .contact-wrap {
            background: #fff;
            padding: 5rem;
            border-radius: 40px;
            box-shadow: 0 40px 100px rgba(0,0,0,0.03);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-wrap h2 { font-size: 3rem; letter-spacing: -2px; line-height: 1.1; margin-top: 0; color: var(--hudson-blue); }

        input, textarea {
            width: 100%;
            padding: 1.2rem;
            margin-bottom: 1rem;
            border: 2px solid #f1f3f5;
            border-radius: 12px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus { outline: none; border-color: var(--btn-end); }

        footer {
            text-align: center;
            padding: 6rem 2rem;
            background: var(--hudson-blue);
            color: white;
            margin-top: 8rem;
        }

        @media (max-width: 950px) {
            .feature-banner, .contact-wrap { grid-template-columns: 1fr; padding: 2.5rem; }
            header h1 { font-size: 2.8rem; }
            main { margin-top: -4rem; }
        }

        /* FAQ Styling */
        .faq-container {
            max-width: 800px;
            margin: 6rem auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            overflow: hidden;
        }

        summary {
            padding: 1.5rem;
            font-weight: 700;
            color: var(--hudson-blue);
            cursor: pointer;
            list-style: none;
            position: relative;
            transition: background 0.2s;
        }

        summary:hover {
            background: #fdf8f5;
        }

        /* Custom indicator instead of the default arrow */
        summary::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            color: var(--valley-terracotta);
            font-size: 1.2rem;
        }

        details[open] summary::after {
            content: '-';
        }

        .faq-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--river-slate);
            font-size: 0.95rem;
            border-top: 1px solid #f1f3f5;
            padding-top: 1rem;
        }

        .faq-content strong {
            color: var(--hudson-blue);
        }