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

:root {
    /* Professional Blue Color Palette */
    --primary-blue: #1e3a8a;
    --secondary-blue: #2563eb;
    --light-blue: #3b82f6;
    --sky-blue: #60a5fa;
    --pale-blue: #dbeafe;
    --deep-blue: #1e40af;
    --accent-blue: #0ea5e9;
    --success-blue: #06b6d4;

    /* Warm Accent Colors */
    --gold: #f59e0b;
    --orange: #f97316;
    --warm-orange: #fb923c;
    --light-gold: #fbbf24;
    --amber: #fbbf24;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #f1f5f9;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --text-primary: #0f172a;
    --border-light: #e2e8f0;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 1.125rem;
    --line-height-base: 1.7;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;

    /* Shadows - Softer and more professional */
    --shadow-sm: 0 1px 3px 0 rgba(30, 58, 138, 0.1), 0 1px 2px 0 rgba(30, 58, 138, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(30, 58, 138, 0.1), 0 2px 4px -1px rgba(30, 58, 138, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(30, 58, 138, 0.1), 0 4px 6px -2px rgba(30, 58, 138, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(30, 58, 138, 0.1), 0 10px 10px -5px rgba(30, 58, 138, 0.04);

    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.emphasis {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--light-blue);
}

/* Buttons with smooth animations */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--success-blue) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.375rem;
}

/* Hero Section with animated gradient */
.hero {
    background: linear-gradient(135deg, #0f2a5a 0%, #1e3a8a 25%, #2563eb 50%, #1e40af 75%, #1e3a8a 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero * {
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 42, 90, 0.3) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 10;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subheadline p {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subheadline .emphasis {
    font-size: 1.375rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(251, 146, 60, 0.6);
    font-weight: 700;
    color: #fef3c7;
}

.hero .btn {
    animation: fadeInUp 1.2s ease-out 0.4s both;
    position: relative;
    z-index: 10;
}

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

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-headline {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.section-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--light-gold));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--orange), var(--gold));
    transition: height 0.5s ease;
}

.pain-card:hover::before {
    height: 100%;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--pale-blue);
}

.pain-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--sky-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-bounce);
}

.pain-card:hover .pain-icon {
    transform: scale(1.1) rotate(5deg);
}

.pain-icon svg {
    color: var(--primary-blue);
    stroke: var(--primary-blue);
}

.pain-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pain-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Solution Section */
.solution-section {
    background-color: var(--white);
}

.solution-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.125rem;
}

.benefits {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: var(--secondary-blue);
    margin: 1.5rem 0 1rem;
    font-size: 1.125rem;
}

.benefit-list,
.credential-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefit-list li,
.credential-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    transition: var(--transition-smooth);
}

.benefit-list li:hover,
.credential-list li:hover {
    transform: translateX(5px);
}

.benefit-list li::before,
.credential-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-list li::after,
.credential-list li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 0.4rem;
    color: var(--white);
    font-weight: bold;
    font-size: 0.85rem;
}

.tagline {
    font-style: italic;
    color: var(--light-blue);
    margin: 1.5rem 0;
    font-weight: 500;
}

.outcome {
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--white) 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-top: 1.5rem;
    border-left: 3px solid var(--secondary-blue);
}

/* Who This Is For Section */
.who-for-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

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

.role-list li {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.role-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold);
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.05) 0%, var(--white) 100%);
}

.who-for-section .note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--white);
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-section .subtitle {
    text-align: center;
    font-size: 1.375rem;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-weight: 600;
}

.experience-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.experience-item {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--light-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.experience-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    border-left-color: var(--gold);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.03) 0%, var(--white) 100%);
}

.experience-item .company {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.experience-item .role {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.experience-item .description {
    color: var(--medium-gray);
}

.about-section .languages,
.about-section .certifications {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem;
    text-align: center;
    color: var(--medium-gray);
}

.about-section .tagline {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-style: normal;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid var(--border-light);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--pale-blue);
}

.pricing-card.popular {
    border: 3px solid var(--secondary-blue);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--white) 0%, var(--pale-blue) 100%);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-card .duration {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-card .best-for {
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-card .features {
    list-style: none;
    margin: 1.5rem 0;
    min-height: 250px;
}

.pricing-card .features li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.pricing-card .features li:hover {
    transform: translateX(5px);
}

.pricing-card .features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--light-blue));
    border-radius: 50%;
}

.pricing-card .features li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 0.15rem;
    color: var(--white);
    font-weight: bold;
    font-size: 0.75rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1.5rem 0;
    text-align: center;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Program Process */
.program-process {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.program-process h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.phase-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
    transition: var(--transition-smooth);
}

.phase-item:hover {
    padding-left: 1rem;
}

.phase-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.phase-item h4 {
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.phase-item ul {
    list-style: none;
}

.phase-item li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    transition: var(--transition-smooth);
}

.phase-item li:hover {
    transform: translateX(5px);
}

.phase-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--light-blue);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 1rem;
    background: var(--off-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--secondary-blue);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pale-blue);
    border-radius: 50%;
}

.faq-question.active::after {
    transform: rotate(45deg);
    background: var(--secondary-blue);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Closing Section */
.closing-section {
    background: linear-gradient(135deg, #0f2a5a 0%, #1e3a8a 25%, #2563eb 50%, #1e40af 75%, #1e3a8a 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.closing-section * {
    color: var(--white);
}

.closing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.closing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 42, 90, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.closing-section .container {
    position: relative;
    z-index: 10;
}

.closing-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.closing-section p {
    max-width: 700px;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.closing-section .question {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem auto;
    position: relative;
    z-index: 10;
    color: #fef3c7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(251, 146, 60, 0.5);
}

.secondary-cta {
    margin-top: 2rem;
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

.secondary-cta span {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.secondary-cta a {
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.secondary-cta a:hover {
    text-decoration: underline;
    color: #fef3c7;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
}

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

.footer * {
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links a:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2));
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --font-size-base: 1rem;
        --section-padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.375rem;
    }

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

    .pain-points {
        grid-template-columns: 1fr;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .container {
        padding: 0 1rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Calendly Modal */
.calendly-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendly-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.calendly-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
}

.calendly-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    max-height: 700px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.calendly-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.calendly-modal-close:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--gold);
}

#calendly-embed-container {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* Responsive modal */
@media (max-width: 768px) {
    .calendly-modal-content {
        width: 95%;
        height: 95vh;
        max-height: none;
        border-radius: 12px;
    }

    .calendly-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}
