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

:root {
    /* Purple color scheme */
    --primary-green: #8B5CF6;
    --dark-green: #7C3AED;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --border: #E5E5E5;
    --shadow: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }

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

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: inline-flex;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.logo-link:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-cta {
    background: var(--primary-green);
    color: #FFFFFF;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--dark-green);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    background: var(--bg-light);
    transform: rotate(90deg);
}

.mobile-menu-close:active {
    transform: scale(0.95) rotate(90deg);
}

.mobile-nav-link {
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: var(--bg-light);
}

.mobile-nav-cta {
    padding: 1rem 1.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    transition: background 0.2s ease;
}

.mobile-nav-cta:hover {
    background: var(--dark-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    color: #FFFFFF;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: scaleIn 0.6s ease, float 3s ease-in-out 0.6s infinite;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-subtitle .highlight-text {
    color: var(--primary-green);
    font-weight: 700;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.8;
}

.hero-mockup {
    max-width: 750px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    padding: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.hero-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

/* Animated Mockup Demo */
.mockup-demo {
    width: 100%;
    border-radius: 12px;
    background: #FAFAFA;
    height: 550px;
    border: 1px solid #E0E0E0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.demo-header {
    background: white;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-dots {
    display: flex;
    gap: 0.5rem;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E5E5;
}

.demo-dots span:nth-child(1) {
    background: #FF5F56;
}

.demo-dots span:nth-child(2) {
    background: #FFBD2E;
}

.demo-dots span:nth-child(3) {
    background: #27C93F;
}

.demo-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.demo-content {
    flex: 1;
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 390px;
    max-height: 390px;
    overflow: hidden;
}

.demo-question {
    animation: slideInQuestion 0.5s ease;
}

@keyframes slideInQuestion {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.demo-question-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.demo-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-option {
    background: white;
    border: 1.5px solid #E5E5E5;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.3s ease;
    animation: fadeInOption 0.4s ease backwards;
}

.demo-option:nth-child(1) { animation-delay: 0.1s; }
.demo-option:nth-child(2) { animation-delay: 0.2s; }
.demo-option:nth-child(3) { animation-delay: 0.3s; }
.demo-option:nth-child(4) { animation-delay: 0.4s; }

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

.demo-option.selecting {
    border-color: var(--primary-green);
    background: rgba(139, 92, 246, 0.05);
    transform: scale(1.02);
}

.demo-completion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.completion-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

.completion-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.completion-text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
}

.demo-option-icon {
    font-size: 1.25rem;
}

.demo-option-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

.demo-footer {
    background: white;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #E5E5E5;
}

.demo-progress {
    height: 8px;
    background: #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
}

.demo-progress-bar {
    height: 100%;
    background: var(--primary-green);
    border-radius: 4px;
    transition: width 3s linear;
    width: 0%;
}

.cta-primary {
    background: var(--primary-green);
    color: #FFFFFF;
    border: none;
    padding: 1.125rem 2.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
    margin: 0 0.5rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.cta-primary:active {
    transform: translateY(-1px);
}

.cta-secondary {
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 1.125rem 2.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
    margin: 0 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.cta-secondary:hover::before {
    left: 100%;
}

.cta-secondary:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cta-secondary:active {
    transform: translateY(-1px);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works - Scroll Animation */
#how-it-works {
    padding: 5rem 0;
}

.section-subtitle-large {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.scroll-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: left;
    padding: 0 2rem;
}

.scroll-text span {
    display: inline;
}

.scroll-text .word {
    display: inline;
    color: #BDBDBD;
    font-weight: 400;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.scroll-text .word.active {
    color: var(--text-primary);
    font-weight: 500;
}

.scroll-text .word.underline-accent {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
}

.scroll-text .word.underline-accent.active {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    .scroll-text {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 2rem;
    }
    
    .section-subtitle-large {
        font-size: 1rem;
    }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cards-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

/* Results Section */
.results-section {
    background: var(--bg-white);
}

.results-section .section-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2.5rem 2rem;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .results-section .section-title {
        font-size: 1.75rem;
    }
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease;
    display: inline-block;
}

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

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card:hover .card-title {
    color: var(--primary-green);
}

.card-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* AI Agents Section */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.agent-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.agent-card:hover::before {
    transform: scaleX(1);
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.agent-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.agent-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.agent-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

/* Special CTA Agent Cards */
.agent-cta-card {
    background: white;
    border: 2px solid var(--primary-green);
    position: relative;
    text-align: center;
}

.agent-cta-card .agent-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.agent-cta-card .agent-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.agent-cta-card .agent-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
}

.agent-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.15);
    border-color: #7C3AED;
}

.cta-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-green) !important;
    color: #FFFFFF !important;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.agent-cta-card .cta-badge {
    background: var(--primary-green) !important;
    color: white !important;
}

.agent-cta-btn {
    display: inline-block;
    background: var(--primary-green);
    color: #FFFFFF;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.agent-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.agent-cta-btn:hover::before {
    left: 100%;
}

.agent-cta-btn:hover {
    background: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

@media (max-width: 968px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .agents-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials - 3 Independent Scrolling Columns */
.reviews-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-column {
    overflow: hidden;
    position: relative;
    height: 700px;
    mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
}

.review-column-scroll {
    animation: scrollColumnUp 10s linear infinite;
}

/* Each column has different speed AND different starting position */
.review-column:nth-child(1) .review-column-scroll {
    animation-duration: 8s;
    animation-delay: -1s;
}

.review-column:nth-child(2) .review-column-scroll {
    animation-duration: 11s;
    animation-delay: -4s;
}

.review-column:nth-child(3) .review-column-scroll {
    animation-duration: 9s;
    animation-delay: -7s;
}

@keyframes scrollColumnUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #FFC107;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-stars .rating {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-left: 0.5rem;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-project {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
}

.team-photo {
    width: 100%;
    height: 320px;
    background: #E5E5E5;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-info {
    padding: 1.75rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.team-quote {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
}

.process-icon-circle {
    width: 85px;
    height: 85px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.process-card:nth-child(1) .process-icon-circle {
    background: #8B5CF6;
}

.process-card:nth-child(2) .process-icon-circle {
    background: #3B82F6;
}

.process-card:nth-child(3) .process-icon-circle {
    background: #10B981;
}

.process-card:nth-child(4) .process-icon-circle {
    background: #F59E0B;
}

.process-icon {
    width: 34px;
    height: 34px;
    color: #FFFFFF;
    stroke-width: 2.5;
}

.process-card:hover .process-icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.process-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.faq-question:hover {
    color: var(--primary-green);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* Calculator - Notion Style */
.calculator-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.calculator-card {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
}

.calc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.tool-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-checkbox:hover {
    border-color: var(--primary-green);
}

.tool-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.tool-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tool-price {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Department Calculator */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.department-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    justify-content: center;
}

.department-checkbox:hover {
    border-color: var(--primary-green);
    background: rgba(139, 92, 246, 0.05);
}

.department-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.dept-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.department-inputs {
    margin: 2rem 0;
}

.dept-input-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
    animation: slideInRow 0.4s ease-out;
}

@keyframes slideInRow {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dept-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dept-header > label {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.dept-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    animation: fadeInText 0.6s ease-out 0.2s backwards;
}

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

.dept-inputs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dept-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dept-input-group label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.dept-input-group input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.dept-input-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.calc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.team-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-input-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.team-input-group input {
    width: 140px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--bg-white);
}

.team-input-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.savings-display {
    display: flex;
    gap: 4rem;
}

.savings-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.savings-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.savings-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.savings-box.annual .savings-value {
    color: var(--primary-green);
}

.calc-cta-section {
    text-align: center;
    margin-top: 2rem;
}

/* Audit Page - Notion Style */
.audit-page-hero {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    padding: 4rem 1rem 3rem 1rem;
    text-align: center;
    color: white;
}

.audit-page-header {
    max-width: 800px;
    margin: 0 auto;
}

.audit-page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.audit-page-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
}

.audit-section {
    background: linear-gradient(135deg, #F7F6F5 0%, #EFEEED 100%);
    min-height: 100vh;
    padding: 2rem 1rem 3rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.audit-card {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    height: 85vh;
    max-height: 900px;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 16px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.audit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-green) 0%, 
        #A78BFA 50%, 
        var(--primary-green) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

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

/* Corner accents */
.audit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.2) 50%, 
        transparent 100%);
}

.audit-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0;
    border: none;
    flex-shrink: 0;
}

.progress-info {
    margin-bottom: 1.5rem;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #F0F0F0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-green);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.audit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.question-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-style: normal;
    text-align: center;
    font-weight: 400;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-bottom: 0;
    flex: 1;
    align-content: start;
}

.question-options.two-column {
    grid-template-columns: repeat(2, 1fr);
}

/* Center last item if odd number of options */
.question-options.two-column .option:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.3125rem);
    margin: 0 auto;
}

.option {
    background: white;
    border: 1px solid #E3E3E3;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.option:hover::before {
    left: 100%;
}

.option:hover {
    border-color: #C1C1C1;
    background: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.option.selected {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px var(--primary-green);
    transform: scale(1.02);
}

.option.selected .option-icon {
    transform: scale(1.2);
    animation: iconBounce 0.4s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
}

.option-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    filter: grayscale(0.3);
}

.option:hover .option-icon {
    filter: grayscale(0);
}

.option.selected .option-icon {
    filter: grayscale(0);
}

.option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.option-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.option-description {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
    opacity: 0.85;
}

.option:hover .option-description {
    opacity: 1;
    color: var(--text-primary);
}

.option.pill-style {
    padding: 0.75rem 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.option.pill-style .option-title {
    margin: 0;
    font-size: 0.875rem;
}

/* Contact Form Grid */
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
}

.input-group {
    margin-bottom: 0;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.input-field {
    width: 100%;
    background: white;
    border: 1px solid #E7E5E4;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: border 0.15s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 1px var(--primary-green);
}

.input-field::placeholder {
    color: #A8A29E;
}

.audit-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0;
    border: none;
    flex-shrink: 0;
    min-height: 54px;
    align-items: center;
}

.btn-back {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    background: transparent;
    color: var(--text-secondary);
}

.btn-back:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.btn-next {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    background: var(--primary-green);
    color: #FFFFFF;
}

.btn-next:hover {
    background: var(--dark-green);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Thank You */
/* Thank You Page */
.thank-you-section {
    background: linear-gradient(135deg, #F7F6F5 0%, #EFEEED 100%);
    min-height: 100vh;
    padding: 4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Email Alert */
.thank-you-alert {
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

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

.alert-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.alert-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Success Section */
.thank-you-success {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.success-icon-large {
    margin: 0 auto 2rem;
    animation: scaleIn 0.6s ease 0.5s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Next Steps */
.next-steps {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease 0.6s both;
}

.next-steps-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.timeline-step:hover {
    background: #F3F0FF;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

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

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.step-time {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* CTA Section */
.thank-you-cta {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #A78BFA 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease 0.9s both;
    position: relative;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 10px 40px rgba(139, 92, 246, 0.4),
        0 20px 60px rgba(124, 58, 237, 0.3);
    overflow: hidden;
}

.thank-you-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease infinite;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-text {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-green);
    padding: 1.5rem 3.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 10px 40px rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 15px 50px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
}

.cta-savings {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .thank-you-cta {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.125rem;
        padding: 1.25rem 2.5rem;
    }
}

/* Footer */
.thank-you-footer {
    text-align: center;
    animation: fadeIn 1.5s ease 1.2s both;
}

.social-proof {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-green);
}

/* Upsell Page - Russell Brunson Style */
.upsell-page {
    background: linear-gradient(135deg, #F7F6F5 0%, #EFEEED 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
}

.upsell-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Simple Urgency Banner */
.urgency-banner-simple {
    background: #DC2626;
    color: white;
    padding: 0.875rem 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.urgency-simple-text {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
    animation: pulse 2s ease infinite;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.urgency-icon {
    font-size: 1.25rem;
    animation: flash 1.5s ease infinite;
}

.urgency-text {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 1rem;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Section */
.upsell-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.label {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.upsell-headline {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.upsell-subheadline {
    font-size: 1.375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Why This Call Section */
.why-call-section {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.why-call-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.highlight-text {
    color: var(--primary-green);
    position: relative;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.reason-item:hover {
    border-color: var(--primary-green);
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(8px);
}

.reason-check {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.reason-content {
    flex: 1;
}

.reason-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.reason-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.reasons-cta {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 2px solid rgba(139, 92, 246, 0.2);
}

.reasons-cta-subtext {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Price Box */
.price-box-simple {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.price-simple-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.price-simple-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-simple-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-simple-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.price-simple-value.strikethrough {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1.75rem;
}

.price-simple-item.highlight .price-simple-value {
    color: var(--primary-green);
    font-size: 2.5rem;
}

.price-simple-divider {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.price-simple-note {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.price-simple-note strong {
    color: var(--text-primary);
    font-weight: 800;
}

.price-box {
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.price-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(to bottom, #FAFAFA 0%, #F5F5F5 100%);
    border-radius: 12px;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.price-item-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-item-value {
    font-size: 1.875rem;
    color: var(--text-primary);
    font-weight: 800;
}

.price-item.strikethrough .price-item-value {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1.5rem;
}

.price-item.highlight {
    background: var(--primary-green);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin: -1rem 0;
}

.price-item.highlight .price-item-label {
    color: rgba(255, 255, 255, 0.9);
}

.price-item.highlight .price-item-value {
    color: white;
    font-size: 2.25rem;
}

.price-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, #D1D5DB 50%, transparent 100%);
}

.price-note {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.expiration-warning {
    background: #FEF2F2;
    color: #DC2626;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid #FCA5A5;
}

.price-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

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

.price-usual {
    font-size: 1.5rem;
    color: #DC2626;
    font-weight: 700;
    text-decoration: line-through;
}

.price-arrow-down {
    font-size: 2rem;
    color: var(--text-secondary);
    font-weight: 700;
    line-height: 1;
}

.price-row-today {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.price-today-label {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.price-new {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
}

.price-savings {
    font-size: 1.25rem;
    color: #16A34A;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
    background: var(--dark-green);
}

.cta-button-large.pulse {
    animation: pulse 2s ease infinite;
}

.guarantee-badge {
    margin-top: 1.5rem;
    color: #16A34A;
    font-size: 1rem;
    font-weight: 600;
}

/* Value Stack */
.value-stack {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-stack-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-green);
    background: #F9F5FF;
    transform: translateX(8px);
}

.value-item.bonus {
    border: 3px solid #FBBF24;
    background: #FFFBEB;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.value-item.bonus .value-icon {
    background: #FBBF24;
    font-size: 1.5rem;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.value-price {
    font-size: 1.125rem;
    color: var(--primary-green);
    font-weight: 700;
}

.total-value {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.total-label {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.total-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: line-through;
}

.today-price {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #A78BFA 100%);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.today-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.today-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

/* CTA Section */
.upsell-cta-section {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials-upsell {
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card-small {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #FBBF24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-section {
    margin-bottom: 4rem;
}

.guarantee-badge-large {
    background: white;
    border: 3px solid #16A34A;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Upsell */
.faq-upsell {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Recap Section */
.recap-section {
    background: white;
    border-radius: 20px;
    padding: 3rem 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    border: 2px solid var(--primary-green);
}

.recap-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.recap-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.recap-check {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.recap-text {
    flex: 1;
}

.recap-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.recap-total-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.recap-total-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: line-through;
}

.recap-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #A78BFA 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.recap-price-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.recap-price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.recap-savings {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #16A34A;
    margin-top: 1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #A78BFA 100%);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-text {
    font-size: 1.25rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.risk-free {
    margin-top: 1rem;
    color: white;
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* No Thanks */
.no-thanks {
    text-align: center;
    padding: 2rem 0;
}

.no-thanks-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.no-thanks-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .upsell-page {
        padding: 1rem 0.5rem;
    }
    
    .upsell-container {
        padding: 0 0.5rem;
    }
    
    .urgency-banner {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .urgency-text {
        font-size: 1rem;
        margin: 0 0.5rem;
    }
    
    .upsell-headline {
        font-size: 1.5rem;
        line-height: 1.35;
    }
    
    .upsell-subheadline {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .price-box-simple {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .why-call-section {
        padding: 2.5rem 1.5rem;
    }
    
    .why-call-title {
        font-size: 1.75rem;
    }
    
    .reason-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .reason-title {
        font-size: 1.125rem;
    }
    
    .reason-text {
        font-size: 1rem;
    }
    
    .price-simple-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price-simple-divider {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    
    .price-simple-value {
        font-size: 1.75rem;
    }
    
    .price-simple-item.highlight .price-simple-value {
        font-size: 2rem;
    }
    
    .cta-button-large {
        font-size: 1.25rem;
        padding: 1.25rem 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .total-value,
    .today-price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .final-cta-title {
        font-size: 1.875rem;
    }
    
    .recap-section {
        padding: 2rem 1.5rem;
    }
    
    .recap-title {
        font-size: 1.5rem;
    }
    
    .recap-item {
        font-size: 1rem;
    }
    
    .recap-total,
    .recap-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .recap-total-amount,
    .recap-price-amount {
        font-size: 1.75rem;
    }
}

/* Wait Page Styles */
.wait-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #F7F6F5 0%, #EFEEED 100%);
    padding: 2rem 1rem;
}

.wait-container {
    max-width: 900px;
    margin: 0 auto;
}

.wait-banner {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.3);
}

.wait-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.wait-headline {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wait-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wait-subheadline {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.wait-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.reality-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.reality-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #FEF2F2;
    border-left: 4px solid #EF4444;
    border-radius: 8px;
}

.reality-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reality-content {
    font-size: 1.0625rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.wait-calculation {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.calc-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.calc-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #EF4444;
}

.calc-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.calc-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.calc-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.calc-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.calc-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.calc-number.total .calc-amount {
    color: #EF4444;
    font-size: 2.5rem;
}

.calc-divider {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.calc-conclusion {
    font-size: 1.125rem;
    font-weight: 700;
    color: #EF4444;
    text-align: center;
    padding: 1rem;
    background: #FEF2F2;
    border-radius: 8px;
}

.final-offer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #A78BFA 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease infinite;
}

.offer-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.offer-text {
    font-size: 1.125rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.offer-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.offer-box-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.wait-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.wait-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.wait-price-row.strikethrough .wait-price-value {
    text-decoration: line-through;
    color: #DC2626;
}

.wait-price-row.highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, #A78BFA 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.wait-price-row.highlight .wait-price-label,
.wait-price-row.highlight .wait-price-value {
    color: white;
}

.wait-price-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.wait-price-value {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
}

.wait-price-row.highlight .wait-price-value {
    font-size: 2.25rem;
}

.offer-price-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.split-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.split-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
}

.offer-box-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.offer-button {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    margin-bottom: 2rem;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.offer-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.benefit-check {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 600;
}

.wait-testimonial {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-green);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.final-decision {
    margin-bottom: 3rem;
}

.decision-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.decision-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.decision-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #E5E5E5;
    transition: all 0.3s ease;
}

.decision-box.smart {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.decision-box.risky {
    border-color: #EF4444;
    opacity: 0.7;
}

.decision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.decision-box-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.decision-box.smart .decision-box-title {
    color: var(--primary-green);
}

.decision-box.risky .decision-box-title {
    color: #EF4444;
}

.decision-box-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.decision-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.decision-button.primary {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.decision-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.decision-button.secondary {
    background: #F3F4F6;
    color: var(--text-secondary);
    border: 2px solid #E5E5E5;
}

.decision-button.secondary:hover {
    background: #E5E7EB;
}

.wait-guarantee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.guarantee-seal {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guarantee-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Wait Page */
@media (max-width: 768px) {
    .wait-page {
        padding: 1rem 0.5rem;
    }
    
    .wait-banner {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .wait-headline {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .wait-emoji {
        font-size: 2.5rem;
    }
    
    .wait-content {
        padding: 1.5rem 1rem;
    }
    
    .wait-subheadline {
        font-size: 1.5rem;
    }
    
    .wait-text {
        font-size: 1rem;
    }
    
    .reality-content {
        font-size: 0.9375rem;
    }
    
    .wait-calculation {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .calc-title {
        font-size: 1.25rem;
    }
    
    .calc-box {
        padding: 1.25rem;
    }
    
    .calc-numbers {
        flex-direction: column;
        gap: 1rem;
    }
    
    .calc-divider {
        transform: rotate(90deg);
    }
    
    .final-offer {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }
    
    .offer-badge {
        padding: 0.625rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .offer-title {
        font-size: 1.375rem;
        line-height: 1.35;
        margin-bottom: 1rem;
    }
    
    .offer-text {
        font-size: 1rem;
    }
    
    .offer-box {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-radius: 12px;
    }
    
    .offer-box-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
        line-height: 1.35;
    }
    
    .offer-price-split {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin: 1.25rem 0;
    }
    
    .split-amount {
        font-size: 2.25rem;
    }
    
    .split-label {
        font-size: 1rem;
    }
    
    .offer-box-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }
    
    .offer-benefits {
        grid-template-columns: 1fr;
    }
    
    .decision-boxes {
        grid-template-columns: 1fr;
    }
    
    .decision-box {
        padding: 1.5rem 1rem;
    }
    
    .decision-title {
        font-size: 1.25rem;
    }
    
    .decision-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .wait-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .guarantee-text {
        font-size: 0.9375rem;
    }
}

.thank-you-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hidden {
    display: none !important;
}

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

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

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

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 200px;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-domain {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    border: none;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.social-icon:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        padding: 4rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-note {
        font-size: 0.8125rem;
        margin-top: 0.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-primary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-secondary {
        display: none;
    }
    
    .hero-mockup {
        display: none;
    }
    
    .calculator-section {
        display: none;
    }
    
    .cards-grid,
    .tools-grid,
    .departments-grid,
    .team-grid,
    .process-grid,
    .question-options {
        grid-template-columns: 1fr;
    }
    
    .dept-inputs-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .department-checkbox {
        justify-content: flex-start;
        text-align: left;
    }
    
    .reviews-columns {
        grid-template-columns: 1fr;
    }
    
    .savings-display {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .calc-footer {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .audit-section {
        padding: 1rem 0.5rem;
        min-height: 100vh;
    }
    
    .audit-card {
        max-width: 100%;
        width: calc(100vw - 1rem);
        padding: 1.25rem 0.875rem;
        border-radius: 12px;
        height: auto;
        min-height: unset;
        max-height: unset;
    }
    
    .calculator-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
        min-height: 90vh;
    }
    
    .audit-header {
        margin-bottom: 1rem;
    }
    
    .progress-info {
        margin-bottom: 0.875rem;
    }
    
    .progress-text {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
    }
    
    .progress-bar {
        height: 3px;
    }
    
    .question-title {
        font-size: 1.125rem;
        line-height: 1.35;
        margin-bottom: 0.625rem;
        min-height: unset;
    }
    
    .question-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
        min-height: unset;
        line-height: 1.4;
    }
    
    .question-options {
        gap: 0.625rem;
        margin-bottom: 1rem;
    }
    
    .option {
        padding: 0.875rem 0.75rem;
        min-height: unset;
        gap: 0.75rem;
    }
    
    .option-icon {
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .option-content {
        gap: 0.125rem;
    }
    
    .option-title {
        font-size: 0.9375rem;
        line-height: 1.3;
    }
    
    .option-description {
        font-size: 0.75rem;
        line-height: 1.3;
        display: none;
    }
    
    .audit-nav {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 1.25rem;
        min-height: unset;
    }
    
    .btn-back, .btn-next {
        flex: 1;
        padding: 0.8125rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .input-field {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .audit-content {
        overflow-y: auto;
        overflow-x: hidden;
        max-height: calc(100vh - 220px);
        -webkit-overflow-scrolling: touch;
        padding: 0 2px;
    }
    
    .question-options {
        padding: 0 2px;
    }
    
    .option.selected {
        transform: none;
        box-shadow: 0 0 0 2px var(--primary-green);
    }
    
    .option:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    /* Thank You Page Mobile */
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1rem;
    }
    
    .next-steps {
        padding: 2rem 1.5rem;
    }
    
    .next-steps-title {
        font-size: 1.5rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .timeline-step:hover {
        transform: translateY(-4px);
    }
    
    .thank-you-cta {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-domain {
        text-align: center;
    }
}
