/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000000;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

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

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

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.brand-link {
    color: #000000;
    text-decoration: none;
}

.brand-link:hover {
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2563eb;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 5rem 0;
}

.section-light {
    background-color: #f9fafb;
}

.section-cta {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.hero-subline {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.trust-text {
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.95rem;
}

/* ========================================
   BUTTONS
   ======================================== */

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* ========================================
   FEATURE LIST
   ======================================== */

.feature-list {
    list-style: none;
    max-width: 700px;
    margin: 2rem auto 0;
}

.feature-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========================================
   TWO COLUMNS
   ======================================== */

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.column-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #374151;
}

.checklist-positive li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.checklist-negative li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========================================
   STEPS
   ======================================== */

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-text {
    color: #6b7280;
    font-size: 1rem;
}

/* ========================================
   CALENDLY
   ======================================== */

.calendly-container {
    max-width: 900px;
    margin: 3rem auto 0;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.calendly-inline-widget {
    min-height: 700px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-text {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #d1d5db;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
    color: #374151;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.back-link {
    display: inline-block;
    color: #2563eb;
    font-weight: 500;
    margin-top: 1rem;
}

.back-link:hover {
    color: #1d4ed8;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

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

    h2 {
        font-size: 1.75rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subline {
        font-size: 1.125rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    /* Two Columns */
    .two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Navigation */
    .nav-links {
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
    }

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

    /* Legal Pages */
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Typography */
    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subline {
        font-size: 1rem;
    }

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

    /* Buttons */
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Container */
    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    /* Navigation */
    .brand {
        font-size: 1.25rem;
    }
}
