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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    --accent: #f472b6;
    --accent-light: #fbcfe8;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-alt: #f1f5f9;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    color: var(--dark);
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    padding: 140px 24px 100px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--border);
    transition: all 0.2s;
}

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

.hero-proof {
    display: flex;
    gap: 48px;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
}

.proof-label {
    font-size: 13px;
    color: var(--text-light);
}

/* Audit Preview Visual */
.audit-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.preview-header {
    background: var(--bg-alt);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dot.red { background: #ef4444; }
.preview-dot.yellow { background: #f59e0b; }
.preview-dot.green { background: #10b981; }

.preview-content {
    padding: 32px;
}

.preview-score {
    text-align: center;
    margin-bottom: 32px;
}

.score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--warning) 0deg, var(--warning) 151deg, var(--border) 151deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
}

.score-ring::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
}

.score-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.score-max {
    font-size: 16px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.score-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.preview-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-item span {
    font-size: 13px;
    color: var(--text-light);
}

.bar {
    height: 8px;
    background: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
}

.preview-cta {
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Sections */
.section {
    padding: 100px 24px;
}

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

.section-badge {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* Problem Section */
.problem {
    background: var(--dark);
    color: white;
}

.problem .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
}

.problem .section-header h2 {
    color: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.problem-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.problem-cta {
    text-align: center;
}

.problem-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-size: 18px;
}

.problem-cta strong {
    color: var(--accent-light);
}

/* Services Section */
.services {
    background: var(--bg-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, white 100%);
}

.service-card.full-stack {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(244, 114, 182, 0.03) 0%, white 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.service-card > p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-cta {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--bg-alt);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.service-cta:hover {
    background: var(--primary);
    color: white;
}

/* How It Works Section */
.how-it-works {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.step {
    text-align: center;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
}

.process-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: var(--bg-soft);
    border-radius: 16px;
    padding: 32px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* Deliverables Section */
.deliverables {
    background: var(--bg-soft);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.deliverable {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.deliverable:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.15);
}

.deliverable-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.deliverable h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.deliverable p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--bg-soft);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
}

.testimonial-content p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.author-title {
    font-size: 13px;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background: var(--bg-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}

.pricing-card.premium {
    border-color: var(--accent);
    box-shadow: 0 10px 40px -10px rgba(244, 114, 182, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'DM Serif Display', serif;
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.pricing-cta:hover {
    background: var(--primary);
    color: white;
}

.pricing-card.featured .pricing-cta {
    background: var(--gradient);
    color: white;
}

.pricing-card.featured .pricing-cta:hover {
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px 32px;
}

.guarantee-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.guarantee-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    background: var(--dark);
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    margin-bottom: 16px;
}

.cta-buttons .btn-primary {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-soft);
    padding: 48px 24px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .logo-text {
    color: white;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .problems-grid,
    .services-grid,
    .deliverables-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-card.full-stack {
        grid-column: span 1;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-features {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        display: none;
    }

    .hero-proof {
        gap: 24px;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 36px;
    }
}

/* Thank You Page */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

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

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    color: var(--text);
    margin-bottom: 12px;
}

.thanks-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    margin-bottom: 40px;
}

.thanks-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.thanks-step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.thanks-step-text h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 4px;
}

.thanks-step-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.thanks-note {
    padding: 20px;
    background: rgba(99, 91, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 32px;
}

.thanks-note p {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .thanks-content h1 {
        font-size: 28px;
    }

    .thanks-step {
        flex-direction: column;
        gap: 12px;
    }
}

/* Custom Pricing CTA */
.pricing-custom {
    text-align: center;
    margin-top: 32px;
    padding: 32px;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.pricing-custom h4 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 8px;
}

.pricing-custom p {
    color: var(--text-light);
    margin-bottom: 20px;
}
