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

:root {
    --bg-cream: #F5F0E8;
    --bg-white: #FFFFFF;
    --orange: #E87C4F;
    --orange-light: #F4A574;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --border: #E5E5E5;
    --card-bg: #FAFAF8;
}

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-logo {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links a {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-separator {
    font-size: 4px;
    color: var(--text-dark);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--text-dark);
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-dark:hover {
    background: #333;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #D46A3D;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

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

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--text-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero */
.hero {
    position: relative;
    padding: 160px 40px 120px;
    text-align: center;
    overflow: hidden;
    margin: 24px;
    border-radius: 24px;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.watercolor {
    position: absolute;
    border-radius: 50%;
    display: none;
}

.watercolor-1 {
    display: none;
}

.watercolor-2 {
    display: none;
}

.watercolor-3 {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: white;
}

.hero h1 em {
    font-style: italic;
    color: white;
    font-weight: 500;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Section */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section h2 em {
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 60px;
}

/* Logos */
.logos-section {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-white);
}

.logos-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
    opacity: 0.5;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    padding: 40px 32px;
    background: var(--bg-white);
    border-radius: 16px;
}

.step-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.15;
    margin-bottom: 24px;
    line-height: 1;
    letter-spacing: -2px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Features */
.features {
    background: var(--bg-white);
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-cream);
    border-radius: 16px;
    position: relative;
}

.feature-card::before {
    content: attr(data-number);
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 48px;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.15;
    line-height: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.feature-icon::before,
.feature-icon::after {
    content: '';
    background: var(--orange);
    border-radius: 2px;
}

.feature-icon::before {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.feature-icon::after {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Builders */
.builders {
    background: var(--bg-cream);
}

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

.builder-card {
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    text-align: center;
}

.builder-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 16px;
    color: white;
}

.builder-logo.framer { background: #0055FF; }
.builder-logo.lovable { background: #FF6B6B; }
.builder-logo.bolt { background: #7C3AED; }
.builder-logo.v0 { background: #000; }
.builder-logo.webflow { background: #4353FF; }
.builder-logo.cursor { background: #000; }

.builder-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.builder-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.builder-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-cream);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-gray);
}

/* Generator */
.generator {
    background: var(--bg-white);
}

.generator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 32px;
}

.generator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
}

.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: var(--bg-white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.generator-output {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.output-label {
    font-size: 14px;
    font-weight: 500;
}

.copy-btn {
    padding: 8px 16px;
    background: var(--bg-cream);
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--border);
}

.output-content {
    padding: 20px;
    min-height: 300px;
}

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

/* Testimonials */
.testimonials {
    background: var(--bg-cream);
}

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

.testimonial-card {
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
}

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

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

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

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-gray);
}

/* Pricing */
.pricing {
    background: var(--bg-white);
    text-align: center;
}

.pricing .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--text-dark);
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border);
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--orange);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.discount {
    background: #27C93F;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

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

.pricing-card {
    padding: 40px 32px;
    background: var(--bg-cream);
    border-radius: 20px;
    text-align: left;
    position: relative;
}

.pricing-card.popular {
    background: linear-gradient(135deg, #FFF5EE 0%, #FFE4D6 100%);
    border: 2px solid var(--orange);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 16px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
}

.period {
    font-size: 14px;
    color: var(--text-gray);
}

.pricing-card > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    min-height: 42px;
}

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

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

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

/* FAQ */
.faq {
    background: var(--bg-cream);
}

.faq-list {
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    color: var(--text-dark);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* CTA */
.cta {
    background: var(--text-dark);
    text-align: center;
}

.cta h2 {
    color: white;
}

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

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

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

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #1A1A1A;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    max-width: 280px;
}

.footer-brand .nav-logo {
    color: white;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .builders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .generator-card {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .section h2 {
        font-size: 36px;
    }

    .steps-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}
