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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
    --border: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.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(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

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

.stat strong {
    font-size: 2rem;
    display: block;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--light);
}

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

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.problem-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.problem-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    margin: 0;
}

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

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

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

.solution-card {
    padding: 2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.solution-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: var(--gray);
    margin: 0;
}

/* Roles Section */
.roles-section {
    padding: 80px 0;
    background: var(--light);
}

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

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

.role-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.role-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.role-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.role-salary {
    border-top: 2px solid var(--border);
    padding-top: 1rem;
}

.role-salary strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.comparison {
    color: var(--gray);
    font-size: 0.9rem;
}

.roles-cta {
    text-align: center;
    margin-top: 2rem;
}

.roles-cta a {
    color: var(--primary);
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

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

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray);
    margin: 0;
}

.process-time {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--light);
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pricing-header {
    background: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-amount {
    margin-top: 1rem;
}

.pricing-amount strong {
    font-size: 3rem;
    display: block;
}

.pricing-amount span {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-examples,
.pricing-includes,
.pricing-payment {
    padding: 2rem;
}

.pricing-examples h4,
.pricing-includes h4 {
    margin-bottom: 1rem;
}

.pricing-example {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-example:last-child {
    border-bottom: none;
}

.pricing-example strong {
    color: var(--primary);
}

.pricing-includes ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.pricing-includes li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.pricing-payment {
    background: var(--light);
    text-align: center;
}

.pricing-alt {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    max-width: 700px;
    margin: 2rem auto 0;
}

.pricing-alt a {
    color: var(--primary);
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.guarantee-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-content h2 {
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.guarantee-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-cta {
    margin-top: 2rem;
}

.contact-info {
    margin-top: 1rem;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--border);
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .problem-grid,
    .solution-grid,
    .roles-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .btn-large {
        width: 100%;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
