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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Transparent to Solid */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4A017;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

header.scrolled .tagline {
    color: #666;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

nav a:hover {
    color: #D4A017;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FDF6E3 0%, #FFF8E7 50%, #FFFBF0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h2 {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn.primary {
    background-color: #D4A017;
    color: #fff;
    border: 2px solid #D4A017;
}

.btn.primary:hover {
    background-color: #B8860B;
    border-color: #B8860B;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: transparent;
    color: #D4A017;
    border: 2px solid #D4A017;
}

.btn.secondary:hover {
    background-color: #D4A017;
    color: #fff;
}

/* Main Content */
main {
    margin-top: 0;
}

.section {
    padding: 5rem 0;
}

.bg-warm {
    background-color: #FFFBF5;
}

/* Section Headings */
h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2C2C2C;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

/* Value Proposition */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: #D4A017;
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
    font-size: 1rem;
}

/* How It Works */
.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #D4A017;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    font-family: 'Segoe UI', sans-serif;
}

.step h3 {
    color: #333;
    margin-bottom: 0.8rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
    padding: 4rem 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Segoe UI', sans-serif;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #444;
}

.about-content ul {
    list-style: none;
    margin: 2rem 0;
}

.about-content li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.about-content li:before {
    content: "✓";
    color: #D4A017;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Intelligence Content */
.intel-content {
    max-width: 900px;
    margin: 0 auto;
}

.intel-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.intel-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.intel-block h3 {
    color: #D4A017;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.intel-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intel-block p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: #2C2C2C;
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    color: #D4A017;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #888;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #D4A017;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #D4A017;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    nav {
        display: none;
    }
    
    header .container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
