:root {
    /* Colors */
    --bg-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --accent-navy: #002b5c;
    --accent-charcoal: #2d2d2d;
    --border-light: #e0e0e0;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --section-padding: 100px 20px;
    --container-width: 1100px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 500;
    color: var(--text-secondary);
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: var(--text-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Authority Strip */
.authority-strip {
    padding: 20px 0;
    background: #fdfdfd;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-top: 40px;
}

.authority-strip .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.authority-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.authority-item span {
    color: var(--accent-navy);
    font-weight: 700;
}

/* Grid Sections */
section {
    padding: var(--section-padding);
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.card {
    padding: 40px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

/* How It Works */
.step {
    text-align: center;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--text-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-weight: 700;
}

/* Pricing */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--text-primary);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 15px 0;
}

.value-anchor {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-navy);
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Founding Member Section */
.founding-section {
    max-width: 500px;
    margin: 40px auto 0;
    padding: 30px;
    background: #f0f7ff;
    border: 1px dashed var(--accent-navy);
    border-radius: 12px;
    text-align: center;
}

.founding-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-navy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.founding-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
}

/* Guarantee Section */
.guarantee-box {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.guarantee-box h4 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--accent-navy);
}

/* Comparison Cards */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 40px;
}

.comparison-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.comparison-header {
    background: var(--accent-charcoal);
    color: white;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.before,
.after {
    padding: 40px;
}

.before {
    background: #fdfdfd;
    border-right: 1px solid var(--border-light);
}

.after {
    background: white;
}

.label-before {
    display: inline-block;
    color: #cc0000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.label-after {
    display: inline-block;
    color: #008000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.response-text {
    font-weight: 500;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-navy);
    padding-left: 20px;
}

/* Mobile Nav */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

/* Footer (Updated) */
footer {
    padding: 60px 0;
    background: #f9f9f9;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
        /* Add JS toggle later */
    }

    .comparison-content {
        grid-template-columns: 1fr;
    }

    .before {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 100px 40px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: block;
        /* Overwrite display:none if nav was hidden */
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        font-size: 1.25rem;
    }

    .contact-section .container>div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}