@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #27261f;
    font-weight: 400;
    background: #fefbf8;
    padding-top: 120px !important; /* Account for wider floating header */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Disjointed Navigation - Always Consistent */
header {
    background: rgba(149, 6, 6, 0.7) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(39, 38, 31, 0.15), 0 4px 16px rgba(149, 6, 6, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: none !important;
    transform: none !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(2px);
}

.logo img {
    height: 48px;
    width: auto;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background: #27261f;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1a1915;
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid #e3d5cf;
    color: #27261f;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fefbf8;
}

.btn-secondary:hover {
    border-color: #8a6d55;
    background: #e1a998;
    color: white;
}

/* Navigation Button Overrides for Coral Background */
header .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

header .btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-1px);
}

header .btn-primary {
    background: #27261f;
    color: white;
}

header .btn-primary:hover {
    background: #1a1915;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: #fefbf8;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #e3d5cf;
    color: #950606;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #27261f;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: #8a6d55;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(39, 38, 31, 0.1), 0 10px 10px -5px rgba(39, 38, 31, 0.04);
    border: 1px solid #e3d5cf;
    max-width: 400px;
}

.hero-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #27261f;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #e3d5cf;
    border-radius: 12px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #950606;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #8a6d55;
    margin-top: 8px;
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #950606;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: white;
    opacity: 0.9;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e3d5cf;
    transition: all 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(39, 38, 31, 0.1);
    background: #e1a998;
    color: white;
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: #e3d5cf;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #27261f;
    margin-bottom: 12px;
}

.problem-card p {
    color: #8a6d55;
    line-height: 1.6;
}

.problem-card:hover h3,
.problem-card:hover p {
    color: white;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: #fefbf8;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #27261f;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.solution-text p {
    font-size: 18px;
    color: #8a6d55;
    margin-bottom: 32px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-weight: 500;
}

.solution-features li::before {
    content: "✓";
    background: #e1a998;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 12px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #27261f;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

.btn-cta {
    background: #950606;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: #7a0505;
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: #e3d5cf;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #8a6d55;
}

footer p {
    color: #8a6d55;
    font-size: 14px;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    pointer-events: auto;
    position: relative;
    z-index: 1002;
}

.burger-line {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 8px;
    right: 8px;
    background: rgba(149, 6, 6, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 16px;
}

.mobile-nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-actions .btn-primary,
.mobile-nav-actions .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    header {
        top: 12px !important;
        left: 12px !important;
        right: 12px !important;
    }

    nav {
        padding: 18px 32px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px !important;
    }

    header {
        top: 8px !important;
        left: 8px !important;
        right: 8px !important;
        border-radius: 20px !important;
    }

    nav {
        padding: 16px 20px;
        justify-content: space-between;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-content,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

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