:root {
    /* Brand Colors - from brand.md */
    --primary-color: #0A2540;        /* Deep Blue - The Expert */
    --accent-color: #00C49A;         /* Vibrant Teal - The Progressive */
    --background-color: #FFFFFF;     /* Clean White */
    --secondary-bg: #F4F7F6;         /* Light Gray */
    --text-color: #222222;           /* Dark Text */
    --text-color-light: #4A5568;     /* For subtle text */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(10, 37, 64, 0.1);
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: 400;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    background-image:
        linear-gradient(rgba(10, 37, 64, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-attachment: fixed;
}

/* Typography Hierarchy - Brand Guidelines */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Arial', sans-serif;
    color: var(--primary-color);  /* Deep Blue for authority */
    margin: 0;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;  /* 48px */
    font-weight: 800;  /* Extra Bold */
}

h2 {
    font-size: 2.25rem;  /* 36px */
    font-weight: 700;  /* Bold */
}

h3 {
    font-size: 1.5rem;  /* 24px */
    font-weight: 700;  /* Bold */
}

h4 {
    font-size: 1.25rem;  /* 20px */
    font-weight: 600;  /* Semi-bold */
}

h5 {
    font-size: 1.125rem;  /* 18px */
    font-weight: 600;
}

p {
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: 400;  /* Regular */
    font-size: 1rem;  /* 16px */
    line-height: 1.5;  /* 150% for readability */
    color: var(--text-color);  /* #222222 for body text */
    margin: 0 0 1rem 0;
    max-width: 75ch;  /* Optimal line length for readability - brand guideline */
}

a {
    color: var(--accent-color);  /* Vibrant Teal for all links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #009978;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Header */
header {
    padding: 1rem 0;
    z-index: 10;
    background-color: var(--secondary-bg);
}

header .container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem 2rem;
    max-width: 960px;
}

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

.logo {
    height: 40px;
    border-radius: 8px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;  /* Extra Bold for brand authority */
    color: var(--primary-color);  /* Deep Blue */
    font-family: 'Inter', 'Arial', sans-serif;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Buttons - Brand: CTAs use Vibrant Teal (#00C49A) */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;  /* Medium/Semi-bold for emphasis */
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: 'Inter', 'Arial', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);  /* Vibrant Teal - Action color */
    color: white;
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #00a882;
    border-color: #00a882;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);  /* Vibrant Teal for links */
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.hero h1 {
    font-size: 3rem;  /* 48px - Brand guideline */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;  /* Extra Bold (800) for H1 */
    color: var(--primary-color);  /* Deep Blue - Authority */
    font-family: 'Inter', 'Arial', sans-serif;
}

.hero h1 .hero-highlight {
    color: var(--accent-color);  /* Vibrant Teal - Progress/Action */
}

.hero .tagline {
    font-size: 1.1rem;
    color: var(--accent-color);  /* Vibrant Teal - Progressive */
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', 'Arial', sans-serif;
    max-width: none;  /* Override default p max-width */
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle {
    font-size: 1.125rem;  /* 18px for comfortable reading */
    color: var(--text-color);  /* Dark Text for body */
    line-height: 1.5;  /* 150% brand guideline */
    font-weight: 400;  /* Regular */
    font-family: 'Inter', 'Arial', sans-serif;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Waitlist Form */
.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    color: var(--text-color-light);
}

.hero .form-group {
    display: flex;
    background-color: #f7f8fa;
    border-radius: 50px;
    padding: 0.5rem;
    padding-left: 1.5rem;
    border: 1px solid var(--glass-border);
}

.form-group input {
    flex-grow: 1;
    padding: 0.75rem 0;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #0A2540;
    outline: none;
}

.form-group input::placeholder {
    color: #888;
}

.form-group .btn {
    flex-shrink: 0;
}

/* Feature Box */
.feature {
    text-align: left;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.feature h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--text-color);
    flex: 0 0 200px;
}

.feature p {
    color: var(--text-color-light);
    line-height: 1.6;
    margin: 0;
}

.section-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
    margin: 2rem auto;
    display: block;
    border: 1px solid var(--glass-border);
}

/* Main Layout */
.main-layout-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1368px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.main-content-column {
    flex: 3;  /* 75% of layout */
    min-width: 0; /* Prevent flex item from overflowing */
}

.sticky-cta-column {
    flex: 1;  /* 25% of layout */
    position: sticky;
    top: 2rem;
}


/* Problem, Solution, and How It Works Sections */
.problem-section {
    padding: 4rem 0;
}

.risk-trap-section {
    padding: 4rem 0;
    background-color: var(--secondary-bg);  /* Light Gray - Brand guideline */
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 16px;
}

.risk-trap-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.solution-section {
    padding: 4rem 0;
}

.benefits-section {
    padding: 4rem 0;
    background-color: var(--secondary-bg);  /* Light Gray - Brand guideline */
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 16px;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.who-its-for-section {
    padding: 4rem 0;
}

.who-its-for-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.how-it-works-section {
    padding: 2rem 0 4rem;
}

.how-it-works-section .how-it-works-intro {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.how-it-works-section .features-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-section h2,
.solution-section h2,
.how-it-works-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problem-section p,
.solution-section p,
.how-it-works-text p {
    font-size: 1.1rem;
    color: var(--text-color-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0 6rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.cta-section .waitlist-form {
    max-width: 600px;
}

.cta-section .form-group {
    display: flex;
    gap: 0.5rem;
}

.cta-section .form-group input {
    background-color: #f7f8fa;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: var(--text-color);
}

/* Sticky CTA Column Styles */
.sticky-cta-column .cta-section {
    padding: 2rem;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    text-align: left;
}

.sticky-cta-column .cta-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.sticky-cta-column .cta-section h2 {
    font-size: 1.8rem;
    text-align: left;
}

.sticky-cta-column .cta-section p,
.sticky-cta-column .cta-section label {
    text-align: left;
}

.sticky-cta-column .cta-section .waitlist-form {
    max-width: 100%;
    margin: 0;
}

.sticky-cta-column .cta-section .form-group {
    flex-direction: column;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-color-light);
    background-color: var(--secondary-bg);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin: 0;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-platform-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-color);
}

.footer-platform-link:hover {
    color: var(--text-color);
}

.footer-right {
    text-align: right;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin: 0 0 0.5rem 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

footer a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--text-color);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

/* Booking Button */
.booking-button {
    font-size: 1rem;
    padding: 1rem 2rem;
    min-width: 200px;
}

.booking-button-full-width {
    width: 100%;
    margin-top: 1.5rem;
}

/* Message Box from script.js */
.message-box {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem auto;
    background-color: rgba(0, 196, 154, 0.1);
    text-align: center;
    max-width: 1140px;
}

.message-box h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
}

/* New Section Styles */

.problem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.problem-card {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 450px;
    margin: 0 auto;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.1);
    border-color: var(--primary-color);
}

.problem-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 196, 154, 0.1);  /* Teal background */
    color: var(--accent-color);  /* Vibrant Teal for icons */
    font-size: 1.5rem;
}

.problem-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.5;
    margin: 0;
}

.trap-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin: 2rem auto 1.5rem;
    max-width: 800px;
}

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

.options-section h4 {
    color: var(--primary-color);  /* Deep Blue for section headers */
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;  /* Bold */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', 'Arial', sans-serif;
}

.options-section h4 i {
    font-size: 1.2rem;
}

.options-section-desc {
    font-size: 0.95rem;
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.option-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.option-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.1);
}

.option-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(0, 196, 154, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.option-item h5 {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.option-item p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.6;
    margin: 0;
}

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

.component {
    padding: 2rem;
}

.component-number {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 196, 154, 0.1);  /* Teal background */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);  /* Vibrant Teal for progressive numbers */
    font-size: 1.5rem;
    font-weight: 800;  /* Extra bold */
    margin-bottom: 1.5rem;
    font-family: 'Inter', 'Arial', sans-serif;
}

.component h3 {
    color: var(--primary-color);  /* Deep Blue for authority */
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;  /* Bold */
    font-family: 'Inter', 'Arial', sans-serif;
}

.component h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.expertise-domains {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.expertise-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.expertise-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.expertise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: white;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(10, 37, 64, 0.05);
}

.expertise-badge i {
    color: var(--accent-color);  /* Vibrant Teal for icons */
    font-size: 1rem;
}

.expertise-badge:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 196, 154, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 196, 154, 0.1);
}

.section-intro {
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    max-width: 75ch;  /* Optimal line length - brand guideline */
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    padding: 2rem;
    text-align: center;
}

.step-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-item h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-section {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-item {
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    max-width: 800px;  /* 1-column card max-width */
    margin: 0 auto;     /* Center the card */
}

.benefit-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(0, 196, 154, 0.1);  /* Teal background */
    color: var(--accent-color);  /* Vibrant Teal for benefit icons */
    font-size: 1.4rem;
}

.benefit-content {
    flex: 1;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    margin-top: 0;
}

.benefit-item p {
    margin: 0;
}

.fit-criteria {
    padding: 2rem;
    margin-top: 2rem;
    max-width: 800px;       /* 1-column card max-width */
    margin-left: auto;       /* Center the card */
    margin-right: auto;      /* Center the card */
}

.fit-criteria h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fit-criteria ul {
    list-style: none;
    padding: 0;
}

.fit-criteria li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.fit-criteria li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Auth Choice Modal (Fork in the Road) */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.auth-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.auth-modal-content {
    position: relative;
    background-color: white;
    border-radius: 20px;
    width: 90%;
    max-width: 440px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
    text-align: center;
}

.auth-modal-content h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    color: var(--text-color);
}

.auth-modal-subtitle {
    color: var(--text-color-light);
    margin: 0 0 2rem 0;
    font-size: 1rem;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    color: var(--text-color-light);
    border: none;
    font-size: 2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0;
}

.auth-modal-close:hover {
    background-color: rgba(10, 37, 64, 0.1);
    color: var(--text-color);
    transform: rotate(90deg);
}

.auth-choice-primary {
    margin-bottom: 1.5rem;
}

#google-signin-button {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.auth-choice-microcopy {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.auth-choice-divider {
    margin: 1.5rem 0;
    position: relative;
    text-align: center;
}

.auth-choice-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: var(--glass-border);
}

.auth-choice-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.auth-choice-secondary {
    background: transparent;
    border: none;
    color: var(--text-color-light);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.auth-choice-secondary:hover {
    color: var(--text-color);
}

/* Terms and Conditions Modal */
.terms-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.terms-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.terms-modal-content {
    position: relative;
    background-color: white;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.terms-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
    transition: all 0.3s ease;
    padding: 0;
}

.terms-modal-close:hover {
    background-color: #00a882;
    transform: rotate(90deg);
}

.terms-modal-body {
    padding: 3rem 3rem;
    overflow-y: auto;
    max-height: calc(95vh - 2rem);
    flex: 1;
}

.terms-modal-body::-webkit-scrollbar {
    width: 10px;
}

.terms-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.terms-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.terms-modal-body::-webkit-scrollbar-thumb:hover {
    background: #00a882;
}

/* Calendar Modal */
.calendar-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.calendar-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.calendar-modal-content {
    position: relative;
    background-color: white;
    border-radius: 16px;
    width: 90%;
    max-width: 320px;
    height: 700px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

/* Landscape mode for larger screens */
@media (min-width: 768px) {
    .calendar-modal-content {
        max-width: 1000px;
        width: 95%;
        height: 750px;
    }
}

@media (min-width: 1024px) {
    .calendar-modal-content {
        max-width: 1200px;
        height: 800px;
    }
}

.calendar-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 0;
}

.calendar-modal-close:hover {
    background-color: #00a882;
    transform: rotate(90deg);
}

#calendly-inline-widget {
    width: 100%;
    height: 100%;
    min-width: 320px;
    min-height: 700px;
    border-radius: 16px;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

    .main-layout-container {
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 0;
    }

    .sticky-cta-column {
        position: static;
        width: 100%;
    }

    /* Restore original CTA styles on mobile */
    .sticky-cta-column .cta-section {
        padding: 4rem 1rem;
        background: none;
        border: none;
        text-align: center;
    }

    .sticky-cta-column .cta-section .container {
        max-width: 1140px;
        padding: 0 1rem;
        margin: 0 auto;
    }

    .sticky-cta-column .cta-section h2,
    .sticky-cta-column .cta-section p,
    .sticky-cta-column .cta-section label {
        text-align: center;
    }

    .sticky-cta-column .cta-section .waitlist-form {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cta-section .form-group {
        flex-direction: column;
    }

    .cta-section .form-group input {
        margin-bottom: 0.5rem;
    }

    .cta-section .form-group .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 1.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

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

    .calendar-modal-content {
        width: 95%;
        height: 95vh;
        max-height: none;
    }

    .calendar-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    
    header {
        top: 0;
    }

    header .container {
        border-radius: 0;
        max-width: 100%;
        padding: 0.5rem 1rem;
    }

    .hero .form-group {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }

    .hero .form-group input {
        background-color: #f7f8fa;
        color: #0A2540;
        border-radius: 50px;
        padding: 0.75rem 1.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .hero .form-group .btn {
        width: 100%;
    }

    .problem-section { padding: 3rem 0 1.5rem; }

    .risk-trap-section {
        padding: 1.5rem 0 1.5rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .solution-section { padding: 1.5rem 0 1.5rem; }

    .benefits-section {
        padding: 1.5rem 0 1.5rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .who-its-for-section { padding: 1.5rem 0 1.5rem; }

    .how-it-works-section { padding: 1.5rem 0 3rem; }

    .problem-section h2,
    .solution-section h2,
    .how-it-works-section h2 {
        font-size: 2rem;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature h3 {
        flex-basis: auto;
    }

    footer .container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

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

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .options-grid,
    .solution-components {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary {
        width: 100%;
    }

    .problem-cards {
        grid-template-columns: 1fr;
    }

    .problem-card {
        max-width: 800px;
    }
}
