/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    /* Colors */
    --primary-color: #4169E1;
    --secondary-color: #1a2b49;
    --accent-color: #FF6B6B;
    --text-dark: #1a2b49;
    --text-light: #5a6c7d;
    --white: #ffffff;
    --bg-light: #f8faff; /* site-wide canvas background (very light cool gray) */
    --bg-page: #f8faff; /* alias: use for consistent section backgrounds */
    --bg-section: var(--bg-light); /* section band (match canvas to prevent visible seams) */
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --blue-gradient: linear-gradient(135deg, #4169E1 0%, #2947A9 100%);
    
    /* Fluid Typography Scale - Modern Responsive System */
    /* Scales smoothly from mobile (375px) to desktop (1920px) */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);      /* 12-14px */
    --text-sm: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);       /* 14-16px */
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);      /* 16-18px */
    --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);    /* 18-20px */
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);        /* 20-24px */
    --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 1.875rem);     /* 24-30px */
    --text-3xl: clamp(1.875rem, 1.65rem + 1.125vw, 2.25rem);   /* 30-36px */
    --text-4xl: clamp(2.25rem, 1.95rem + 1.5vw, 3rem);         /* 36-48px */
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);             /* 48-64px */
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Standard Breakpoints */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light) !important; /* page canvas */
    overflow-x: hidden;
}

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Remove left padding from nav container to align logo */
.nav.container {
    padding-left: 0;
}

/* Ensure logo alignment is preserved on mobile */
@media screen and (max-width: 968px) {
    .nav.container {
        padding-left: 0;
    }
    
    .nav-logo {
        margin-left: 20px;
    }
}

section {
    padding: var(--section-padding);
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: 3rem;
}

.setup-note {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    padding: 1.125rem 1.75rem;
    background: rgba(65, 105, 225, 0.08);
    border-radius: 12px;
    display: inline-block;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 4rem;
}

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

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: var(--text-xl);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: #2f56c9;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(47, 86, 201, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 86, 201, 0.4);
    background: #2548b0;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: var(--text-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 20px;
}

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* ==========================================
   Hero Section
   ========================================== */
/* ==========================================
   HERO SECTION - Bright Blue Tech Design
   ========================================== */

.hero {
    margin-top: 56px;
    margin-left: 24px;
    margin-right: 24px;
    padding: 44px 0 56px 0;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #e8f0ff 0%, #f0f5ff 35%, #f8faff 65%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    border-radius: 24px;
    border: none; /* remove edge that reads as a divider line */
}

.hero .container {
    position: relative;
    z-index: 10;
    max-width: 100%;
    width: 100%;
    padding: 0;
}

/* Tech Background Elements */
.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Profession Text */
.profession-text {
    position: absolute;
    color: rgba(47, 86, 201, 0.08);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    animation: professionFloat 10s ease-in-out infinite;
    pointer-events: none;
}

/* Far Left Column */
.prof-text-1 { top: 8%; left: 2%; animation-delay: 0s; font-size: 1.2rem; opacity: 0.25; }
.prof-text-2 { top: 20%; left: 1%; animation-delay: 2.5s; font-size: 0.95rem; opacity: 0.22; }
.prof-text-3 { top: 35%; left: 3%; animation-delay: 5s; font-size: 1.1rem; opacity: 0.24; }
.prof-text-4 { top: 50%; left: 2%; animation-delay: 7.5s; font-size: 0.9rem; opacity: 0.20; }
.prof-text-5 { top: 65%; left: 1%; animation-delay: 1.5s; font-size: 1.05rem; opacity: 0.23; }
.prof-text-6 { top: 80%; left: 3%; animation-delay: 4s; font-size: 1.3rem; opacity: 0.26; }

/* Left-Center Column */
.prof-text-7 { top: 5%; left: 12%; animation-delay: 3.5s; font-size: 0.92rem; opacity: 0.21; }
.prof-text-8 { top: 18%; left: 8%; animation-delay: 6s; font-size: 1.15rem; opacity: 0.24; }
.prof-text-9 { top: 32%; left: 6%; animation-delay: 8.5s; font-size: 1rem; opacity: 0.22; }
.prof-text-10 { top: 38%; left: 78%; animation-delay: 1s; font-size: 0.88rem; opacity: 0.15; }
.prof-text-11 { top: 60%; left: 8%; animation-delay: 3.5s; font-size: 1.08rem; opacity: 0.23; }
.prof-text-12 { top: 85%; left: 82%; animation-delay: 6.5s; font-size: 0.95rem; opacity: 0.15; }

/* Center-Left Column (avoiding circle) */
.prof-text-13 { top: 5%; left: 25%; animation-delay: 2s; font-size: 1rem; opacity: 0.22; }
.prof-text-14 { top: 45%; left: 76%; animation-delay: 4.5s; font-size: 0.9rem; opacity: 0.15; }
.prof-text-15 { top: 32%; left: 78%; animation-delay: 7s; font-size: 1.12rem; opacity: 0.15; }
.prof-text-16 { top: 18%; left: 76%; animation-delay: 9.5s; font-size: 0.88rem; opacity: 0.15; }

/* True Center Column */
.prof-text-17 { top: 5%; left: 15%; animation-delay: 1.8s; font-size: 1.18rem; opacity: 0.25; }
.prof-text-18 { top: 35%; left: 75%; animation-delay: 4.2s; font-size: 0.92rem; opacity: 0.21; }
.prof-text-19 { top: 20%; left: 82%; animation-delay: 6.8s; font-size: 1.05rem; opacity: 0.15; }
.prof-text-20 { top: 92%; left: 75%; animation-delay: 9.2s; font-size: 1.25rem; opacity: 0.26; }
.prof-text-21 { top: 85%; left: 82%; animation-delay: 2.3s; font-size: 0.95rem; opacity: 0.22; }
.prof-text-22 { top: 55%; left: 85%; animation-delay: 5.6s; font-size: 1.1rem; opacity: 0.15; }

/* Center-Right Column */
.prof-text-23 { top: 48%; left: 78%; animation-delay: 3.1s; font-size: 0.9rem; opacity: 0.20; }
.prof-text-24 { top: 58%; left: 82%; animation-delay: 5.8s; font-size: 1.08rem; opacity: 0.23; }
.prof-text-25 { top: 8%; left: 74%; animation-delay: 8.3s; font-size: 0.92rem; opacity: 0.15; }
.prof-text-26 { top: 75%; left: 76%; animation-delay: 1.2s; font-size: 1.15rem; opacity: 0.15; }
.prof-text-27 { top: 73%; left: 75%; animation-delay: 3.9s; font-size: 0.88rem; opacity: 0.15; }
.prof-text-28 { top: 88%; left: 78%; animation-delay: 6.7s; font-size: 1.02rem; opacity: 0.23; }

/* Right-Center Column */
.prof-text-29 { top: 8%; left: 68%; animation-delay: 2.7s; font-size: 1.12rem; opacity: 0.24; }
.prof-text-30 { top: 22%; left: 70%; animation-delay: 5.1s; font-size: 0.95rem; opacity: 0.22; }
.prof-text-31 { top: 28%; left: 82%; animation-delay: 7.6s; font-size: 1.05rem; opacity: 0.15; }
.prof-text-32 { top: 42%; left: 84%; animation-delay: 0.4s; font-size: 0.9rem; opacity: 0.15; }
.prof-text-33 { top: 67%; left: 68%; animation-delay: 3.2s; font-size: 1.2rem; opacity: 0.25; }
.prof-text-34 { top: 92%; left: 88%; animation-delay: 5.9s; font-size: 0.88rem; opacity: 0.19; }

/* Far Right Column */
.prof-text-35 { top: 5%; left: 80%; animation-delay: 1.6s; font-size: 1rem; opacity: 0.22; }
.prof-text-36 { top: 18%; left: 82%; animation-delay: 4.3s; font-size: 1.18rem; opacity: 0.25; }
.prof-text-37 { top: 55%; left: 82%; animation-delay: 6.9s; font-size: 0.92rem; opacity: 0.15; }
.prof-text-38 { top: 65%; left: 84%; animation-delay: 9.4s; font-size: 1.08rem; opacity: 0.15; }
.prof-text-39 { top: 62%; left: 80%; animation-delay: 2.1s; font-size: 0.95rem; opacity: 0.22; }
.prof-text-40 { top: 77%; left: 10%; animation-delay: 4.8s; font-size: 1.15rem; opacity: 0.24; }

/* Extreme Right Column */
.prof-text-41 { top: 88%; left: 8%; animation-delay: 3.4s; font-size: 0.9rem; opacity: 0.20; }
.prof-text-42 { top: 10%; left: 88%; animation-delay: 6.1s; font-size: 1.05rem; opacity: 0.23; }
.prof-text-43 { top: 92%; left: 22%; animation-delay: 8.7s; font-size: 0.88rem; opacity: 0.19; }
.prof-text-44 { top: 62%; left: 78%; animation-delay: 1.9s; font-size: 1.12rem; opacity: 0.24; }
.prof-text-45 { top: 50%; left: 92%; animation-delay: 4.5s; font-size: 0.92rem; opacity: 0.21; }
.prof-text-46 { top: 85%; left: 5%; animation-delay: 7.3s; font-size: 1.02rem; opacity: 0.22; }

/* Additional Fill-ins */
.prof-text-47 { top: 85%; left: 45%; animation-delay: 5.4s; font-size: 0.85rem; opacity: 0.19; }
.prof-text-48 { top: 8%; left: 80%; animation-delay: 8.1s; font-size: 1rem; opacity: 0.15; }
.prof-text-49 { top: 88%; left: 85%; animation-delay: 2.8s; font-size: 0.95rem; opacity: 0.22; }
.prof-text-50 { top: 92%; left: 48%; animation-delay: 6.2s; font-size: 1.1rem; opacity: 0.24; }
.prof-text-51 { top: 88%; left: 28%; animation-delay: 4.7s; font-size: 0.98rem; opacity: 0.22; }
.prof-text-52 { top: 92%; left: 5%; animation-delay: 7.3s; font-size: 1.05rem; opacity: 0.23; }
.prof-text-53 { top: 95%; left: 12%; animation-delay: 5.1s; font-size: 0.92rem; opacity: 0.20; }

/* Additional Center Fill - Filling empty spaces */
.prof-text-54 { top: 12%; left: 38%; animation-delay: 3.7s; font-size: 1.05rem; opacity: 0.23; }
.prof-text-55 { top: 25%; left: 42%; animation-delay: 6.4s; font-size: 0.92rem; opacity: 0.21; }
.prof-text-56 { top: 40%; left: 35%; animation-delay: 8.9s; font-size: 1.12rem; opacity: 0.24; }
.prof-text-57 { top: 52%; left: 40%; animation-delay: 1.7s; font-size: 0.98rem; opacity: 0.22; }
.prof-text-58 { top: 68%; left: 38%; animation-delay: 4.1s; font-size: 1.08rem; opacity: 0.23; }
.prof-text-59 { top: 78%; left: 42%; animation-delay: 6.8s; font-size: 0.95rem; opacity: 0.22; }
.prof-text-60 { top: 15%; left: 48%; animation-delay: 2.4s; font-size: 1rem; opacity: 0.22; }
.prof-text-61 { top: 28%; left: 52%; animation-delay: 5.3s; font-size: 1.15rem; opacity: 0.24; }
.prof-text-62 { top: 43%; left: 48%; animation-delay: 7.8s; font-size: 0.9rem; opacity: 0.20; }
.prof-text-63 { top: 58%; left: 52%; animation-delay: 0.9s; font-size: 1.05rem; opacity: 0.23; }
.prof-text-64 { top: 72%; left: 48%; animation-delay: 3.6s; font-size: 0.92rem; opacity: 0.21; }
.prof-text-65 { top: 82%; left: 52%; animation-delay: 6.1s; font-size: 1.1rem; opacity: 0.24; }
.prof-text-66 { top: 10%; left: 32%; animation-delay: 4.9s; font-size: 0.88rem; opacity: 0.20; }
.prof-text-67 { top: 22%; left: 36%; animation-delay: 7.2s; font-size: 1.02rem; opacity: 0.22; }
.prof-text-68 { top: 38%; left: 30%; animation-delay: 9.7s; font-size: 0.95rem; opacity: 0.22; }
.prof-text-69 { top: 48%; left: 34%; animation-delay: 2.2s; font-size: 1.18rem; opacity: 0.25; }
.prof-text-70 { top: 63%; left: 32%; animation-delay: 4.6s; font-size: 0.92rem; opacity: 0.21; }
.prof-text-71 { top: 75%; left: 36%; animation-delay: 7.1s; font-size: 1.05rem; opacity: 0.23; }
.prof-text-72 { top: 18%; left: 44%; animation-delay: 3.3s; font-size: 0.98rem; opacity: 0.22; }
.prof-text-73 { top: 33%; left: 46%; animation-delay: 5.7s; font-size: 1.12rem; opacity: 0.24; }
.prof-text-74 { top: 47%; left: 44%; animation-delay: 8.2s; font-size: 0.88rem; opacity: 0.19; }
.prof-text-75 { top: 60%; left: 46%; animation-delay: 1.4s; font-size: 1.08rem; opacity: 0.23; }
.prof-text-76 { top: 70%; left: 44%; animation-delay: 3.8s; font-size: 0.95rem; opacity: 0.22; }
.prof-text-77 { top: 85%; left: 38%; animation-delay: 6.3s; font-size: 1rem; opacity: 0.22; }
.prof-text-78 { top: 13%; left: 40%; animation-delay: 8.6s; font-size: 0.92rem; opacity: 0.21; }
.prof-text-79 { top: 53%; left: 37%; animation-delay: 2.9s; font-size: 1.15rem; opacity: 0.24; }
.prof-text-80 { top: 90%; left: 42%; animation-delay: 5.5s; font-size: 0.98rem; opacity: 0.22; }

/* Hero Content Grid */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 0 3rem;
    margin: 0 auto;
}

/* LEFT: Hexagon Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hexagon-container {
    position: relative;
    width: 600px;
    height: 600px;
}

.hexagon-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47,86,201,0.08) 0%, rgba(47,86,201,0.03) 100%);
    border: 3px solid rgba(47,86,201,0.12);
    animation: hexPulse 3s ease-in-out infinite;
}

.hexagon-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    background: rgba(47,86,201,0.06);
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
}

.hexagon-content {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-radius: 50%;
    overflow: hidden;
}

.ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hex-label {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: #2f56c9;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(47,86,201,0.2);
}

.hex-label span {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-shadow: none;
}

/* RIGHT: Text Content */
.hero-text-section {
    position: relative;
    z-index: 5;
    max-width: 100%;
}

.hero-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    color: #0f1a2b;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: none;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1.05;
    font-weight: 950;
    color: #0f1a2b;
    margin-bottom: 1.5rem;
    text-shadow: none;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: #5d6b85;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: none;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.btn-hero-main {
    display: inline-block;
    padding: 1rem 3rem;
    background: #2f56c9;
    color: #ffffff;
    font-size: var(--text-lg);
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(47, 86, 201, 0.35);
}

.btn-hero-main:hover {
    background: #2548b0;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(47, 86, 201, 0.45);
}

.hero-url {
    font-size: var(--text-sm);
    color: #5d6b85;
    font-weight: 500;
    text-shadow: none;
}

/* Animations */
@keyframes professionFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

/* Hero Centered Content */
.hero-content-centered {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 40px 60px;
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.hero-circle-wrapper {
    flex-shrink: 0;
    position: relative;
    margin-left: -20px;
}

.hero-circle-image {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    overflow: visible; /* allow pulsing ring to extend beyond the circle */
    position: relative;
    border: none;
    box-shadow: 0 20px 60px rgba(47, 86, 201, 0.12), 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Pulsing “glowing ring” around the hero circle image */
.hero-circle-image::before,
.hero-circle-image::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-circle-image::before {
    background: conic-gradient(from 180deg,
        rgba(65,105,225,0.0),
        rgba(65,105,225,0.45),
        rgba(47, 86, 201, 0.0),
        rgba(65,105,225,0.35),
        rgba(65,105,225,0.0)
    );
    filter: blur(6px);
    opacity: 0.85;
    animation: heroRingPulse 2.6s ease-in-out infinite;
}

.hero-circle-image::after {
    inset: -6px;
    border: 2px solid rgba(65, 105, 225, 0.25);
    box-shadow: 0 0 0 10px rgba(65, 105, 225, 0.08);
    opacity: 0.7;
    animation: heroRingBreath 2.6s ease-in-out infinite;
}

@keyframes heroRingPulse {
    0% { transform: scale(0.98); opacity: 0.55; }
    50% { transform: scale(1.02); opacity: 0.95; }
    100% { transform: scale(0.98); opacity: 0.55; }
}

@keyframes heroRingBreath {
    0% { transform: scale(0.99); opacity: 0.35; }
    50% { transform: scale(1.03); opacity: 0.85; }
    100% { transform: scale(0.99); opacity: 0.35; }
}

.hero-ai-woman {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    border-radius: 50%;
    overflow: hidden;
}

.hero-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2f56c9;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 16px rgba(47, 86, 201, 0.3);
}

.hero-main-content {
    max-width: 600px;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.hero-main-title {
    font-size: clamp(2.2rem, 3.3vw, 3.4rem);
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: none;
    letter-spacing: -0.02em;
    filter: none;
    max-width: 100%;
}

.hero-main-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: #5d6b85;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
    text-shadow: none;
}

.hero-main-subtitle strong {
    font-weight: 700;
    color: #0f1a2b;
    background: rgba(47, 86, 201, 0.08);
    padding: 2px 8px;
    border-radius: 6px;
    text-shadow: none;
    box-shadow: none;
}

.btn-hero-white {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    background: #2f56c9;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(47, 86, 201, 0.35);
}

.btn-hero-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(47, 86, 201, 0.45);
    background: #2548b0;
}

.btn-hero-white i {
    font-size: 1.15rem;
    transform: rotate(90deg);
}

/* ── Hero Social Proof / Testimonial ── */
.hero-social-proof {
    margin-bottom: 24px;
}

.hero-testimonial-quote {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(47, 86, 201, 0.06);
    border: 1px solid rgba(47, 86, 201, 0.1);
    border-left: 4px solid #2f56c9;
    border-radius: 10px;
    padding: 14px 18px;
    max-width: 520px;
}

.hero-stars {
    color: #f5a623;
    font-size: 0.95rem;
    letter-spacing: 3px;
}

.hero-testimonial-text {
    color: #0f1a2b !important;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.hero-testimonial-attr {
    color: rgba(255, 255, 255, 0.80) !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ── Hero CTA Group ── */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.hero-cta-subtext {
    color: #5d6b85;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.4;
}

.hero-cta-subtext strong {
    color: #0f1a2b;
}

.hero-pricing-link {
    color: #2f56c9 !important;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    font-weight: 500;
    opacity: 0.80;
}

.hero-pricing-link:hover {
    color: #2548b0 !important;
    opacity: 1;
}

.hero-pricing-link i {
    font-size: 0.75rem;
}

/* Responsive adjustments for hero white button */
@media (max-width: 768px) {
    .btn-hero-white {
        width: 100%;
        justify-content: center;
        padding: 18px 36px;
        font-size: 1.05rem;
    }
}

/* Hero Trust Bar */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(47, 86, 201, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5d6b85;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
}

.trust-item i {
    color: #30c56b;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-trust-bar {
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
    }
    
    .trust-item {
        font-size: 0.875rem;
        flex-basis: calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .trust-item {
        flex-basis: 100%;
    }
    .hero {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 18px;
    }
}

/* Timeline Justification */
.timeline-intro {
    max-width: 900px;
    margin: 48px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(65, 105, 225, 0.12);
}

.timeline-intro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f1a2b;
    margin-bottom: 12px;
}

.timeline-context {
    font-size: 1.0625rem;
    color: rgba(15, 26, 43, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.timeline-reasons {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.timeline-reasons li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: rgba(15, 26, 43, 0.8);
    line-height: 1.6;
}

.timeline-reasons li i {
    color: #30c56b;
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.timeline-payoff {
    font-size: 1.0625rem;
    color: rgba(15, 26, 43, 0.85);
    line-height: 1.6;
    margin: 0 0 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 26, 43, 0.08);
}

/* Fast-Start Inline (inside timeline box) */
.fast-start-inline {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #fff9f0 0%, #fffbf5 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    margin-top: 20px;
}

.fast-start-icon-small {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    color: white;
    font-size: 18px;
}

.fast-start-content {
    font-size: 0.9375rem;
    color: rgba(15, 26, 43, 0.8);
    line-height: 1.6;
}

.fast-start-link {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.fast-start-link:hover {
    color: #d97706;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .timeline-intro {
        padding: 28px 24px;
        margin-top: 32px;
    }
    
    .timeline-intro-title {
        font-size: 1.25rem;
    }
    
    .fast-start-inline {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .fast-start-content {
        font-size: 0.875rem;
    }
}

/* Section Bridge Statements */
.section-bridge {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 26, 43, 0.08);
}

.bridge-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(15, 26, 43, 0.7);
    font-weight: 500;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Problem Intro Hook */
.problem-intro {
    text-align: center;
    margin: 32px auto 48px;
    max-width: 700px;
}

.problem-hook {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(15, 26, 43, 0.85);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Quick FAQ Box */
.quick-faq-box {
    max-width: 1100px;
    margin: 64px auto 0;
    padding: 48px 40px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid rgba(47, 86, 201, 0.12);
    box-shadow: 0 8px 32px rgba(15, 26, 43, 0.08);
}

.quick-faq-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0f1a2b;
    text-align: center;
    margin-bottom: 40px;
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.quick-faq-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(15, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.quick-faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 26, 43, 0.12);
    border-color: rgba(47, 86, 201, 0.2);
}

.quick-faq-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4169E1 0%, #2947A9 100%);
    border-radius: 50%;
    color: white;
    font-size: 24px;
}

.quick-faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f1a2b;
    margin-bottom: 12px;
}

.quick-faq-answer {
    font-size: 1rem;
    color: rgba(15, 26, 43, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .quick-faq-box {
        padding: 32px 24px;
        margin-top: 48px;
    }
    
    .quick-faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Responsive adjustments for centered hero */
@media (max-width: 1400px) {
    .hero-content-centered {
        padding: 40px 48px;
        gap: 48px;
        max-width: 100%;
    }
    
    .hero-circle-image {
        width: 460px;
        height: 460px;
    }
}

@media (max-width: 1200px) {
    .hero-content-centered {
        padding: 40px 36px;
        gap: 40px;
        max-width: 100%;
    }
    
    .hero-circle-image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .hero-content-centered {
        gap: 36px;
        padding: 40px 28px;
    }
    
    .hero-circle-image {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .hero-content-centered {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px 20px 32px;
    }
    
    .hero-main-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-circle-wrapper {
        margin-left: 0;
    }
    
    .hero-circle-image {
        width: 300px;
        height: 300px;
    }
    
    .hero-ai-woman {
        object-position: center center;
    }
    
    .hero-main-title {
        font-size: 2.4rem;
        line-height: 1.08;
        margin-bottom: 16px;
    }
    
    .hero-main-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-cta-group {
        align-items: center;
    }

    .btn-see-live {
        padding: 14px 40px;
        font-size: 0.95rem;
    }
}

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

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-40px);
        opacity: 1;
    }
}

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-text-section {
        order: 1;
    }
    
    .hexagon-container {
        width: 450px;
        height: 450px;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hexagon-container {
        width: 320px;
        height: 320px;
    }
    
    .hero-number {
        font-size: clamp(3rem, 10vw, 4rem);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .btn-hero-main {
        width: 100%;
        text-align: center;
    }
    
    .tech-icon,
    .circuit-pattern {
        display: none;
    }
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.05;
    filter: blur(3px) grayscale(40%);
    animation: kenBurnsZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

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

/* NEW HERO LAYOUT */
.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.hero-text-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-badge i {
    color: #00ffcc;
    font-size: 1.1rem;
}

.hero-main-title {
    font-size: var(--text-5xl);
    line-height: 1.1;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-main-title .title-highlight {
    color: #00ffcc;
    position: relative;
}

.hero-description {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: #00ffcc;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
    color: #003366;
    font-weight: 700;
    font-size: var(--text-lg);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 255, 204, 0.4);
}

.btn-hero-primary i {
    font-size: 1.2rem;
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 600;
    font-size: var(--text-lg);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-stars {
    display: flex;
    gap: 0.25rem;
}

.trust-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* Hero Image Section */
.hero-image-content {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(0, 255, 204, 0.3);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 204, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 3s ease-in-out infinite;
}

/* Floating Tech Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 204, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 204, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ffcc;
    box-shadow: 0 8px 24px rgba(0, 255, 204, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-element i {
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
}

.element-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 2s;
}

/* Decorative Lines */
.hero-deco-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 204, 0.5) 50%, transparent 100%);
    pointer-events: none;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 40%;
}

.line-2 {
    top: 50%;
    right: 0;
    width: 35%;
}

.line-3 {
    bottom: 30%;
    left: 0;
    width: 30%;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust-line {
        justify-content: center;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero-badge {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
}

/* Social Proof Badges */
.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-proof-badge i {
    font-size: 1rem;
    color: #4FB3FF;
}

.rating-stars {
    display: flex;
    gap: 0.15rem;
}

.rating-stars i {
    font-size: 0.875rem;
    color: #FFD700;
}

.social-proof-badge .rating-stars + span {
    margin-left: 0.25rem;
}

.hero-title {
    font-size: var(--text-5xl);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    max-width: 100%;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-size: var(--text-2xl);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #4FB3FF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.title-highlight {
    color: #4FB3FF;
    font-weight: 800;
}

.title-accent {
    color: #4FB3FF;
    position: relative;
    font-weight: 700;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-hero-primary-old {
    display: inline-flex;
    min-width: auto;
    max-width: none;
    font-size: var(--text-xl);
    padding: 1.125rem 2.25rem;
    background: white;
    color: #0066FF;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-hero-primary-old:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-hero-primary i {
    margin-right: 0.5rem;
    transform: rotate(90deg);
    display: inline-block;
}

.btn-hero-secondary {
    flex: 1;
    min-width: 280px;
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-hero-secondary i {
    margin-right: 0.5rem;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: #d4e1f5;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 100%;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-demos {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.demo-card {
    background: var(--white);
    border: 1px solid rgba(65, 105, 225, 0.15);
    border-radius: 14px;
    padding: 1.125rem 1.25rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.demo-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(65, 105, 225, 0.15);
    transform: translateY(-2px);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}

.demo-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-icon i {
    color: var(--white);
    font-size: 1.125rem;
}

.demo-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.demo-info p {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.demo-player {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 0.625rem 0.875rem;
}

.play-button {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.play-button:hover {
    background: #2947A9;
    transform: scale(1.05);
}

.play-button i {
    color: var(--white);
    font-size: 0.8125rem;
    margin-left: 2px;
}

.demo-waveform {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2.5px;
    height: 28px;
}

.demo-waveform span {
    flex: 1;
    background: var(--primary-color);
    opacity: 0.4;
    border-radius: 2px;
    transition: var(--transition);
}

.demo-waveform span:nth-child(1) { height: 20%; }
.demo-waveform span:nth-child(2) { height: 45%; }
.demo-waveform span:nth-child(3) { height: 65%; }
.demo-waveform span:nth-child(4) { height: 35%; }
.demo-waveform span:nth-child(5) { height: 80%; }
.demo-waveform span:nth-child(6) { height: 55%; }
.demo-waveform span:nth-child(7) { height: 70%; }
.demo-waveform span:nth-child(8) { height: 40%; }
.demo-waveform span:nth-child(9) { height: 60%; }
.demo-waveform span:nth-child(10) { height: 85%; }
.demo-waveform span:nth-child(11) { height: 50%; }
.demo-waveform span:nth-child(12) { height: 75%; }
.demo-waveform span:nth-child(13) { height: 45%; }
.demo-waveform span:nth-child(14) { height: 55%; }
.demo-waveform span:nth-child(15) { height: 30%; }

.demo-card:hover .demo-waveform span {
    opacity: 0.6;
}

.demo-duration {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
    flex-shrink: 0;
}

.hero-cta-banner {
    background: var(--white);
    border: 1px solid rgba(65, 105, 225, 0.15);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-cta-banner p {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 400;
}

.hero-cta-banner .cta-phone {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
}

.hero-cta-banner .cta-phone:hover {
    color: #365de6;
    text-decoration: underline;
}

/* Hero Audio Demo */
.hero-audio-demo {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-audio-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(65, 105, 225, 0.3);
    transition: all 0.4s ease;
}

.hero-audio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 12px 20px rgba(0, 0, 0, 0.25);
}

.hero-audio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #4169E1 0%, #5B8DEF 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

.hero-audio-badge i {
    font-size: 1rem;
}

.hero-play-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: none;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.hero-play-button:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.hero-play-button.playing {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.hero-play-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
}

.hero-play-text {
    flex: 1;
    text-align: left;
}

.hero-play-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.hero-play-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.hero-audio-visualizer {
    margin-top: 1rem;
    height: 80px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.hero-stop-button {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EF4444;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    z-index: 10;
}

.hero-stop-button:hover {
    transform: translateY(-50%) scale(1.1);
    background: #DC2626;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.hero-stop-button:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-stop-button i {
    font-size: 0.875rem;
}

.hero-audio-outcome {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.outcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.outcome-badge.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.outcome-badge.value {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.outcome-badge i {
    font-size: 1.1rem;
}

.hero-audio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-audio-link:hover {
    gap: 0.75rem;
    color: #4FB3FF;
}

.hero-audio-link i {
    animation: bounce 2s ease-in-out infinite;
}

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

.btn-hero-phone {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.btn-hero-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trust-item i {
    color: #4FB3FF;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(79, 179, 255, 0.5));
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, 
        rgba(65, 105, 225, 0.25) 0%, 
        rgba(48, 197, 107, 0.15) 50%, 
        transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(26, 43, 73, 0.25),
                0 10px 30px rgba(65, 105, 225, 0.15);
    position: relative;
    z-index: 1;
}

/* ==========================================
   Testimonial Bar
   ========================================== */
.testimonial-bar {
    background: linear-gradient(135deg, #2a4fbf 0%, #4169E1 100%);
    padding: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-quote {
    position: relative;
    padding-left: 3rem;
}

.testimonial-quote i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-quote p {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.testimonial-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.stat-item strong {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.stat-highlight {
    color: #4FB3FF;
    font-weight: 700;
}

.stat-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

/* ==========================================
   Section Divider
   ========================================== */
.section-divider {
    padding: 40px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f8ff 100%);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(65, 105, 225, 0.05) 50%, transparent 100%);
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(65, 105, 225, 0.05) 50%, transparent 100%);
}

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

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.08;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
    animation: bounce 2s infinite;
}

.divider-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

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

/* ==========================================
   Problem Section
   ========================================== */
.problem-section {
    padding: 80px 0 90px;
    background: 
        radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,.95), rgba(255,255,255,0) 70%),
        linear-gradient(180deg, #f6f8ff 0%, #ffffff 40%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, rgba(47,86,201,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.problem-section .container {
    position: relative;
    z-index: 1;
}

/* Header */
.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-main-title {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: #0f1a2b;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.problem-subtitle {
    font-size: var(--text-lg);
    color: rgba(15,26,43,.70);
    margin: 0;
    line-height: 1.5;
}

/* Mega Stat */
.problem-stat-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
}

.stat-mega {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.stat-mega-number {
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 900;
    color: #e74c3c;
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.stat-mega-symbol {
    font-size: clamp(50px, 8vw, 80px);
    font-weight: 900;
    color: #e74c3c;
    line-height: 1;
    margin-top: 10px;
}

.stat-mega-text {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #0f1a2b;
    margin-bottom: 12px;
}

.stat-mega-subtext {
    font-size: var(--text-base);
    color: rgba(15,26,43,.65);
    font-style: italic;
}

/* Comparison Chart */
.comparison-chart {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.comparison-side {
    background: rgba(255,255,255,.85);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 14px 40px rgba(15,26,43,.10);
    border: 1px solid rgba(15,26,43,.08);
    backdrop-filter: blur(10px);
}

.comparison-before {
    border-left: 4px solid #e74c3c;
}

.comparison-after {
    border-left: 4px solid #4FB3FF;
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-sm);
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-before .comparison-label {
    color: #e74c3c;
}

.comparison-after .comparison-label {
    color: #4FB3FF;
}

.comparison-label i {
    font-size: 20px;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.comparison-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(15,26,43,.70);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bar-wrapper {
    background: rgba(15,26,43,.08);
    border-radius: 10px;
    height: 36px;
    overflow: hidden;
    position: relative;
}

.bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bar-red {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

.bar-green {
    background: linear-gradient(90deg, #4FB3FF 0%, #00AAFF 100%);
}

.bar-gray {
    background: linear-gradient(90deg, #95a5a6 0%, #7f8c8d 100%);
}

.bar-value {
    font-size: 14px;
    font-weight: 900;
    color: #fff;
}

.comparison-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(15,26,43,.10);
}

.stat-item-small {
    text-align: center;
}

.stat-small-num {
    font-size: 28px;
    font-weight: 900;
    color: #0f1a2b;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-small-num.success {
    color: #4FB3FF;
}

.stat-small-label {
    font-size: 12px;
    color: rgba(15,26,43,.65);
    font-weight: 600;
    line-height: 1.3;
}

.comparison-arrow {
    font-size: 40px;
    color: #2f56c9;
}

/* Benefit Cards - New Design */
.problem-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.benefit-card-new {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 36px 28px 32px;
    box-shadow: 0 12px 35px rgba(15,26,43,.12);
    border: 1px solid rgba(47,86,201,.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4169E1 0%, #00AAFF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15,26,43,.18);
    border-color: rgba(47,86,201,.25);
}

.benefit-card-new:hover::before {
    opacity: 1;
}

.benefit-icon-new {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4169E1 0%, #00AAFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(65,105,225,.25);
    transition: all 0.3s ease;
}

.benefit-card-new:hover .benefit-icon-new {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(65,105,225,.35);
}

.benefit-icon-new i {
    font-size: 32px;
    color: #fff;
}

.benefit-card-new h3 {
    font-size: var(--text-2xl);
    font-weight: 900;
    color: #0f1a2b;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.benefit-card-new p {
    font-size: var(--text-lg);
    color: rgba(15,26,43,.70);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.benefit-highlight {
    padding: 16px 20px;
    background: rgba(47,86,201,.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-stat {
    font-size: 32px;
    font-weight: 900;
    color: #2f56c9;
    line-height: 1;
}

.highlight-text {
    font-size: var(--text-xs);
    color: rgba(15,26,43,.70);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.problem-cta {
    text-align: center;
    padding: 50px 20px;
    background: 
        radial-gradient(600px 300px at 50% 50%, rgba(47,86,201,.08), transparent 70%),
        rgba(255,255,255,.60);
    border-radius: 24px;
    border: 1px solid rgba(47,86,201,.15);
    backdrop-filter: blur(8px);
    max-width: 700px;
    margin: 0 auto;
}

.problem-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f1a2b;
    margin: 0 0 24px 0;
}

.problem-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #4169E1 0%, #2f56c9 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(65,105,225,.30);
    transition: all 0.3s ease;
}

.problem-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(65,105,225,.40);
}

.problem-cta-btn i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 980px) {
    .comparison-chart {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        margin: 10px auto;
    }
    
    .problem-benefits {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .problem-section {
        padding: 60px 0 70px;
    }
    
    .comparison-stats {
        grid-template-columns: 1fr;
    }
    
    .problem-cta-btn {
        width: 100%;
        padding: 18px 30px;
        font-size: 16px;
    }
}
    background: #eaf2fb;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    border: 1px solid rgba(43,115,184,0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #2b73b8;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-benefit-card h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #1e2a3a;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.problem-benefit-card p {
    margin: 0;
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.55;
}

/* Active states for touch devices */
.problem-stat-card:active {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(43, 115, 184, 0.2);
}

.problem-benefit-card:active {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(43, 115, 184, 0.2);
}

.problem-benefit-card:active .benefit-icon-wrap {
    background: #2b73b8;
    transform: scale(1.1);
}

.problem-benefit-card:active .benefit-icon-wrap svg {
    stroke: white;
}

/* ==========================================
   Calculator Section
   ========================================== */
.ccp-calc-section {
    background:
        radial-gradient(1200px 520px at 50% -80px, rgba(255,255,255,.22), rgba(255,255,255,0) 60%),
        linear-gradient(180deg, #2f56c9 0%, #2a4fbf 100%);
    padding: 70px 18px 80px;
}

.ccp-wrap {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.ccp-header {
    text-align: center;
    margin: 0 0 40px 0;
    position: static !important;
    width: auto !important;
    background: none !important;
    box-shadow: none !important;
    z-index: auto !important;
}

.ccp-header h2 {
    margin: 0 0 14px 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

.ccp-header p {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.5;
    color: rgba(255,255,255,.92);
}

/* Industry Presets */
.industry-presets {
    text-align: center;
    margin-bottom: 32px;
}

.presets-label {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
    opacity: 0.9;
}

.preset-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.preset-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 32px;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.preset-btn:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
}

.preset-btn.active {
    background: #4FB3FF;
    border-color: #4FB3FF;
    box-shadow: 0 8px 20px rgba(79, 179, 255, 0.35);
}

.preset-btn i {
    font-size: 18px;
}

/* Calculator Panel */
.ccp-panel {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 22px 60px rgba(15,26,43,.22);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.ccp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.ccp-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 14px 35px rgba(15,26,43,.15);
}

.ccp-card-inputs {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
}

.ccp-card-results {
    background: linear-gradient(145deg, #fff5f5 0%, #ffffff 100%);
    border: 2px solid rgba(231,76,60,.15);
}

/* Inputs Section */
.inputs-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px;
    color: #0f1a2b !important;
    margin: 0 0 28px 0 !important;
    text-transform: uppercase;
}

.inputs-heading i {
    color: #2f56c9;
    font-size: 20px;
}

.ccp-field {
    margin: 0 0 28px 0;
}

.ccp-labelRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ccp-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.ccp-label i {
    color: #2f56c9;
    font-size: 16px;
}

.ccp-pill {
    background: linear-gradient(135deg, #4169E1 0%, #2f56c9 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    min-width: 60px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 4px 12px rgba(47,86,201,.25);
}

.ccp-range {
    width: 100%;
    height: 8px;
    appearance: none;
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}

.ccp-range::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e74c3c;
    box-shadow: 0 4px 16px rgba(231,76,60,.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ccp-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(231,76,60,.5);
}

.ccp-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e74c3c;
    box-shadow: 0 4px 16px rgba(231,76,60,.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(15,26,43,.55);
    font-weight: 600;
}

.range-avg {
    color: #2f56c9;
    font-weight: 700;
}

.calculator-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(47,86,201,.08);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(15,26,43,.70);
    font-weight: 600;
    margin-top: 8px;
}

.calculator-note i {
    color: #2f56c9;
    font-size: 14px;
}

/* Results Section */
.results-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.results-header i {
    color: #e74c3c;
    font-size: 24px;
}

.results-heading {
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px;
    color: #e74c3c !important;
    margin: 0 !important;
    text-transform: uppercase;
}

/* Hero Loss Amount */
.loss-hero {
    text-align: center;
    padding: 32px 20px;
    background: 
        radial-gradient(400px 300px at 50% 50%, rgba(231,76,60,.15), transparent 70%),
        linear-gradient(145deg, #fff 0%, #ffe8e8 100%);
    border: 3px solid #e74c3c;
    border-radius: 20px;
    margin-bottom: 28px;
    box-shadow: 0 12px 30px rgba(231,76,60,.25);
}

.loss-hero-amount {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #e74c3c;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 4px 12px rgba(231,76,60,.2);
}

.loss-hero-label {
    font-size: 20px;
    font-weight: 800;
    color: #0f1a2b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.loss-hero-subtext {
    font-size: 14px;
    color: rgba(15,26,43,.65);
    font-style: italic;
}

/* Loss Breakdown */
.loss-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(15,26,43,.04);
    border-radius: 14px;
    margin-bottom: 24px;
}

.loss-item {
    text-align: center;
    flex: 1;
}

.loss-period {
    font-size: 12px;
    font-weight: 700;
    color: rgba(15,26,43,.60);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.loss-value {
    font-size: 22px;
    font-weight: 900;
    color: #e74c3c;
    font-variant-numeric: tabular-nums;
}

.loss-value-yearly {
    font-size: 24px;
    color: #c0392b;
}

.loss-divider {
    width: 2px;
    height: 40px;
    background: rgba(15,26,43,.12);
    margin: 0 8px;
}

/* Comparison */
.loss-comparison {
    padding: 18px 20px;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
    border: 2px solid rgba(47,86,201,.20);
    border-radius: 14px;
    margin-bottom: 24px;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.comparison-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(15,26,43,.70);
}

.comparison-cost {
    font-size: 16px;
    font-weight: 800;
    color: #2f56c9;
}

.comparison-highlight {
    border-top: 1px solid rgba(47,86,201,.20);
    padding-top: 12px;
    margin-top: 4px;
}

.comparison-roi {
    font-size: 28px;
    font-weight: 900;
    color: #4FB3FF;
}

/* CTA Button */
.calc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(231,76,60,.35);
    transition: all 0.3s ease;
    text-align: center;
}

.calc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(231,76,60,.45);
}

.calc-cta-btn i {
    font-size: 20px;
}

.calc-note {
    text-align: center;
    margin: 14px 0 0 0;
    font-size: 13px;
    color: rgba(15,26,43,.65);
    font-weight: 600;
}

/* Social Proof Banner */
.calc-social-proof {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 32px 20px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.proof-item {
    text-align: center;
}

.proof-stat {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.proof-label {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-divider {
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,.25);
}

/* Responsive */
@media (max-width: 920px) {
    .ccp-grid {
        grid-template-columns: 1fr;
    }
    
    .preset-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc-social-proof {
        flex-direction: column;
        gap: 24px;
    }
    
    .proof-divider {
        width: 60px;
        height: 2px;
    }
}

@media (max-width: 520px) {
    .ccp-calc-section {
        padding: 50px 14px 60px;
    }
    
    .preset-buttons {
        flex-direction: column;
    }
    
    .loss-breakdown {
        flex-direction: column;
        gap: 16px;
    }
    
    .loss-divider {
        width: 60px;
        height: 2px;
    }
    
    .calc-cta-btn {
        font-size: 16px;
        padding: 18px 24px;
    }
}

.ccp-wrap {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.ccp-header {
    text-align: center;
    margin: 0 0 22px 0;
    position: static !important;
    width: auto !important;
    background: none !important;
    box-shadow: none !important;
    z-index: auto !important;
}

.ccp-header h2 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.ccp-header p {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #fff;
    opacity: 0.92;
}

.ccp-panel {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 22px 60px rgba(15,26,43,.22);
    backdrop-filter: blur(10px);
}

.ccp-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
}

.ccp-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(15,26,43,.12);
}

.ccp-card h3 {
    margin: 0 0 14px 0;
    font-size: 15px;
    font-weight: 700;
    color: #24324a;
}

.inputs-heading {
    font-size: 22px !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em;
    color: #1e293b !important;
    margin: 0 0 20px 0 !important;
    text-transform: uppercase;
}

.results-heading {
    font-size: 22px !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em;
    color: #1e293b !important;
    margin: 0 0 20px 0 !important;
    text-transform: uppercase;
}

.missed-calls-summary {
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
    border: 2px solid rgba(255,152,0,.25);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    text-align: center;
}

.summary-label {
    margin: 0 0 6px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d97706;
}

.summary-value {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    color: #ea580c;
    font-variant-numeric: tabular-nums;
}

.ccp-field {
    margin: 18px 0 20px;
}

.ccp-labelRow {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 10px;
}

.ccp-label {
    font-size: 15px;
    font-weight: 600;
    color: #2f3f5c;
    line-height: 1.35;
}

.ccp-pill {
    background: #f4f7ff;
    border: 1px solid rgba(74,108,247,.18);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    min-width: 74px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: #22314b;
    white-space: nowrap;
}

.ccp-range {
    width: 100%;
    height: 6px;
    appearance: none;
    background: rgba(74,108,247,.25);
    border-radius: 999px;
    outline: none;
}

.ccp-range::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a6cf7;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(54,93,230,.35);
    cursor: pointer;
}

.ccp-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a6cf7;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(54,93,230,.35);
    cursor: pointer;
}

.ccp-underCta {
    margin-top: 16px;
    text-align: center;
    background: #f3f6ff;
    border: 1px solid rgba(74,108,247,.18);
    border-radius: 12px;
    padding: 14px;
}

.ccp-ctaTitle {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #365de6;
}

.ccp-ctaText {
    margin: 6px 0 0 0;
    font-size: 13px;
    color: #55637b;
    line-height: 1.45;
}

.ccp-bigBox {
    position: relative;
    border-radius: 16px;
    padding: 18px;
    min-height: 150px;
    color: #fff;
    background:
        radial-gradient(360px 220px at 22% 18%, rgba(255,255,255,.18), transparent 60%),
        linear-gradient(180deg, rgba(38,69,122,.94), rgba(59,99,217,.92)),
        url('../images/money-flying.jpg');
    background-repeat: no-repeat;
    background-position: right -30px center;
    background-size: 520px auto;
    box-shadow: 0 18px 34px rgba(22,44,88,.22);
    overflow: hidden;
    isolation: isolate;
}

.ccp-bigBox::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(38,69,122,.98) 0%, rgba(38,69,122,.9) 42%, transparent 78%);
}

.ccp-bigBox * {
    position: relative;
    z-index: 1;
}

.ccp-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 8px 0;
}

.ccp-amount {
    font-size: clamp(32px, 3.4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 10px 24px rgba(0,0,0,.25);
    margin: 0;
}

.ccp-mini {
    margin-top: 14px;
    background: #f6f8ff;
    border: 1px solid rgba(74,108,247,.16);
    border-radius: 14px;
    padding: 14px;
}

.ccp-mini--daily {
    margin-top: 0;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff5e6 0%, #fffbf0 100%);
    border: 1px solid rgba(255,152,0,.2);
}

.ccp-mini--weekly {
    margin-top: 0;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f5ff 100%);
    border: 1px solid rgba(65,105,225,.2);
}

.ccp-miniLabel {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5a6a86;
    letter-spacing: 0.06em;
    margin: 0;
}

.ccp-miniVal {
    margin: 6px 0 0 0;
    font-size: 20px;
    font-weight: 800;
    color: #162b4a;
    font-variant-numeric: tabular-nums;
}

.ccp-note {
    margin-top: 16px;
    font-size: 13px;
    color: #5a6a86;
    line-height: 1.45;
}

/* Responsive handling for calculator */
@media (max-width: 920px) {
    .ccp-grid {
        grid-template-columns: 1fr;
    }
    
    .ccp-header h2 {
        font-size: 2rem;
    }
    
    .ccp-bigBox {
        background-position: right -60px center;
    }
}

@media (max-width: 520px) {
    .ccp-bigBox {
        background-position: right -140px center;
        background-size: 460px auto;
    }
}

/* Legacy class support - keeping old classes for compatibility */
.calculator-section {
    background:
        radial-gradient(1200px 520px at 50% -80px, rgba(255,255,255,.22), rgba(255,255,255,0) 60%),
        linear-gradient(180deg, #2f56c9 0%, #2a4fbf 100%);
    padding: 80px 18px 56px;
    display: flex;
    justify-content: center;
    color: #0f1a2b;
}

.calculator-section .wrap {
    width: min(1040px, 100%);
}

.calculator-section .header {
    text-align: center;
    color: #fff;
    margin-bottom: 32px;
    position: static !important;
    width: auto !important;
    background: none !important;
    box-shadow: none !important;
    z-index: auto !important;
}

.calculator-section .header h1,
.calculator-section .header h2 {
    margin: 0 0 10px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.calculator-section .header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #ffffff;
}

.calculator-section .panel {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 22px 60px rgba(15,26,43,.22);
    backdrop-filter: blur(10px);
}

.calculator-section .grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
}

.calculator-section .card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(15,26,43,.12);
}

.calculator-section h3 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: #24324a;
}

.calculator-section .field {
    margin: 18px 0 20px;
}

.calculator-section .labelRow {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 10px;
}

.calculator-section label {
    font-size: 15px;
    font-weight: 600;
    color: #2f3f5c;
    line-height: 1.35;
}

.calculator-section .valpill {
    background: #f4f7ff;
    border: 1px solid rgba(74,108,247,.18);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    min-width: 74px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: #22314b;
    white-space: nowrap;
}

.calculator-section input[type=range] {
    width: 100%;
    height: 6px;
    appearance: none;
    background: rgba(74,108,247,.25);
    border-radius: 999px;
    outline: none;
}

.calculator-section input[type=range]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a6cf7;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(54,93,230,.35);
    cursor: pointer;
}

.calculator-section input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a6cf7;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(54,93,230,.35);
    cursor: pointer;
}

.calculator-section .underCta {
    margin-top: 16px;
    text-align: center;
    background: #f3f6ff;
    border: 1px solid rgba(74,108,247,.18);
    border-radius: 12px;
    padding: 14px;
}

.calculator-section .ctaTitle {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #365de6;
}

.calculator-section .ctaText {
    margin-top: 6px;
    font-size: 13px;
    color: #55637b;
    line-height: 1.45;
}

.calculator-section .rightHead {
    margin-bottom: 14px;
}

.calculator-section .bigBox {
    position: relative;
    border-radius: 16px;
    padding: 18px;
    min-height: 150px;
    color: #fff;
    background:
        radial-gradient(360px 220px at 22% 18%, rgba(255,255,255,.18), transparent 60%),
        linear-gradient(180deg, rgba(38,69,122,.94), rgba(59,99,217,.92)),
        url('../images/money-flying.jpg');
    background-repeat: no-repeat;
    background-position: right -30px center;
    background-size: 520px auto;
    box-shadow: 0 18px 34px rgba(22,44,88,.22);
    overflow: hidden;
    isolation: isolate;
}

.calculator-section .bigBox::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(38,69,122,.98) 0%, rgba(38,69,122,.9) 42%, transparent 78%);
}

.calculator-section .bigBox * {
    position: relative;
    z-index: 1;
}

.calculator-section .kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 8px;
}

.calculator-section .amount {
    font-size: clamp(32px, 3.4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 10px 24px rgba(0,0,0,.25);
    margin: 0;
}

.calculator-section .mini {
    margin-top: 14px;
    background: #f6f8ff;
    border: 1px solid rgba(74,108,247,.16);
    border-radius: 14px;
    padding: 14px;
}

.calculator-section .mini .label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5a6a86;
    letter-spacing: 0.06em;
    margin: 0;
}

.calculator-section .mini .val {
    margin: 6px 0 0 0;
    font-size: 20px;
    font-weight: 800;
    color: #162b4a;
    font-variant-numeric: tabular-nums;
}

.calculator-section .note {
    margin-top: 16px;
    font-size: 13px;
    color: #5a6a86;
    line-height: 1.45;
}

/* Responsive handling for calculator */
@media (max-width: 920px) {
    .calculator-section .grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-section .bigBox {
        background-position: right -60px center;
    }
}

@media (max-width: 520px) {
    .calculator-section .bigBox {
        background-position: right -140px center;
        background-size: 460px auto;
    }
}

/* ==========================================
   Features Section
   ========================================== */
.features-section {
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--blue-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
   ENHANCED FEATURE CARDS - CLEAN & PROFESSIONAL
   ========================================== */

.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    gap: 2rem;
    position: relative;
}

.feature-card-enhanced {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.feature-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(65, 105, 225, 0.12);
    border-color: rgba(65, 105, 225, 0.2);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--blue-gradient);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.feature-badge i {
    font-size: 14px;
}

.feature-badge-purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.feature-badge-green {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--blue-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(65, 105, 225, 0.2);
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .feature-icon-large {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(65, 105, 225, 0.3);
}

.feature-icon-purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 4px 16px rgba(155, 89, 182, 0.2);
}

.feature-card-enhanced:hover .feature-icon-purple {
    box-shadow: 0 8px 24px rgba(155, 89, 182, 0.3);
}

.feature-icon-green {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.2);
}

.feature-card-enhanced:hover .feature-icon-green {
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

.feature-icon-large i {
    font-size: 36px;
    color: #fff;
}

.feature-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-align: center;
}

.feature-description-new {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin: 0 0 1.5rem 0;
}

.feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-stat-item:hover {
    background: #eef2f7;
    transform: translateY(-2px);
}

.stat-number-small {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-small {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-cta {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 3rem;
}

.features-cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.features-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--blue-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.2);
}

.features-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
}

/* Responsive Styles */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .feature-card-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-large i {
        font-size: 32px;
    }
    
    .feature-title-new {
        font-size: 1.25rem;
    }
    
    .stat-number-small {
        font-size: 1.75rem;
    }
}

.receptionist-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

/* ==========================================
   Summaries Section
   ========================================== */
.summaries-section {
    background: #fff;
    padding: 40px 0 60px 0;
}

.summaries-section .container {
    position: relative;
    z-index: 1;
}

/* Two Column Layout: Benefits Left, Image Right */
.summaries-visual-side {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
}

.summaries-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(15,26,43,.1);
}

/* Layout - Two Columns */
.summaries-layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.summaries-content-side {
    width: 100%;
    padding: 0;
}

/* Method Items */
.summaries-method {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    align-items: flex-start;
}

.method-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #4169E1 0%, #5B8DEF 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(65,105,225,.25);
}

.method-icon i {
    font-size: 28px;
    color: #fff;
}

.method-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f1a2b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.method-content p {
    font-size: 16px;
    color: rgba(15,26,43,.7);
    line-height: 1.7;
    margin: 0;
}

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

.summaries-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Simple Phone Mockup */
.summaries-visual {
    text-align: center;
}

.phone-frame {
    display: inline-block;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 28px;
    padding: 60px 20px 20px;
    min-height: 500px;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.notification-preview {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.notif-app-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notif-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a2b49;
    margin-bottom: 8px;
}

.notif-message {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 8px;
}

.notif-message strong {
    color: #1a2b49;
}

.notif-time {
    font-size: 12px;
    color: #999;
}

.visual-label {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.visual-label i {
    color: var(--primary-color);
}

/* Features List */
.summaries-features-list h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--blue-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.feature-text span {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .summaries-layout-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .summaries-visual-side {
        order: 1;
    }
    
    .summaries-content-side {
        order: 2;
    }
    
    .summaries-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .phone-frame {
        max-width: 320px;
    }
    
    .summaries-method {
        margin-bottom: 28px;
    }
}

@media (max-width: 640px) {
    .summaries-method {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .method-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .method-icon i {
        font-size: 22px;
    }
    
    .method-content h3 {
        font-size: 18px;
    }
    
    .method-content p {
        font-size: 14px;
    }
    
    .phone-screen {
        min-height: 400px;
        padding: 50px 16px 16px;
    }
    
    .features-list {
        gap: 1.25rem;
    }
    
    .feature-icon-circle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }
}

.summaries-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.summaries-list {
    list-style: none;
    margin-top: 2rem;
}

.summaries-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.summaries-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.notification-example {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.notification-header {
    background: var(--blue-gradient);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.4rem;
}

.notification-body {
    padding: 2rem;
}

.notification-body p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   Industries Section
   ========================================== */
.industries-section {
    background: var(--white);
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works-section {
    padding: 80px 0;
    background: #ffffff;
}

.how-it-works-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.step-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4169E1 0%, #5B8DEF 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(65, 105, 225, 0.3);
}

.step-content h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #0f1a2b;
    margin-bottom: 12px;
}

.step-content p {
    font-size: var(--text-lg);
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    color: #4169E1;
    font-size: 2rem;
    flex-shrink: 0;
}

.how-it-works-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-item {
        max-width: 100%;
    }
}

/* ==========================================
   Testimonials Section - Photo Based
   ========================================== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 26, 43, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(65, 105, 225, 0.15);
}

.testimonial-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eef7 0%, #f5f7fa 100%);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Adjust image position for third testimonial card (plumbing) to show entire head */
.testimonial-card:nth-child(3) .testimonial-image {
    object-position: center 20%;
}

.testimonial-industry-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4169E1 0%, #5B8DEF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

.testimonial-badge-hvac {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.testimonial-badge-plumbing {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.testimonial-industry-badge i {
    font-size: 24px;
    color: #fff;
}

.testimonial-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FFC107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #0f1a2b;
    margin-bottom: 4px;
}

.author-business {
    font-size: 14px;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 2px;
}

.author-location {
    font-size: 13px;
    color: #64748b;
}

.testimonial-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
    border-radius: 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: 900;
    color: #10B981;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
    }
    
    .testimonial-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-image-wrapper {
        height: 280px;
    }
    
    .testimonial-content {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* ==========================================
   Industries Section - Simple 2-Column List
   ========================================== */
.industries-section {
    background: var(--white);
    padding: 60px 0;
}

.industries-simple-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.1);
    transform: translateX(4px);
}

.industry-item i {
    font-size: 28px;
    color: var(--primary-color);
    min-width: 32px;
}

.industry-item span {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .industries-simple-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .industry-item {
        padding: 14px 18px;
    }
    
    .industry-item i {
        font-size: 24px;
    }
    
    .industry-item span {
        font-size: 16px;
    }
}

/* ==========================================
   Original Industries Section Styles
   ========================================== */

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

.industry-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: var(--text-light);
}

/* ==========================================
   Google Section
   ========================================== */
.google-section {
    background: var(--bg-light);
}

.google-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.google-services-headline {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.google-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.google-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.google-icon {
    width: 60px;
    height: 60px;
    background: var(--blue-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.google-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cleanup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4FB3FF 0%, #00AAFF 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-left: 6px;
    box-shadow: 0 2px 8px rgba(48, 197, 107, 0.3);
    position: relative;
    top: -1px;
}

.google-feature p {
    color: var(--text-light);
}

.google-profile-mockup {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.profile-header i {
    font-size: 2rem;
    color: #4285F4;
}

.google-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.profile-header span {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-stars {
    color: #FFC107;
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.stat-check {
    font-size: 2rem;
    color: #4CAF50;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing-section {
    background: var(--white);
}

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

.pricing-card {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.plan-features i {
    color: var(--primary-color);
}

/* ==========================================
   CTA Section - Clean Centered Form Design
   ========================================== */
.cta-section {
    background: #f8faff;
    padding: 80px 0;
}

.cta-centered-layout {
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.cta-header-centered {
    text-align: center;
    margin-bottom: 32px;
}

.cta-headline {
    font-size: var(--text-3xl);
    font-weight: 900;
    color: #0f1a2b;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.cta-headline .no-break {
    white-space: nowrap;
}

/* Form Card */
.cta-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(15, 26, 43, 0.08);
    border: 2px solid #e2e8f0;
}

.form-intro {
    font-size: var(--text-base);
    color: #0f1a2b;
    text-align: center;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.clean-intake-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 8px;
}

.form-field input,
.form-field select {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a2b49;
    background: #fff;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.form-field input::placeholder {
    color: #94a3b8;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a2b49' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cta-submit-button {
    width: 100%;
    padding: 16px 32px;
    background: #0f1a2b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: var(--text-lg);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.cta-submit-button:hover {
    background: #1a2b49;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 26, 43, 0.3);
}

.cta-submit-button i {
    font-size: 16px;
}

/* Form Trust Badges */
.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: #64748b;
}

.trust-badge-item i {
    color: #4FB3FF;
    font-size: 1rem;
}

/* Divider */
.form-divider {
    text-align: center;
    margin: 32px 0 24px;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e2e8f0;
    z-index: 0;
}

.form-divider span {
    display: inline-block;
    padding: 0 16px;
    background: #fff;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Phone CTA inside form */
.form-phone-cta {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.phone-cta-text {
    display: block;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 10px;
}

.phone-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4169E1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.phone-cta-link:hover {
    color: #2947A9;
}

.phone-cta-link i {
    font-size: 20px;
}

/* Primary Call CTA */
.primary-call-cta {
    text-align: center;
    margin-bottom: 32px;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 26, 43, 0.08);
}

.call-cta-intro {
    font-size: var(--text-base);
    color: #334155;
    margin-bottom: 20px;
    font-weight: 500;
}

.phone-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 48px;
    background: #2f56c9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: var(--text-2xl);
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(47, 86, 201, 0.35);
    margin-bottom: 12px;
}

.phone-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(47, 86, 201, 0.45);
    background: #2548b0;
}

.phone-cta-button i {
    font-size: 1.75rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.phone-cta-button .phone-number {
    letter-spacing: 0.02em;
}

.call-cta-availability {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 12px;
}

/* CTA Divider */
.cta-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.cta-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.cta-divider span {
    display: inline-block;
    padding: 0 20px;
    background: #f8faff;
    color: #64748b;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 0.1em;
}

/* Call CTA Subtext */
.call-cta-subtext {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 16px;
    font-weight: 500;
}

/* ==========================================
   Sticky Mobile CTA Bar
   ========================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    display: none;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: var(--text-lg);
    font-weight: 700;
    transition: all 0.2s ease;
}

.mobile-cta-button:hover,
.mobile-cta-button:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.98);
}

.mobile-cta-button i {
    font-size: 1.25rem;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-headline {
        font-size: 2rem;
    }
    
    .cta-headline .no-break {
        white-space: normal;
    }
    
    .form-intro {
        font-size: 1rem;
    }
    
    .cta-form-card {
        padding: 32px 24px;
    }
    
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .clean-intake-form {
        gap: 16px;
    }
    
    .cta-submit-button {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .phone-cta-link {
        font-size: 1.25rem;
    }
    
    .form-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .trust-badge-item {
        font-size: 0.875rem;
    }
    
    .primary-call-cta {
        padding: 24px 20px;
        margin-bottom: 30px;
    }
    
    .call-cta-intro {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .phone-cta-button {
        padding: 18px 32px;
        font-size: 1.5rem;
        gap: 12px;
    }
    
    .phone-cta-button i {
        font-size: 1.25rem;
    }
    
    .call-cta-availability {
        font-size: 0.85rem;
    }
}

/* Old CTA Styles - Keep for compatibility */
.cta-section {
    background: var(--blue-gradient);
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.demo-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.form-row input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.form-row select option {
    color: var(--secondary-color);
}

.demo-form button {
    margin-top: 1rem;
    width: 100%;
}

.cta-subtext {
    margin-top: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 400;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 64px;
    width: auto;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone:hover {
    color: var(--primary-color);
}

.footer-phone i {
    font-size: 16px;
}

.footer-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-hours i {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media screen and (max-width: 968px) {
    .section-title {
        font-size: 2rem;
    }
    
    .ccp-header h2,
    .calculator-section .header h1,
    .calculator-section .header h2 {
        font-size: 2rem;
    }
    
    .hero-content,
    .problem-grid,
    .summaries-content,
    .google-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.15;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.65;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero-social-proof {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .social-proof-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .social-proof-badge i {
        font-size: 0.875rem;
    }
    
    .rating-stars i {
        font-size: 0.75rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        min-width: auto;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-quote {
        padding-left: 2.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .industries-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-photo-card {
        min-height: 360px;
    }
    
    .problem-phone {
        inset: 56px 44px;
    }
    
    .stat-number-large {
        font-size: 4rem;
    }
    
    .problem-point {
        padding: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .nav-cta {
        white-space: normal;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-logo .logo-image {
        height: 40px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
        font-weight: 800;
    }
    
    .hero-tagline {
        font-size: 1.15rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-trust-indicators {
        justify-content: center;
        gap: 1.25rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .hero-video-wrapper {
        max-width: 280px;
    }
    
    .problem-photo-card {
        min-height: 320px;
    }
    
    .problem-phone {
        inset: 56px 26px;
        transform: rotate(-8deg);
    }
    
    .stat-number {
        font-size: 52px;
    }
    
    .problem-benefit-card {
        padding: 16px 16px;
    }
    
    .problem-stat-card {
        padding: 16px 16px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Hero Audio Demo - Mobile */
    .hero-audio-card {
        padding: 1.5rem;
    }
    
    .hero-play-button {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        text-align: center;
    }
    
    .hero-play-icon {
        width: 56px;
        height: 56px;
    }
    
    .hero-play-title {
        font-size: 1.25rem;
    }
    
    .hero-play-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stop-button {
        width: 36px;
        height: 36px;
        right: 0.75rem;
    }
    
    .hero-stop-button i {
        font-size: 0.75rem;
    }
    
    .hero-audio-outcome {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .outcome-badge {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-hero-phone {
        font-size: 1rem;
        padding: 0.9rem 1.75rem;
    }
}

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

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

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

@keyframes kenBurnsZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.hero-content,
.section-header {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth transitions for all interactive elements */
a, button, .card, .feature-card, .industry-card, .pricing-card {
    transition: var(--transition);
}

/* ========================================
   PROBLEM SECTION - SIMPLIFIED CARDS
   ======================================== */

.problem-section-new {
  padding: 120px 0 120px;
  background: var(--bg-light); /* match page canvas to eliminate seam under hero */
  position: relative;
}

.problem-new-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.problem-new-header {
  text-align: center;
  max-width: 1100px; /* widen so headline fits on one line */
  padding: 0 24px;   /* add horizontal breathing room */
  margin: 0 auto 64px;
}

/* ── Section eyebrow labels ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  background: #2f56c9;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(47, 86, 201, 0.35);
}

.section-eyebrow--red {
  background: #dc2626;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.35);
}

.section-eyebrow--orange {
  background: #ea580c;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.35);
}

.section-eyebrow--blue {
  background: #2f56c9;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(47, 86, 201, 0.35);
}

.section-eyebrow--gold {
  background: #f5a623;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(245, 166, 35, 0.35);
}

.problem-new-header {
  text-align: center;
  max-width: 1100px; /* widen so headline fits on one line */
  padding: 0 24px;   /* add horizontal breathing room */
  margin: 0 auto 64px;
}

.problem-new-title {
  margin: 0 0 20px 0;
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(15, 26, 43, 0.95);
  text-align: center !important;
}

.problem-new-subtitle {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(15, 26, 43, 0.65);
  letter-spacing: -0.01em;
}

/* Calculator section heading should match other section H2 styles */
.calculator-section-title{
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(15, 26, 43, 0.95);
  text-align: center;
}

@media (max-width: 768px){
  .calculator-section-title{ font-size: 2.05rem; }
}

/* ── Problem flat row (no cards) ── */
.problem-flat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}

.problem-flat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-flat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;

  /* Gradient number like your screenshot */
  background-image: linear-gradient(90deg, #ff8a00 0%, #ff4d5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  font-size: clamp(2.75rem, 4.4vw, 4.5rem);
  font-weight: 800;
  padding: 0;
  border-radius: 0;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.problem-flat-title {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f1a2b;
  text-align: center;
}

.problem-flat-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(15, 26, 43, 0.6);
  text-align: center;
}

/* ── Problem Blue Banner (was card 4) ── */
/* ── Problem CTA Banner ── */
.problem-banner {
  /* More prominent, hero-style band */
  background: radial-gradient(1200px 380px at 18% 50%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 60%),
              linear-gradient(135deg, #1a327a 0%, #2f56c9 60%, #3b6be0 100%);
  border-radius: 0px;
  padding: 84px 56px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.problem-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  filter: blur(0.2px);
  pointer-events: none;
}

.problem-banner::after {
  content: '';
  position: absolute;
  bottom: -140px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.problem-banner__cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

/* Left column: eyebrow + heading + subhead */
.problem-banner__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  text-align: center;
}

/* Right column: bullets + CTA */
.problem-banner__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow label */
.problem-banner__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.problem-banner__cta-heading {
  font-size: clamp(2.25rem, 1.6rem + 2vw, 3.15rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-align: center;
}

/* Accent word highlight */
.problem-banner__accent {
  color: #fbbf24;
}

/* Transition subhead */
.problem-banner__subhead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.65;
  text-align: center;
  max-width: 900px;
}

@media (max-width: 768px){
  .problem-banner{ padding: 64px 20px; }
  .problem-banner__subhead{ font-size: 1rem; }
}

/* Bullet list — vertical stack */
.problem-banner__bullets {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.problem-banner__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.problem-banner__bullets li .fas {
  color: #fbbf24;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.problem-banner__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #ffffff;
  color: #1a327a;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition: all 0.22s ease;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  align-self: center;
}

.problem-banner__cta-btn:hover {
  background: #fef9ec;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.problem-banner__cta-btn i {
  display: inline-block;
  transform: scaleX(-1);
}

.problem-banner__cta-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  text-align: center;
  align-self: center;
}

/* Mobile CTA banner */
@media (max-width: 768px) {
  .problem-banner {
    padding: 36px 24px;
    border-radius: 16px;
  }
  .problem-banner__cta-inner {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
  .problem-banner__left {
    align-items: center !important;
    text-align: center !important;
  }
  .problem-banner__cta-heading {
    font-size: 1.75rem;
    text-align: center !important;
  }
  .problem-banner__subhead {
    font-size: 0.9375rem;
    margin-top: 8px;
    text-align: center !important;
  }
  .problem-banner__right {
    align-items: center !important;
    text-align: center !important;
  }
  .problem-banner__bullets {
    gap: 10px;
    margin-bottom: 24px;
  }
  .problem-banner__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }
  .problem-banner__cta-sub {
    text-align: center;
  }
}

/* Problem Sources - Horizontal Layout */
.problem-sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(15, 26, 43, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.source-item {
  font-size: 12px;
  color: rgba(15, 26, 43, 0.6);
  line-height: 1.5;
  text-align: left;
}

.source-item sup {
  font-weight: 600;
  color: #4169E1;
  margin-right: 4px;
}

@media (max-width: 968px) {
  .problem-sources {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.problem-new-cta {
  text-align: center;
}

.problem-new-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: #2f56c9;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(47, 86, 201, 0.35);
  position: relative;
}

.problem-new-cta-btn:hover {
  background: #2548b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 86, 201, 0.45);
}

.problem-new-cta-btn:active {
  transform: translateY(0);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .problem-flat-row {
    gap: 24px;
  }
}

/* ── Problem Section – Tablet-only (641-968px) ── */
@media (min-width: 641px) and (max-width: 968px) {
  .problem-section-new {
    padding: 56px 0 56px !important;
  }
  .problem-new-wrap {
    padding: 0 16px !important;
  }
  .problem-new-header {
    margin: 0 auto 28px !important;
    max-width: 100% !important;
  }
  .problem-new-title {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }
  .problem-new-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  .section-eyebrow {
    font-size: 0.75rem !important;
    padding: 5px 12px !important;
    margin-bottom: 14px !important;
  }

  /* Flat items: 4-col → 2-col on tablet */
  .problem-flat-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 16px !important;
  }
  .problem-flat-badge {
    font-size: 0.9rem !important;
    padding: 6px 14px !important;
  }
  .problem-flat-title {
    font-size: 1rem !important;
  }
  .problem-flat-text {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  /* CTA Banner: compact 2-col */
  .problem-banner {
    padding: 28px 24px !important;
    border-radius: 14px !important;
  }
  .problem-banner__cta-inner {
    gap: 0 28px !important;
    max-width: 100% !important;
  }
  .problem-banner__eyebrow {
    font-size: 0.75rem !important;
    margin-bottom: 8px !important;
  }
  .problem-banner__cta-heading {
    font-size: 1.4rem !important;
  }
  .problem-banner__subhead {
    font-size: 0.8rem !important;
  }
  .problem-banner__bullets li {
    font-size: 0.78rem !important;
    gap: 8px !important;
  }
  .problem-banner__bullets {
    gap: 8px !important;
    margin-bottom: 18px !important;
  }
  .problem-banner__cta-btn {
    padding: 12px 24px !important;
    font-size: 0.85rem !important;
    align-self: center !important;
  }
  .problem-banner__cta-sub {
    font-size: 0.75rem !important;
    text-align: center !important;
    align-self: center !important;
  }

  /* Sources */
  .problem-sources {
    margin-top: 24px !important;
    padding-top: 18px !important;
    gap: 10px !important;
  }
  .source-item {
    font-size: 0.75rem !important;
  }

  /* CTA button at bottom */
  .problem-new-cta-btn {
    padding: 14px 28px !important;
    font-size: 0.9rem !important;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .problem-section-new {
    padding: 80px 0 100px;
  }

  .problem-new-header {
    margin-bottom: 48px;
  }

  .problem-new-title {
    font-size: 2.25rem;
  }

  .problem-new-subtitle {
    font-size: 1.125rem;
  }

  .problem-flat-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 24px;
  }

  .problem-flat-badge {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .problem-flat-title {
    font-size: 1.15rem;
  }

  .problem-flat-text {
    font-size: 0.92rem;
  }

  .problem-new-cta-btn {
    padding: 18px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .problem-section-new {
    padding: 60px 0 80px;
  }

  .problem-new-wrap {
    padding: 0 14px;
  }

  .problem-new-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .problem-new-subtitle {
    font-size: 1.05rem;
  }
}

/* ========================================
   BUSINESSES WE SERVE - SCROLLING MARQUEE
   ======================================== */

.ccp-businesses {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

/* Subtle gradient overlay for depth */
.ccp-businesses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse 800px 400px at 50% 50%,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.ccp-businesses::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left, 
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Left edge fade to match right */
@media (max-width: 768px) {
  .ccp-businesses::before {
    background: linear-gradient(to right,
      rgba(248, 250, 255, 1) 0%,
      rgba(248, 250, 255, 0) 80px,
      transparent 80px
    );
    z-index: 2;
  }
}

.ccp-businesses__container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ccp-businesses__headline {
  text-align: center;
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(15, 26, 43, 0.95);
  margin: 0 0 20px 0;
}

.ccp-businesses__subtext {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(15, 26, 43, 0.55);
  letter-spacing: -0.01em;
  max-width: 800px;
  margin: 0 auto 64px;
}

.ccp-businesses__header-box {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 900px;
  margin: 0 auto 64px;
  box-shadow: 
    0 4px 12px rgba(15, 26, 43, 0.04),
    0 1px 3px rgba(15, 26, 43, 0.02);
}

.ccp-businesses__header-box .ccp-businesses__headline {
  margin: 0 0 16px 0;
}

.ccp-businesses__header-box .ccp-businesses__subtext {
  margin: 0;
  max-width: 100%;
}

.ccp-businesses__marquee {
  display: flex;
  overflow: hidden;
  gap: 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ccp-businesses__marquee:last-child {
  margin-bottom: 0;
}

.ccp-businesses__track {
  display: flex;
  gap: 0;
  padding: 32px 0;
  white-space: nowrap;
  will-change: transform;
}

/* Animations for different rows */
.ccp-businesses__marquee--left .ccp-businesses__track {
  animation: scroll-left 40s linear infinite;
}

.ccp-businesses__marquee--right .ccp-businesses__track {
  animation: scroll-right 55s linear infinite;
}

.ccp-businesses__marquee--left-alt .ccp-businesses__track {
  animation: scroll-left 35s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Pause on hover */
.ccp-businesses__marquee:hover .ccp-businesses__track {
  animation-play-state: paused;
}

/* Business Name Items - Varied Weight/Size */
.ccp-businesses__item {
  display: inline-flex;
  align-items: center;
  padding: 0 48px;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(15, 26, 43, 0.75);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* 8 Font weight patterns for more visual interest */
.ccp-businesses__item:nth-child(8n+1) {
  font-weight: 300;
  font-size: 1.375rem;
  color: rgba(15, 26, 43, 0.65);
}

.ccp-businesses__item:nth-child(8n+2) {
  font-weight: 600;
  font-size: 1.625rem;
  color: rgba(47, 86, 201, 0.85);
}

.ccp-businesses__item:nth-child(8n+3) {
  font-weight: 700;
  font-size: 1.75rem;
  color: rgba(15, 26, 43, 0.9);
}

.ccp-businesses__item:nth-child(8n+4) {
  font-weight: 400;
  font-size: 1.5rem;
  color: rgba(47, 86, 201, 0.8);
}

.ccp-businesses__item:nth-child(8n+5) {
  font-weight: 500;
  font-size: 1.625rem;
  color: rgba(15, 26, 43, 0.75);
}

.ccp-businesses__item:nth-child(8n+6) {
  font-weight: 800;
  font-size: 2rem;
  color: rgba(47, 86, 201, 0.95);
}

.ccp-businesses__item:nth-child(8n+7) {
  font-weight: 600;
  font-size: 1.5rem;
  color: rgba(15, 26, 43, 0.8);
}

.ccp-businesses__item:nth-child(8n) {
  font-weight: 900;
  font-size: 2rem;
  color: rgba(15, 26, 43, 0.95);
}

/* Dot separator */
.ccp-businesses__item::after {
  content: '·';
  margin-left: 48px;
  font-size: 1.25rem;
  color: currentColor;
  opacity: 0.3;
}

.ccp-businesses__item:last-child::after {
  display: block;
}

/* Hover effect */
.ccp-businesses__item:hover {
  color: rgba(15, 26, 43, 0.95);
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ccp-businesses {
    padding: 80px 0;
  }

  .ccp-businesses__headline {
    font-size: 2.25rem;
    margin-bottom: 16px;
  }

  .ccp-businesses__subtext {
    font-size: 1.125rem;
    margin-bottom: 48px;
  }

  .ccp-businesses__marquee {
    margin-bottom: 28px;
  }

  .ccp-businesses__item {
    padding: 0 18px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Flatten size variations on mobile to prevent clipping */
  .ccp-businesses__item:nth-child(8n+1),
  .ccp-businesses__item:nth-child(8n+4),
  .ccp-businesses__item:nth-child(8n+7) {
    font-size: 0.875rem;
  }

  .ccp-businesses__item:nth-child(8n+2),
  .ccp-businesses__item:nth-child(8n+5) {
    font-size: 0.95rem;
  }

  .ccp-businesses__item:nth-child(8n+3),
  .ccp-businesses__item:nth-child(8n+6),
  .ccp-businesses__item:nth-child(8n) {
    font-size: 1rem;
  }

  /* Reduce dot separator spacing on mobile */
  .ccp-businesses__item::after {
    margin-left: 18px;
  }

  .ccp-businesses__track {
    gap: 20px;
    padding: 16px 0;
  }

  /* Faster animation on mobile */
  .ccp-businesses__marquee--left .ccp-businesses__track {
    animation: scroll-left 30s linear infinite;
  }

  .ccp-businesses__marquee--right .ccp-businesses__track {
    animation: scroll-right 40s linear infinite;
  }

  .ccp-businesses__marquee--left-alt .ccp-businesses__track {
    animation: scroll-left 25s linear infinite;
  }
}

/* ─── Industry Proof Grid — Elevated card design ─── */
.industry-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 0 32px;
}

/* Base card — clean white, left accent bar via pseudo-element */
.industry-proof-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 26, 43, 0.09);
  box-shadow: 0 2px 8px rgba(15, 26, 43, 0.05), 0 1px 2px rgba(15, 26, 43, 0.04);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}

.industry-proof-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 26, 43, 0.10), 0 2px 6px rgba(15, 26, 43, 0.06);
}

/* Left accent bar — set width via inline style on .ind-accent */
.ind-accent {
  width: 4px;
  flex-shrink: 0;
  border-radius: 0;
}

/* Card body */
.ind-body {
  padding: 20px 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Industry label — small, uppercase, matches accent colour */
.ind-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 26, 43, 0.4);
  margin: 0;
  line-height: 1;
}

/* Headline — the main benefit statement */
.ind-headline {
  font-size: 0.9375rem;
  font-weight: 650;
  color: #0f1a2b;
  line-height: 1.35;
  margin: 0;
}

/* Supporting copy */
.ind-copy {
  font-size: 0.8125rem;
  color: rgba(15, 26, 43, 0.55);
  line-height: 1.55;
  margin: 2px 0 0;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .industry-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 24px;
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .industry-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 20px;
    margin-top: 32px;
  }

  .ind-body {
    padding: 16px 16px 16px 14px;
  }

  .ind-headline {
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  .ccp-businesses {
    padding: 60px 0;
  }

  .ccp-businesses__headline {
    font-size: 2rem;
    line-height: 1.2;
  }

  .ccp-businesses__subtext {
    font-size: 1.05rem;
  }
}
/* ─────────────────────────────────────────────
   LISTEN STATS BAR
   Below the CTA in the "Hear It Live" section
   ───────────────────────────────────────────── */
.listen-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: -40px 48px 0 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
  margin-bottom: 0;
  background: #ffffff;
  border: 1px solid rgba(47, 86, 201, 0.10);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 26, 43, 0.06);
  overflow: hidden;
  position: relative;
  z-index: 20;
}

.listen-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 28px 24px;
  position: relative;
}

/* Divider between stats */
.listen-stat + .listen-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(47, 86, 201, 0.12);
}

.listen-stat__icon {
  font-size: 1.25rem;
  color: #2f56c9;
  margin-bottom: 2px;
}

.listen-stat__number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f1a2b;
  letter-spacing: -0.03em;
  line-height: 1;
}

.listen-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(15, 26, 43, 0.5);
  letter-spacing: 0.01em;
  text-align: center;
}

/* Tablet: compact stats bar */
@media (min-width: 601px) and (max-width: 968px) {
  .ccp-video-gallery-container {
    margin-bottom: 16px !important;
  }

  .listen-stats-bar {
    margin: 0 0 20px 0;
    border-radius: 12px;
  }

  .listen-stat {
    padding: 14px 12px;
  }

  .listen-stat__icon {
    font-size: 0.9rem;
    margin-bottom: 1px;
  }

  .listen-stat__number {
    font-size: 1.35rem;
  }

  .listen-stat__label {
    font-size: 0.75rem;
  }
}

/* Mobile: 2×2 grid */
@media (max-width: 600px) {
  .listen-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 0 0 32px 0;
    border-radius: 14px;
  }

  .listen-stat {
    padding: 14px 10px;
  }

  /* Reset side dividers, add bottom dividers for top row */
  .listen-stat + .listen-stat::before {
    display: none;
  }

  .listen-stat:nth-child(2)::before,
  .listen-stat:nth-child(4)::before {
    display: none;
  }

  /* Right divider for left column */
  .listen-stat:nth-child(1),
  .listen-stat:nth-child(3) {
    border-right: 1px solid rgba(47, 86, 201, 0.12);
  }

  /* Bottom divider for top row */
  .listen-stat:nth-child(1),
  .listen-stat:nth-child(2) {
    border-bottom: 1px solid rgba(47, 86, 201, 0.12);
  }

  .listen-stat__number {
    font-size: 1.25rem;
  }

  .listen-stat__icon {
    font-size: 0.875rem;
  }

  .listen-stat__label {
    font-size: 0.75rem;
  }
}

/* ========== INDUSTRIES GRID SECTION ========== */

/* ========== DASHBOARD PRODUCT CARDS ========== */
.dash-section {
  padding: 100px 20px 120px;
  background: var(--bg-light);
}
.dash-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.dash-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.dash-title {
  margin: 0 0 14px;
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(15, 26, 43, 0.95);
}
.dash-subtitle {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(15, 26, 43, 0.70);
  line-height: 1.55;
  font-weight: 600;
}

/* 3-card row */
.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch; /* make all 3 cards the same height */
}

/* Individual card */
.dash-card {
  background: #faf8f6;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(15,26,43,0.06);
  position: relative;
  height: 100%; /* ensure equal-height cards within the grid row */
}

/* Subtle tech background on every card — faded overlay approach */
.dash-card:nth-child(1),
.dash-card:nth-child(2),
.dash-card:nth-child(3) {
  background-color: #f7f8fa;
  position: relative;
}

/* Tech pattern as faded pseudo-element */
.dash-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/dash-card-bg.png') center / cover no-repeat;
  opacity: 0.08;
  border-radius: 24px;
  pointer-events: none;
  z-index: 0;
}

/* Ensure card content sits above the bg */
.dash-card > * {
  position: relative;
  z-index: 1;
}

/* No inner glow */
.dash-card::after {
  display: none;
}

.dash-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15,26,43,0.1);
}

/* Dashboard panel container + extras */
.dash-panel{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(15,26,43,0.06);
}

.dash-card-proof{
  margin: 10px 0 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(15,26,43,0.62);
}

.dash-get{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:center;
}

.dash-get__item{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,26,43,0.08);
  box-shadow: 0 10px 24px rgba(15,26,43,0.05);
  color: rgba(15,26,43,0.82);
  font-weight: 800;
  font-size: 0.9rem;
}
.dash-get__item i{ color: #16a34a; }

.dash-cta{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

.dash-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.dash-btn--primary{
  background: linear-gradient(135deg, #2f56c9 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(47,86,201,0.25);
}
.dash-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(47,86,201,0.32);
}

.dash-btn--secondary{
  background: rgba(255,255,255,0.92);
  color: rgba(15,26,43,0.92);
  border: 1px solid rgba(15,26,43,0.10);
}
.dash-btn--secondary:hover{ transform: translateY(-1px); }

@media (max-width: 768px){
  .dash-panel{ padding: 18px; }
  .dash-title{ font-size: 2.05rem; }
}

/* Text area — fixed height so all image areas start at same vertical position */
.dash-card-body {
  padding: 32px 28px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.dash-card-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f1a2b;
  line-height: 1.25;
}
.dash-card-text {
  margin: 0;
  font-size: 0.9rem;
  color: #5d6b85;
  line-height: 1.55;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  word-spacing: -0.5px;
  letter-spacing: -0.1px;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Card 2: align laptop image without changing the perceived white panel height */
.dash-card--raise-image .dash-card-img{
  align-items: flex-start;
}
.dash-card--raise-image .dash-card-img img{
  margin-top: 0;
}

/* Card-specific typography tweak: tighten word spacing for card 3 */
.dash-card--tight-spacing .dash-card-text{
  text-align: left;
  text-align-last: left;
  text-justify: auto;
  word-spacing: -1.4px;
}

/* Image area — all images top-aligned at same position */
.dash-card-img {
  padding: 0 20px 20px;
  display: flex;
  align-items: flex-start;
}
.dash-card-img img {
  width: 100%;
  height: 320px; /* consistent white card height for all 3 */
  object-fit: contain; /* prevent cropping */
  object-position: center;
  display: block;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15,26,43,0.08);
  background: #ffffff; /* clean edges when using contain */
}

/* Ensure the inner white "image card" looks level even when the asset has extra transparency */
.dash-card-img img{
  padding: 18px;            /* forces a consistent white panel size */
  box-sizing: border-box;
}

/* ========== DASHBOARD CARDS — RESPONSIVE ========== */
@media (max-width: 968px) {
  .dash-section {
    padding: 64px 16px 80px;
  }
  .dash-title {
    font-size: 2rem;
  }
  .dash-subtitle {
    font-size: 1rem;
  }
  .dash-cards {
    gap: 20px;
  }
  .dash-card-body {
    padding: 24px 20px 16px;
    min-height: 105px;
  }
  .dash-card-title {
    font-size: 1.05rem;
  }
  .dash-card-text {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .dash-card-img img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .dash-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin: 0 auto;
  }
  .dash-card-body {
    min-height: auto;
  }
  .dash-card-img img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .dash-section {
    padding: 48px 14px 64px;
  }
  .dash-header {
    margin-bottom: 36px;
  }
  .dash-title {
    font-size: 1.6rem;
  }
  .dash-subtitle {
    font-size: 0.92rem;
  }
  .dash-cards {
    max-width: 380px;
    gap: 18px;
  }
  .dash-card-body {
    padding: 24px 22px 14px;
    min-height: auto;
  }
  .dash-card-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .dash-card-img {
    padding: 0 16px 16px;
  }
  .dash-card-img img {
    height: 220px;
  }
}

/* ========== END DASHBOARD PRODUCT CARDS ========== */

/* ========== HOW IT WORKS — CARD LAYOUT ========== */
.hiw-section {
  padding: 100px 20px 120px;
  background: var(--bg-section);
}
.hiw-wrap {
  max-width: 1140px;
  margin: 0 auto;
}
.hiw-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.hiw-title {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(15, 26, 43, 0.95);
  white-space: nowrap; /* keep headline on one line */
}

.hiw-title--muted{
  color: rgba(15,26,43,0.55);
  font-weight: 600;
  font-size: 0.82em; /* slightly smaller parenthesis text */
}

.hiw-subhead{
  margin: 10px 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(15,26,43,0.70);
  font-weight: 600;
}

/* Cards row — 4 cards with connector line behind */
.hiw-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  padding-top: 52px; /* more breathing room for protruding balls */
}

/* Connector line removed per request */
.hiw-connector-line { display: none; }

/* Ensure balls always render above the connector line */
.hiw-ball-wrap { z-index: 4; }
.hiw-ball-wrap .timeline-circle { z-index: 5; }

/* Individual card */
.hiw-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 43, 0.07);
  border-radius: 20px;
  padding: 62px 26px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    0 4px 16px rgba(15, 26, 43, 0.06),
    0 1px 4px rgba(15, 26, 43, 0.03);
  transition: all 0.3s ease;
  position: relative;
  margin-top: 48px; /* a touch more space */
}
.hiw-card:hover {
  box-shadow:
    0 8px 24px rgba(15, 26, 43, 0.1),
    0 2px 8px rgba(15, 26, 43, 0.05);
  /* keep cards from shifting so the connector line stays perfectly stationary */
  transform: none;
}

/* Ball wrapper — centers the ball, positioned half above card */
.hiw-ball-wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -44px; /* half of 88px ball */
  left: 0;
  right: 0;
  z-index: 4; /* keep balls above the connector line */
}
.hiw-ball-wrap .timeline-circle {
  width: 88px;
  height: 88px;
  font-size: 1.85rem;
}

/* Card body — text area, left-justified */
.hiw-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Push explainer text to a consistent baseline across cards */
.hiw-card-text{
  margin-top: auto;
}
.hiw-card-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 900;
  color: rgba(15, 26, 43, 0.92);
  line-height: 1.35;
  text-align: center;
}

.hiw-card-title-sub{
  display: inline-block;
  font-size: 0.88em;
  font-weight: 800;
  color: rgba(15,26,43,0.62);
}
.hiw-card-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(15, 26, 43, 0.6);
  line-height: 1.6;
  text-align: center; /* align explainer text consistently across cards */
}

/* Reassurance strip + CTA under steps */
.hiw-reassure{
  margin: 22px auto 0;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:center;
  max-width: 980px;
}

.hiw-reassure__item{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,26,43,0.08);
  box-shadow: 0 10px 24px rgba(15,26,43,0.05);
  color: rgba(15,26,43,0.82);
  font-weight: 800;
  font-size: 0.9rem;
}
.hiw-reassure__item i{ color: #16a34a; }

.hiw-cta{
  margin-top: 54px;
  display:flex;
  justify-content:center;
}

.hiw-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration:none;
  background: linear-gradient(135deg, #2f56c9 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(47,86,201,0.25);
  transition: transform .15s ease, box-shadow .2s ease;
}
.hiw-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(47,86,201,0.32);
}

/* ========== HOW IT WORKS — RESPONSIVE ========== */
@media (max-width: 968px) {
  .hiw-section {
    padding: 64px 16px 80px;
  }
  .hiw-title{ font-size: 2.05rem; white-space: normal; }
  .hiw-title {
    font-size: 2rem;
  }
  .hiw-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 34px;
  }
  .hiw-connector-line {
    display: none;
  }
  .hiw-card {
    padding: 44px 20px 32px;
    border-radius: 16px;
    margin-top: 34px;
  }
  .hiw-ball-wrap .timeline-circle {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
  }
  .hiw-ball-wrap {
    top: -34px;
  }
}

@media (max-width: 560px) {
  .hiw-section {
    padding: 48px 14px 64px;
  }
  .hiw-header {
    margin-bottom: 32px;
  }
  .hiw-title {
    font-size: 1.6rem;
  }
  .hiw-cards-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 30px;
  }
  .hiw-card {
    padding: 38px 16px 28px;
    border-radius: 14px;
    margin-top: 30px;
  }
  .hiw-ball-wrap .timeline-circle {
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
  }
  .hiw-ball-wrap {
    top: -28px;
  }
  .hiw-card-title {
    font-size: 0.95rem;
  }
  .hiw-card-text {
    font-size: 0.82rem;
  }
}
/* --- Hero trust row (under primary CTA) --- */
.hero-trust-row{
  margin-top: 22px;
  display:flex;
  flex-wrap: nowrap; /* keep pills on one straight line */
  gap: 10px 14px;
  align-items:center;
  justify-content: center;
}
.hero-trust-row{ overflow-x:auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.hero-trust-row::-webkit-scrollbar{ height: 6px; }
.hero-trust-row::-webkit-scrollbar-thumb{ background: rgba(15,26,43,0.18); border-radius: 999px; }
.hero-trust-item{ flex: 0 0 auto; white-space: nowrap; }
.hero-trust-item{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,26,43,0.08);
  box-shadow: 0 6px 18px rgba(15,26,43,0.06);
  color: rgba(15,26,43,0.82);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-trust-item i{ color: #2f56c9; }

/* Secondary hero link style (used for "Get A Free Trial") */
.hero-pricing-link--secondary{
  opacity: 0.9;
  font-weight: 700;
}
.hero-pricing-link--secondary:hover{
  opacity: 1;
}
@media (max-width: 640px){
  .hero-trust-row{ gap: 8px 10px; justify-content: flex-start; }
  .hero-trust-item{ font-size: 0.82rem; padding: 8px 12px; }
}

/* ========== END HOW IT WORKS ========== */

.ind-grid-section {
  padding: 100px 20px 120px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.ind-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section header */
.ind-grid-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}
.ind-grid-title {
  margin: 0 0 14px;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f1a2b;
  line-height: 1.2;
}
.ind-grid-subtitle {
  margin: 0;
  font-size: 1.15rem;
  color: #5d6b85;
  line-height: 1.5;
}

/* 2×2 grid with gap for center circle */
.ind-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px 28px; /* tighter like the reference */
  position: relative;
  justify-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

/* Position helpers */
.ind-card--tl { grid-column: 1; grid-row: 1; }
.ind-card--tr { grid-column: 2; grid-row: 1; }
.ind-card--bl { grid-column: 1; grid-row: 2; }
.ind-card--br { grid-column: 2; grid-row: 2; }

/* ---------- Individual card ---------- */
.ind-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(47, 86, 201, 0.14);
  border-radius: 16px;
  padding: 18px 18px;
  width: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 10px 28px rgba(15,26,43,0.06);
}
.ind-card:hover {
  border-color: rgba(47, 86, 201, 0.28);
  box-shadow: 0 16px 44px rgba(15,26,43,0.10);
  transform: translateY(-3px);
}

/* Decorative dot top-left */
.ind-card-dot {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(47, 86, 201, 0.45);
  opacity: 0.7;
}

/* Inner flex row: avatar | body | play */
.ind-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.ind-card-play{
  align-self: flex-end;
}

/* Large circular avatar */
.ind-card-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 86, 201, 0.10);
  border: 1px solid rgba(47, 86, 201, 0.18);
  color: #2f56c9;
}
.ind-card-avatar i{
  font-size: 18px;
}
/* old image avatar styles removed (icons now used) */

/* Text block */
.ind-card-body {
  width: 100%;
  min-width: 0;
}
.ind-card-title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1a2b;
  line-height: 1.3;
}
.ind-card-text {
  margin: 0;
  font-size: 0.95rem;
  color: #5d6b85;
  line-height: 1.5;
}

/* Play triangle button */
.ind-card-play {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(47, 86, 201, 0.14);
  color: #2f56c9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 18px rgba(15,26,43,0.08);
}
.ind-card-play svg {
  width: 16px;
  height: 16px;
}
.ind-card-play:hover {
  background: rgba(47, 86, 201, 0.22);
  transform: scale(1.08);
}

/* Playing state — glow border + pulse play button */
.ind-card--playing {
  border-color: rgba(47, 86, 201, 0.45);
  box-shadow: 0 0 0 3px rgba(47, 86, 201, 0.18), 0 18px 50px rgba(15,26,43,0.12);
}
.ind-card--playing .ind-card-play {
  animation: ind-pulse 1.2s ease-in-out infinite;
}
@keyframes ind-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Hidden audio element */
.ind-audio {
  display: none;
}

/* ---------- Center circle (removed) ---------- */
.ind-center-circle {
  display:none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 5px solid #5bb5c5;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 40px rgba(91,181,197,0.25), 0 0 0 12px rgba(91,181,197,0.06);
  z-index: 2;
}
.ind-center-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== INDUSTRIES GRID — RESPONSIVE ========== */

/* Tablet */
@media (max-width: 768px) {
  .ind-grid-section {
    padding: 64px 16px 80px;
  }
  .ind-grid-header {
    margin-bottom: 36px;
  }
  .ind-grid-title {
    font-size: 1.85rem;
  }
  .ind-grid-subtitle {
    font-size: 1rem;
  }
  .ind-grid-layout {
    gap: 56px 28px;
  }
  .ind-center-circle {
    width: 110px;
    height: 110px;
    border-width: 4px;
    box-shadow: 0 6px 28px rgba(91,181,197,0.22), 0 0 0 8px rgba(91,181,197,0.06);
  }
  .ind-card {
    padding: 22px 18px;
    border-radius: 16px;
    max-width: 100%;
  }
  .ind-card-avatar {
    width: 60px;
    height: 60px;
  }
  .ind-card-inner {
    gap: 14px;
  }
  .ind-card-title {
    font-size: 1rem;
  }
  .ind-card-text {
    font-size: 0.85rem;
  }
  .ind-card-play {
    width: 38px;
    height: 38px;
  }
  .ind-card-play svg {
    width: 13px;
    height: 13px;
  }
}

/* Mobile — stack to 1 column */
@media (max-width: 560px) {
  .ind-grid-section {
    padding: 48px 16px 60px;
  }
  .ind-grid-header {
    margin-bottom: 24px;
  }
  .ind-grid-title {
    font-size: 1.5rem;
  }
  .ind-grid-subtitle {
    font-size: 0.92rem;
  }
  .ind-grid-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ind-card--tl, .ind-card--tr, .ind-card--bl, .ind-card--br {
    grid-column: 1;
    grid-row: auto;
  }
  .ind-center-circle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 8px auto;
    width: 100px;
    height: 100px;
    border-width: 4px;
    box-shadow: 0 4px 20px rgba(91,181,197,0.2), 0 0 0 6px rgba(91,181,197,0.05);
    order: -1;
  }
  .ind-card {
    max-width: 100%;
    padding: 18px 16px;
    border-radius: 14px;
  }
  .ind-card-avatar {
    width: 52px;
    height: 52px;
  }
  .ind-card-inner {
    gap: 12px;
  }
  .ind-card-title {
    font-size: 0.95rem;
  }
  .ind-card-text {
    font-size: 0.78rem;
  }
  .ind-card-play {
    width: 36px;
    height: 36px;
  }
  .ind-card-play svg {
    width: 12px;
    height: 12px;
  }
}

/* ========== IMPORTANT DETAILS & DISCLAIMERS ========== */
.disclaimers-section {
  background: var(--bg-light);
  padding: 64px 20px;
  border-top: 1px solid rgba(15, 26, 43, 0.06);
}
.disclaimers-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.disclaimers-headline h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0f1a2b;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}
.disclaimers-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.disclaimers-col p {
  margin: 0 0 14px 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #5d6b85;
}
.disclaimers-col p:last-child {
  margin-bottom: 0;
}
.disclaimers-col u {
  color: #2f56c9;
  text-decoration: underline;
  cursor: pointer;
}

/* Tablet */
@media (max-width: 900px) {
  .disclaimers-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .disclaimers-headline h3 {
    font-size: 1.6rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .disclaimers-section {
    padding: 40px 14px;
  }
  .disclaimers-headline h3 {
    font-size: 1.35rem;
  }
  .disclaimers-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .disclaimers-col p {
    font-size: 0.74rem;
    margin-bottom: 10px;
  }
}
