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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c3e50;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d4a574 0%, #c89666 50%, #b8875a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z" fill="%23000000" opacity="0.05"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: #3a3a3a;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #1a1a1a;
    color: #f4ede4;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Proof Section */
.proof {
    background: #f4ede4;
    padding: 80px 20px;
    text-align: center;
}

.proof h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 400;
    color: #1a1a1a;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.result-item {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.result-number {
    font-size: 2.5rem;
    color: #c89666;
    font-weight: 600;
    margin-bottom: 15px;
}

.result-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: white;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #f9f6f2;
    padding: 50px 40px;
    border-radius: 8px;
    border-left: 5px solid #c89666;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #444;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #c89666;
    font-weight: bold;
}

.engagement-note {
    font-style: italic;
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 1.05rem;
}

/* Qualification Section */
.qualification {
    background: #2c3e50;
    color: white;
    padding: 100px 20px;
}

.qualification h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 400;
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.qual-box {
    background: rgba(255,255,255,0.05);
    padding: 45px 40px;
    border-radius: 8px;
    border: 2px solid rgba(200, 150, 102, 0.3);
}

.qual-box h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #d4a574;
    font-weight: 500;
}

.qual-box ul {
    list-style: none;
}

.qual-box li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.qual-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.qual-box.not-fit li::before {
    content: '✗';
    color: #e74c3c;
}

/* Process Section */
.process {
    padding: 100px 20px;
    background: #f4ede4;
}

.process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 400;
    color: #1a1a1a;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    color: #c89666;
    font-weight: 600;
    min-width: 80px;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.step-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #c89666 0%, #b8875a 100%);
    padding: 120px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.final-cta p {
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-button {
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 20px 50px;
}

.final-note {
    margin-top: 30px;
    font-size: 1.1rem;
    color: #3a3a3a;
    font-style: italic;
}

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

    h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .service-cards,
    .qual-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }

    .final-cta h2 {
        font-size: 2rem;
    }
}
