:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-card: #161616;
    --bg-tertiary: #1a1a1a;
    --accent-gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 100%);
    --accent-purple: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.1);

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

    /* Spacing */
    --container-padding: 2rem;
    --section-spacing: 100px;
    /* Increased padding */

    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;

    /* Effects */
    --shadow-glow: 0 0 20px rgba(191, 149, 63, 0.2);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ... Resets from before ... */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    display: flex;
    align-items: center;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
}

/* Hero */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    font-size: 0.9rem;
}

.chat-bubble.user {
    background: var(--accent-purple);
    color: white;
    align-self: flex-end;
    border-radius: 12px;
    border-bottom-right-radius: 2px;
}

.booking-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    font-weight: 600;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

/* Sections */
.mission,
.services,
.pricing,
.footer-cta,
.gap-section,
.founders-section {
    padding: var(--section-spacing) 0;
}

.services {
    background: var(--bg-card);
}

/* Cards */
.card,
.service-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.card:hover,
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.icon,
.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card h3,
.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card p,
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: "•";
    color: var(--accent-gold);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, var(--bg-tertiary) 100%);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: black;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.plan-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.plan-sub {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.plan-features li::before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
}

.pricing-card.accelerator {
    border: 1px dashed var(--accent-purple);
}

.pricing-card.accelerator .plan-features li::before {
    color: var(--accent-purple);
}

/* Footer CTA */
.footer-cta .cta-box {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border: 1px solid var(--border-color);
    padding: 4rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

@media (min-width: 768px) {
    .cta-form {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: span 2;
    }
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-block {
    width: 100%;
    border: none;
    font-size: 1.1rem;
    padding: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .nav {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo,
    .social-icons {
        justify-content: center;
    }

    .cta-form {
        flex-direction: column;
    }
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gold {
    color: var(--accent-gold);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: var(--shadow-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* NEW OVERHAUL SECTIONS */

/* Glass Utility */
.glass-card {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(12px);
    border: var(--glass-border);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    margin-top: 4rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: var(--glass-border);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* System Gap Section */
.gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gap-column {
    padding: 3rem;
    border-radius: 24px;
}

.gap-column.chaos {
    background: rgba(255, 59, 48, 0.05);
    /* Subtle red tint */
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.gap-column.elevate {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent), var(--bg-card);
    border: 1px solid var(--accent-gold);
}

.gap-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.gap-list.chaos li::before {
    content: "✖";
    color: #ff3b30;
    font-weight: bold;
}

.gap-list.elevate li::before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
}

.gap-icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--accent-gold);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-title {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Founder's Manifesto Section */
.founders-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-primary);
    position: relative;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founders-headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.founders-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founders-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.vanity-metric-box {
    border-left: 4px solid var(--accent-gold);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin: 1rem 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.standard-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.standard-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.signature {
    font-family: serif;
    /* Fallback */
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Responsive updates for new sections */
@media (max-width: 960px) {
    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .standards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founders-headline {
        font-size: 2.5rem;
    }
}

/* Footer Updates */
.footer-signature {
    margin-top: 1rem;
    font-family: serif;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-link {
    color: var(--text-primary) !important;
    /* Force white text */
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold) !important;
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.4);
}