.get-started-hero {
    display: flex;
    align-items: center;
    min-height: clamp(180px, 22vh, 280px);
    padding: clamp(2rem, 5vh, 3rem) 0;
    background:
        radial-gradient(circle at top, rgba(50, 205, 50, 0.14), transparent 35%),
        linear-gradient(180deg, var(--rail-bg) 0%, var(--rail-bg-section) 100%);
}

.get-started-hero .rail-hero-content {
    max-width: 960px;
}

.get-started-hero h1 {
    font-size: clamp(3rem, 7.5vw, 5rem);
    line-height: 1.05;
}

.get-started-hero .rail-hero-subtitle {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    line-height: 1.5;
}

/* Booking Section */
.get-started-booking {
    padding: var(--spacing-xl) 0 var(--spacing-3xl);
    background-color: var(--rail-bg-section);
}

.get-started-container {
    max-width: min(1640px, calc(100vw - 3rem));
}

.get-started-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
}

.get-started-intro {
    display: flex;
    align-items: flex-start;
    padding: clamp(2rem, 4vw, 4rem);
    border-radius: 0;
    border: 1px solid rgba(50, 205, 50, 0.24);
    background: var(--rail-bg-card);
    box-shadow:
        0 0 45px rgba(50, 205, 50, 0.05),
        0 12px 40px rgba(16, 32, 20, 0.08);
}

.get-started-intro-copy {
    max-width: 640px;
}

.get-started-intro-copy h2 {
    margin-bottom: var(--spacing-md);
    color: var(--rail-green);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.get-started-intro-lede {
    color: var(--rail-text-primary);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.55;
}

.get-started-intro-copy p {
    color: var(--rail-text-secondary);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.7;
}

.get-started-intro-copy p + p {
    margin-top: var(--spacing-md);
}

.get-started-contact-note {
    padding: var(--spacing-md);
    border-left: 3px solid var(--rail-green);
    border-radius: 0;
    background: rgba(50, 205, 50, 0.08);
}

.get-started-contact-note a {
    color: var(--rail-green);
    font-weight: 600;
    text-decoration-color: rgba(50, 205, 50, 0.45);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.get-started-contact-note a:hover,
.get-started-contact-note a:focus {
    color: var(--rail-green-light);
    text-decoration-color: currentColor;
}

/* Calendly Widget */
.get-started-calendly {
    border-radius: 0;
    border: 1px solid rgba(50, 205, 50, 0.3);
    background:
        radial-gradient(ellipse at top center, rgba(50, 205, 50, 0.06), transparent 50%),
        rgba(10, 10, 10, 0.7);
    box-shadow:
        0 0 60px rgba(50, 205, 50, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.get-started-calendly .calendly-inline-widget {
    width: 100%;
    height: 950px;
}

/* Mobile */
@media (max-width: 768px) {
    .get-started-booking {
        padding: var(--spacing-lg) 0 var(--spacing-2xl);
    }

    .get-started-layout {
        grid-template-columns: 1fr;
    }

    .get-started-intro {
        align-items: flex-start;
    }

    .get-started-calendly .calendly-inline-widget {
        height: 750px;
    }
}
