/* ============================================
   Visual Hull Homepage - COMPLETE FINAL VERSION
   Performance: LCP < 2.5s | CLS < 0.1 | INP < 200ms
   All Sections Included + Optimizations
   ============================================ */

:root {
    --section-pad-y: clamp(56px, 6vw, 104px);
    --section-header-gap: clamp(28px, 4vw, 60px);

    --primary-blue: #3B82F6;
    --primary-dark: #0F172A;
    --accent-orange: #F97316;
    --success-green: #10B981;
    --purple-accent: #8B5CF6;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #3B82F6 100%);
    --container-max-width: 1200px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 50px rgba(59, 130, 246, 0.3);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: #1E293B;
    background: #fbfcfe;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-subtitle {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    animation: gradientShift 15s ease infinite;
    will-change: background-position;
    background-size: 200% 200%;
}

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

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    contain: layout style paint;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    will-change: transform;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
}

.hero-content {
    z-index: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.shield-icon {
    color: var(--success-green);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.2vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-bottom: 32px;
}

.subtitle-text {
    color: var(--gray-300);
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
}

.subtitle-text strong {
    color: var(--white);
    font-weight: 600;
}

.highlight-text {
    color: var(--accent-orange);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-cta svg {
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

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

.floating-card {
    position: absolute;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-2xl);
    will-change: transform;
}

.floating-card svg {
    flex-shrink: 0;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation: float 7s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation: float 8s ease-in-out infinite 2s;
}

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

.center-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease infinite;
    will-change: transform, opacity;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 0.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
    opacity: 0;
}

.animate-bounce {
    animation: bounce 2s ease infinite;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

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

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

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   SEO BLOCK (Elementor content via the_content)
   ============================================ */
.vh-wrap {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.vh-seoBlock {
    padding: 64px 0;
    background: var(--gray-50);
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
}

.vh-seoBlock h2 {
    margin: 0 0 12px;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.vh-seoBlock h3 {
    margin: 18px 0 8px;
}

.vh-seoBlock p {
    margin: 0 0 12px;
    color: var(--gray-600);
    line-height: 1.75;
    max-width: 75ch;
}

.vh-seoBlock ul {
    margin: 10px 0 14px;
    padding-left: 18px;
    color: var(--gray-600);
}

.vh-seoBlock img {
    margin-top: 10px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.16);
    box-shadow: 0 14px 44px rgba(59, 130, 246, 0.08);
    height: auto;
    max-width: 100%;
}

.vh-seoBlock.is-empty {
    display: none;
}

/* ============================================
   WHO WE SERVE SECTION
   ============================================ */
.who-we-serve {
    background: var(--white);
}

.who-we-serve-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 56px;
    align-items: start;
}

.who-we-serve-left {
    max-width: 900px;
}

.who-we-serve .service-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.who-we-serve .service-title {
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.who-we-serve .service-features {
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
}

.who-we-serve .service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 16px;
}

.who-we-serve .service-features li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.who-we-serve-media {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.who-we-serve-figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.16);
    box-shadow: 0 14px 44px rgba(59, 130, 246, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.who-we-serve-figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
    will-change: transform;
    contain: layout style paint;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

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

.service-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-2xl);
}

.service-card.highlight {
    border: 2px solid var(--accent-orange);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 15px;
}

.service-features li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    flex-shrink: 0;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.why-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
    transition: all var(--transition-base);
}

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

.why-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.why-description {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--primary-dark);
    position: relative;
}

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

.stat-box {
    text-align: center;
    padding: 24px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: capitalize;
}

/* ============================================
   QUIZ SECTION
   ============================================ */
.quiz-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.quiz-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    padding: 48px;
}

.quiz-header {
    margin-bottom: 40px;
}

.quiz-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 16px 0;
}

.quiz-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
    width: 16.66%;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
    animation: fadeInSlide 0.4s ease;
}

.question-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 32px;
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.quiz-option:hover {
    background: var(--gray-100);
    border-color: var(--primary-blue);
    transform: translateX(4px);
}

.quiz-option input[type="radio"] {
    display: none;
}

.quiz-option:has(input[type="radio"]:checked) {
    background: #EFF6FF;
    border-color: var(--primary-blue);
}

.option-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
    width: 100%;
}

.option-text svg {
    color: var(--gray-500);
    flex-shrink: 0;
}

.contact-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-fields input {
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
}

.contact-fields input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.quiz-buttons {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 32px;
}

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

.results-score {
    margin-bottom: 32px;
}

.score-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
}

.score-circle svg {
    width: 100%;
    height: 100%;
}

.score-circle circle {
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 1s ease;
}

.score-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.score-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    font-size: 24px;
    color: var(--gray-500);
}

.results-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.results-message {
    font-size: 18px;
    color: var(--gray-600);
    margin: 24px 0;
    line-height: 1.8;
}

.results-recommendations {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    text-align: left;
}

.results-recommendations h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.results-recommendations ul {
    list-style: none;
    padding: 0;
}

.results-recommendations li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--gray-600);
}

.results-recommendations li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: 700;
    font-size: 20px;
}

.results-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 120px 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.process-step {
    position: relative;
    padding-left: 120px;
    margin-bottom: 80px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    z-index: 1;
}

.step-content {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
}

.step-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.step-deliverable {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--success-green);
    background: #F0FDF4;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.industry-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    text-align: center;
}

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

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.industry-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============================================
   AREAS SERVED SECTION
   ============================================ */
.areas-served {
    padding: 120px 0;
    background: var(--gray-50);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 120px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--white);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-quiz-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-quiz-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-4px);
}

.back-to-top svg {
    transition: stroke var(--transition-base);
}

.back-to-top:hover svg {
    stroke: var(--white);
}

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

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 400px;
    }

    .section-title {
        font-size: 40px;
    }

    .who-we-serve-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quiz-wrapper {
        padding: 32px;
    }

    .quiz-title {
        font-size: 28px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        padding-left: 100px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        justify-content: space-around;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .quiz-wrapper {
        padding: 24px;
    }

    .quiz-title {
        font-size: 24px;
    }

    .question-text {
        font-size: 20px;
    }

    .quiz-buttons {
        flex-direction: column;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        padding-left: 0;
        margin-bottom: 60px;
    }

    .step-number {
        position: relative;
        margin-bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .floating-quiz-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .floating-quiz-btn span {
        display: none;
    }

    .back-to-top {
        bottom: 90px;
        left: 16px;
        width: 48px;
        height: 48px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-value {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-value {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 28px;
    }

    .quiz-title {
        font-size: 20px;
    }

    .question-text {
        font-size: 18px;
    }

    .option-text {
        font-size: 14px;
    }

    .step-title {
        font-size: 22px;
    }

    .cta-title {
        font-size: 24px;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
.service-card,
.floating-card,
.hero-visual {
    contain: layout style paint;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .hero-background,
    .floating-quiz-btn,
    .back-to-top {
        display: none;
    }
}

/* ============================================================================
   FAQ SECTION - ACCORDION STYLE
   ============================================================================ */

/* FAQ Section Container */
.faq-section {
    padding: 120px 0;
    background: #ffffff;
}

/* FAQ Grid/Container */
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

/* Individual FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* IMPROVED HOVER STATE - White text on #cc3366 background */
.faq-question:hover {
    background: #cc3366;
    color: #ffffff;
    padding-left: 28px;
}

.faq-question span {
    flex: 1;
}

.faq-question svg {
    flex-shrink: 0;
    color: #3B82F6;
    transition: transform 0.3s ease;
}

.faq-question:hover svg {
    color: #ffffff;
}

/* Active State - When FAQ is Open */
.faq-item.active .faq-question {
    background: #cc3366;
    color: #ffffff;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: #ffffff;
}

/* FAQ Answer Container */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

/* FAQ Answer Text */
.faq-answer p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: #0F172A;
    font-weight: 600;
}

.faq-answer a {
    color: #3B82F6;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #2563EB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        margin-top: 40px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-question:hover {
        padding-left: 24px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 15px;
        padding: 16px;
    }

    .faq-question:hover {
        padding-left: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
}

/* END OF CSS */
