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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Skip Navigation for Accessibility */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2563eb;
    color: #ffffff;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    z-index: 1000;
    font-weight: 600;
}

.skip-nav:focus {
    top: 6px;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 80px;
    }
}

/* Typography Scale */
h1 {
    font-size: 2.25rem; /* 36px mobile */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem; /* 28px mobile */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem; /* 20px mobile */
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem; /* 18px mobile */
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 3rem; /* 48px desktop */
    }
    
    h2 {
        font-size: 2.25rem; /* 36px desktop */
    }
    
    h3 {
        font-size: 1.5rem; /* 24px desktop */
    }
    
    h4 {
        font-size: 1.25rem; /* 20px desktop */
    }
}

/* Body Text Variations */
.large-body {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 75ch;
}

.small-text {
    font-size: 0.875rem; /* 14px */
    line-height: 1.5;
}

/* Eyebrow Text */
.eyebrow {
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Sticky Header */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    z-index: 1000;
    min-height: 60px;
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .header {
        min-height: 64px;
        padding: 0.75rem 0;
    }
}

@media (min-width: 1200px) {
    .header {
        min-height: 72px;
        padding: 1rem 0;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    position: relative;
}

/* Navigation Container */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Navigation Menu */
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 2rem;
    }
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: 2.5rem;
    }
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    display: block;
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 1rem;
    }
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2563eb;
    border-radius: 1px;
}


/* Mobile Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    width: 44px;
    height: 44px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.nav-menu.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.3s ease;
}

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

.nav-menu.mobile-open li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu.mobile-open li:last-child {
    border-bottom: none;
}

.nav-menu.mobile-open .nav-link {
    padding: 1rem 0;
    font-size: 1.1rem;
    text-align: left;
    width: 100%;
}

/* Improved responsive breakpoints */
@media (max-width: 480px) {
    .header-content {
        min-height: 44px;
    }
    
    .logo-text {
        font-size: 1rem;
        max-width: 150px;
    }
    
    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 0.4rem;
    }
    
    .hamburger {
        width: 18px;
        height: 2px;
    }
    
    .nav-menu.mobile-open {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu.mobile-open .nav-link {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
}

/* High resolution displays */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 3rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
}

/* Section Spacing and Dividers */
section {
    padding: 40px 0;
}

@media (min-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (min-width: 1200px) {
    section {
        padding: 80px 0;
    }
}

.section-divider {
    border-top: 1px solid #333333;
}

/* Card System */
.card {
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1200px) {
    .card {
        padding: 32px;
    }
}

.card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Grid System */
.card-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Icons */
.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-glow-left {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
}

.hero-glow-right {
    position: absolute;
    top: 60%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 8s ease-in-out infinite reverse;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(96, 165, 250, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(37, 99, 235, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float-particles 20s linear infinite;
}

@keyframes float-particles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}

/* Hero Badge */
.hero-badge-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 6px 30px rgba(245, 158, 11, 0.4); }
}

.badge-icon {
    font-size: 1.25rem;
}

.eyebrow {
    color: #fbbf24;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.hero-headline {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.headline-primary {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.headline-secondary {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Hero Benefits Grid */
.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
    max-width: 800px;
    width: 100%;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-3px);
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.benefit-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Hero CTA Section */
.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: #ffffff;
    padding: 1.75rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta-button::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.6s;
}

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

.hero-cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(37, 99, 235, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
    font-style: italic;
}

.hero-benefits ul {
    list-style: none;
    margin: 2rem 0;
}

.hero-benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.hero-cta {
    margin-top: 2rem;
}


/* Hero Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 60px 0;
    }
    
    .hero-main {
        gap: 2rem;
    }
    
    .hero-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .badge-icon {
        font-size: 1.1rem;
    }
    
    .eyebrow {
        font-size: 0.85rem;
    }
    
    .headline-primary {
        font-size: 2.5rem;
    }
    
    .headline-secondary {
        font-size: 2.2rem;
    }
    
    .hero-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .hero-cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }
    
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .headline-primary {
        font-size: 2rem;
    }
    
    .headline-secondary {
        font-size: 1.8rem;
    }
    
    .hero-cta-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .eyebrow {
        font-size: 0.8rem;
    }
}

.automation-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 50px;
    animation: float 3s ease-in-out infinite;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 120px;
    right: 30px;
    animation: float 3s ease-in-out infinite 1s;
}

.element-3 {
    width: 70px;
    height: 70px;
    bottom: 40px;
    left: 30px;
    animation: float 3s ease-in-out infinite 2s;
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.cta-button.large {
    padding: 22px 44px;
    font-size: 1.25rem;
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.cta-button.large:hover {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
}

.cta-button.extra-large {
    padding: 26px 52px;
    font-size: 1.4rem;
    min-width: 320px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    font-weight: 800;
}

.cta-button.extra-large:hover {
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
    transform: translateY(-4px);
}

.cta-button.secondary {
    background: transparent;
    border: 3px solid #2563eb;
    color: #2563eb;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-color: #1d4ed8;
}

.cta-center {
    text-align: center;
    margin: 3rem 0;
}

.friction-remover {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
}

/* Lists */
.highlight-list {
    list-style: none;
    margin: 2rem 0;
}

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

.highlight-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Problem Section */
.problem {
    background-color: #111111;
    padding: 5rem 0;
}

/* Problem Header */
.problem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.problem-header h2 {
    color: #f87171;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .problem-header h2 {
        font-size: 3rem;
    }
}

.problem-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Problem Scenario */
.problem-scenario {
    margin-bottom: 5rem;
}

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

.scenario-content h3 {
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: rgba(248, 113, 113, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f87171;
    transition: all 0.3s ease;
}

.pain-point:hover {
    background-color: rgba(248, 113, 113, 0.15);
    transform: translateX(5px);
}

.pain-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(248, 113, 113, 0.2);
    border-radius: 50%;
}

.pain-content h4 {
    color: #f87171;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pain-content p {
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Cost Breakdown */
.cost-breakdown {
    margin-bottom: 5rem;
}

.cost-breakdown h3 {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cost-item {
    text-align: center;
    background-color: rgba(248, 113, 113, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(248, 113, 113, 0.2);
    transition: all 0.3s ease;
}

.cost-item:hover {
    border-color: #f87171;
    background-color: rgba(248, 113, 113, 0.15);
    transform: translateY(-5px);
}

.cost-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f87171;
    margin-bottom: 1rem;
    line-height: 1;
}

.cost-label {
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Problem Summary */
.problem-summary {
    display: flex;
    justify-content: center;
}

.summary-box {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid rgba(248, 113, 113, 0.3);
    border-radius: 16px;
    padding: 3rem;
    max-width: 700px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.summary-box h3 {
    color: #f87171;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.summary-box p {
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.summary-cta {
    margin-top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .problem {
        padding: 3rem 0;
    }
    
    .problem-header h2 {
        font-size: 2rem;
    }
    
    .problem-subtitle {
        font-size: 1.1rem;
    }
    
    .scenario-content h3 {
        font-size: 1.5rem;
    }
    
    .pain-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .pain-icon {
        align-self: center;
    }
    
    .cost-breakdown h3 {
        font-size: 1.6rem;
    }
    
    .cost-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .cost-item {
        padding: 2rem 1rem;
    }
    
    .cost-number {
        font-size: 2rem;
    }
    
    .summary-box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .summary-box h3 {
        font-size: 1.5rem;
    }
    
    .summary-box p {
        font-size: 1rem;
    }
}

/* Solutions Section */
.solutions h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-card h3 {
    color: #60a5fa;
}

/* How It Works */
.how-it-works {
    background-color: #111111;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1200px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.step {
    text-align: center;
    position: relative;
    background-color: #1a1a1a;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.3);
    animation: pulse 2s infinite;
}

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

.step h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Step Connectors for Desktop */
@media (min-width: 1200px) {
    .step:not(:last-child)::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: -1.5rem;
        transform: translateY(-50%);
        font-size: 2rem;
        color: #2563eb;
        font-weight: bold;
        z-index: 10;
    }
    
    .step:last-child::before {
        display: none;
    }
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

@media (min-width: 1200px) {
    .about-header h2 {
        font-size: 3rem;
    }
}

.about-subtitle {
    font-size: 1.2rem;
    color: #60a5fa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Story Cards */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .about-story {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.story-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.05) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    border-color: #2563eb;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.story-card h3 {
    color: #60a5fa;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-card p {
    color: #e5e5e5;
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 5rem;
}

.benefits-section h3 {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(37, 99, 235, 0.08);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.benefit-content h4 {
    color: #60a5fa;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* About Simple CTA */
.about-simple-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-story {
        margin-bottom: 3rem;
    }
    
    .story-card {
        padding: 2rem 1.5rem;
    }
    
    .story-icon {
        font-size: 2.5rem;
    }
    
    .story-card h3 {
        font-size: 1.2rem;
    }
    
    .benefits-section h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .benefit-icon {
        align-self: center;
    }
}

/* Detailed Services */
.detailed-services {
    background-color: #111111;
    padding: 6rem 0;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

@media (min-width: 1200px) {
    .services-header h2 {
        font-size: 3rem;
    }
}

.services-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Navigation Tabs */
.services-navigation {
    margin-bottom: 4rem;
}

.service-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-tab {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.service-tab:hover {
    background-color: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    color: #60a5fa;
}

.service-tab.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Service Details */
.service-details {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.service-detail.active {
    display: block;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-header h3 {
    color: #60a5fa;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #e5e5e5;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Comparison */
.service-comparison {
    margin-bottom: 3rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .before-after {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.comparison-card {
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.comparison-card::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;
}

.comparison-card:hover::before {
    left: 100%;
}

.before {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.3) 0%, rgba(127, 29, 29, 0.1) 100%);
    border: 2px solid rgba(248, 113, 113, 0.3);
    border-left: 6px solid #f87171;
}

.after {
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.3) 0%, rgba(20, 83, 45, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-left: 6px solid #10b981;
}

.before h4 {
    color: #fca5a5;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.after h4 {
    color: #86efac;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Comparison Stats */
.comparison-stats {
    margin-bottom: 2rem;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item.negative {
    background-color: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.3);
}

.stat-item.positive {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: inherit;
}

.stat-item.negative .stat-number {
    color: #f87171;
}

.stat-item.positive .stat-number {
    color: #10b981;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

/* Comparison Lists */
.before ul, .after ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.before li, .after li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.5;
}

.before li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.after li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Services Summary */
.services-summary {
    margin: 5rem 0 4rem;
    text-align: center;
}

.services-summary h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.services-summary p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-item {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.05) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-item:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 1rem;
    line-height: 1;
}

.impact-label {
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .detailed-services {
        padding: 4rem 0;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .service-tabs {
        gap: 0.5rem;
    }
    
    .service-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-header h3 {
        font-size: 1.8rem;
    }
    
    .service-description {
        font-size: 1.1rem;
    }
    
    .before-after {
        gap: 2rem;
    }
    
    .comparison-card {
        padding: 2rem;
    }
    
    .before h4, .after h4 {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .services-summary h3 {
        font-size: 1.6rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .impact-item {
        padding: 2rem 1rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
}

/* Qualification Section */
.qualification {
    padding: 6rem 0;
}

.qualification-header {
    text-align: center;
    margin-bottom: 4rem;
}

.qualification-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

@media (min-width: 1200px) {
    .qualification-header h2 {
        font-size: 3rem;
    }
}

.qualification-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.qualification-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.fit-section {
    margin-bottom: 3rem;
}

.fit-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.fit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.fit-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.perfect-fit h3 {
    color: #10b981;
}

.not-fit h3 {
    color: #f87171;
}

.fit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fit-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.fit-item {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    text-align: center;
}

.fit-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.perfect-fit + .fit-list .fit-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background-color: rgba(16, 185, 129, 0.05);
}

.not-fit + .fit-list .fit-item:hover {
    border-color: rgba(248, 113, 113, 0.3);
    background-color: rgba(248, 113, 113, 0.05);
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 3rem auto;
    max-width: 300px;
}

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

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .qualification {
        padding: 4rem 0;
    }
    
    .qualification-header h2 {
        font-size: 2rem;
    }
    
    .qualification-subtitle {
        font-size: 1.1rem;
    }
    
    .fit-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .fit-header h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .fit-item {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
}

/* FAQ Section */
.faq {
    background-color: #111111;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background-color: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #e5e5e5;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question:hover {
    background-color: rgba(37, 99, 235, 0.08);
}

.faq-question:focus {
    outline: none;
}

.faq-question:focus:not(:hover) {
    background-color: rgba(37, 99, 235, 0.05);
}

.question-text {
    flex: 1;
    color: #ffffff;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #2563eb;
}

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

.answer-content {
    padding: 0 2rem 1.5rem;
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .answer-content {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
    }
}

/* Final CTA - Hero Section */
.final-cta {
    position: relative;
    overflow: hidden;
    padding: 0;
    text-align: center;
}

.cta-background {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Badge */
.cta-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: bounce-in 1s ease-out;
}

.badge-text {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6); }
}

/* Headlines */
.cta-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-headline em {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    position: relative;
}

.cta-subheadline {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Proposition Grid */
.value-proposition {
    margin-bottom: 4rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 140px;
    justify-content: space-between;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.value-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
}

.value-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: auto;
}

.crossed-price {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: line-through;
    position: relative;
}

.crossed-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ef4444;
    transform: translateY(-50%);
}

.free-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* CTA Action */
.cta-action {
    position: relative;
}


/* Mega CTA Button */
.mega-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.mega-cta-button::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.6s;
}

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

.mega-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(37, 99, 235, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(96, 165, 250, 0.5);
}

.mega-cta-button:active {
    transform: translateY(-1px) scale(1.01);
}

.button-text {
    display: block;
    margin-bottom: 0.5rem;
}

.button-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: normal;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.trust-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-background {
        padding: 4rem 0;
        min-height: 70vh;
    }
    
    .cta-headline {
        font-size: 2.5rem;
    }
    
    .cta-subheadline {
        font-size: 1.2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .value-item {
        padding: 1.75rem 1.5rem;
        min-height: 120px;
        gap: 0.875rem;
    }
    
    .value-icon {
        font-size: 2.25rem;
        margin-bottom: 0.25rem;
    }
    
    .value-content {
        gap: 0.625rem;
    }
    
    .value-title {
        font-size: 0.95rem;
    }
    
    .mega-cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cta-headline {
        font-size: 2rem;
    }
    
    .mega-cta-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(29, 78, 216, 0.2) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.ai-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
}

.ai-icon {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.ai-text {
    color: #60a5fa;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-message {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-message {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.community-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.community-link:hover {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.community-link:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .ai-badge {
        padding: 0.625rem 1.25rem;
        gap: 0.5rem;
    }
    
    .ai-icon {
        font-size: 1.25rem;
    }
    
    .ai-text {
        font-size: 0.9rem;
    }
    
    .footer-message {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 1.25rem;
    }
    
    .community-message {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .footer-main {
        margin-bottom: 1.5rem;
    }
}

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

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.cta-button:focus {
    outline: 2px solid #ffffff;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .card {
        border-width: 2px;
    }
    
    .cta-button {
        border: 2px solid #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .cta-button,
    .calendly-embed {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card {
        background: white;
        border: 1px solid black;
    }
}

/* Mobile Specific Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        min-width: 200px;
        letter-spacing: 0.3px;
    }
    
    .cta-button.large {
        padding: 18px 36px;
        font-size: 1.1rem;
        min-width: 240px;
    }
    
    .cta-button.extra-large {
        padding: 20px 40px;
        font-size: 1.2rem;
        min-width: 260px;
    }
    
    .hero {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .hero-benefits li {
        font-size: 1rem;
    }
}