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

:root {
    --primary-color: #FF4D6D;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 18px;
}

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

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

/* Header */
.header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.logo-img {
    height: 60px;
    width: auto;
}

/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.micro-hook {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e63c5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.3);
}

.cta-button-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.cta-button-small {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Content Sections */
.highlight {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 2rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
}

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

.step h3 {
    margin-bottom: 1rem;
}

.deliverables {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.deliverables h3 {
    margin-bottom: 1rem;
}

.deliverables ul {
    list-style-position: inside;
    color: var(--text-gray);
}

.deliverables li {
    margin-bottom: 0.5rem;
}

/* Who This Is For */
.for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.for-column h3 {
    margin-bottom: 1.5rem;
}

.for-column ul {
    list-style-position: inside;
    color: var(--text-gray);
}

.for-column li {
    margin-bottom: 0.75rem;
}

/* Pricing */
.price-large {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.guarantee {
    margin-top: 2rem;
    color: var(--text-gray);
    font-size: 1rem;
}

/* FAQ */
.faq {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

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

.faq-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e63c5d 100%);
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

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

.footer p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Additional Pricing Elements */
.subtext {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: -0.5rem;
}

.guarantee-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.guarantee-box h3 {
    color: #0369a1;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.guarantee-box p {
    color: #0c4a6e;
    font-size: 1.125rem;
    margin-bottom: 0;
    font-weight: 500;
}

.payment-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
}

/* About Section */
.about {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.linkedin-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

.linkedin-link:hover {
    text-decoration: underline;
}

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

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    .steps-grid,
    .for-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}
