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

body {
    font-family: 'Lora', 'Georgia', 'Times New Roman', serif;
    font-optical-sizing: auto;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    border: 2vw solid transparent;
    border-color: #1a1a1a;
    box-sizing: border-box;
}

/* Typography */
.site-title {
    display: inline-block;
    font-weight: 900;
    font-size: 2rem;
    padding: 8px 16px;
    margin: 50px;
    border: 4px solid #1a1a1a;
    color: #1a1a1a;
    letter-spacing: 0.1em;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    color: #5a5a5a;
}

/* Hero Section */
.hero {
    border-bottom: 1px solid #e8e8e8;
    padding: 120px 20px 100px;
    text-align: center;
    background: #fafafa;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #5a5a5a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid #1a1a1a;
    font-family: inherit;
    cursor: pointer;
}

.cta-button:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

/* Section Styles */
section {
    padding: 100px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #5a5a5a;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works */
.how-it-works {
    background: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.step {
    text-align: left;
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
    margin-bottom: 24px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Pricing */
.pricing {
    background: #fafafa;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    margin-top: 60px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    max-width: 100%;
    overflow: hidden;
}

.pricing-card {
    background: #ffffff;
    padding: 48px 36px;
    text-align: left;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    background: #fafafa;
}

.pricing-card.featured {
    background: #1a1a1a;
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .features-list li {
    color: white;
}

.pricing-card.featured p {
    color: #b8b8b8;
}

.pricing-card.featured:hover {
    background: #2a2a2a;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 20px 0 8px;
}

.price-subtitle {
    color: #5a5a5a;
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.features-list {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    color: #5a5a5a;
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: normal;
}

.pricing-card.featured .features-list li::before {
    color: #ffffff;
}

.pricing-button {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: auto;
    border: 1px solid #1a1a1a;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
}

.pricing-button:hover {
    background: #1a1a1a;
    color: white;
}

.pricing-card.featured .pricing-button {
    border-color: white;
    color: white;
}

.pricing-card.featured .pricing-button:hover {
    background: white;
    color: #1a1a1a;
}

/* Features Section */
.features {
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.feature-item {
    text-align: left;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    color: #1a1a1a;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background: #fafafa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1px;
    margin-top: 60px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    max-width: 100%;
    overflow: hidden;
}

.testimonial {
    background: #ffffff;
    padding: 40px;
}

.testimonial-text {
    font-style: italic;
    color: #5a5a5a;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-style: normal;
}

.testimonial-role {
    color: #808080;
    font-size: 0.875rem;
    margin-top: 4px;
}

.stars {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* FAQ */
.faq {
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 28px 0;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
    font-size: 1.05rem;
}

.faq-answer {
    padding: 0 0 28px 0;
    color: #5a5a5a;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-bottom: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: #b8b8b8;
}

.cta-section .cta-button {
    background: white;
    color: #1a1a1a;
    border-color: white;
}

.cta-section .cta-button:hover {
    background: transparent;
    color: white;
}

/* Footer */
footer {
    background: #fafafa;
    color: #5a5a5a;
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #e8e8e8;
}

footer a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

footer a:hover {
    color: #5a5a5a;
    border-bottom-color: #5a5a5a;
}

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

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

    .section-title {
        font-size: 2rem;
    }

    .price {
        font-size: 2rem;
    }

    section {
        padding: 60px 20px;
    }

    .steps,
    .features-grid {
        gap: 40px;
    }
}
