/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #10b981;
    --warning: #f59e0b;
    --border: #334155;
    --max-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Navigation */
.nav-container {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links > a:hover {
    color: var(--text-primary);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    cursor: pointer;
}

.dropdown-trigger:hover {
    color: var(--text-primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--dark);
    color: var(--text-primary);
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.value-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--border);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--dark-lighter);
    border-color: var(--text-secondary);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.indicator-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Wins Section */
.quick-wins {
    padding: 4rem 0;
    background: var(--dark-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.resource-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.resource-card {
    background: var(--dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}

.resource-card-link:hover .resource-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    border-color: var(--primary);
}

.resource-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--dark) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--warning);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.resource-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.resource-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.resource-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* All Resources Section */
.all-resources {
    padding: 4rem 0;
    background: var(--dark);
}

.resource-categories {
    display: grid;
    gap: 2rem;
}

.category-block {
    background: var(--dark-lighter);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.item-count {
    background: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.category-items {
    display: grid;
    gap: 0.75rem;
}

.category-items a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1rem;
    background: var(--dark);
    border-radius: 6px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.category-items a:hover {
    color: var(--text-primary);
    border-color: var(--border);
    transform: translateX(5px);
}

.see-all {
    color: var(--primary) !important;
    font-weight: 600;
}

.coming-soon {
    color: var(--text-secondary);
    font-style: italic;
    padding: 0.75rem 1rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--dark-lighter);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat strong {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Work Section */
.work {
    padding: 4rem 0;
    background: var(--dark);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.offer-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.offer-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--dark-lighter);
    border-top: 1px solid var(--border);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .trust-indicators {
        gap: 1.5rem;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}