/* ============================================
   ACQUILEADZ PREMIUM BRAND STYLING
   Cross-browser compatible
   ============================================ */

/* Optimized font loading - only weights actually used */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Manrope:wght@700;800&display=swap');

/* BRAND COLORS */
:root {
    --navy: #0A1927;
    --navy-alt: #0F2335;
    --navy-deep: #06101A;
    --white: #ffffff;
    --cyan: #2BB7DA;
    --cyan-light: #3DC8E8;
    --gray: #94A6B8;
    --muted: #B8C4D3;
    --surface: rgba(255,255,255,0.04);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-alt: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* GSAP FALLBACK - Ensure animated elements visible if GSAP fails to load */
.metric,
.value-box,
.feature-card,
.testimonial-card,
.service-detail,
.problem-item,
.benefit-item,
.offering-card,
.process-step,
.faq-item,
.pricing-item,
.value-item,
.trait-item,
.proof-stat,
.team-card,
.about-card,
.diff-card,
.final-cta-content,
.flow-step,
.step-box,
.animated-text {
    opacity: 1;
    transform: none;
}

/* COMPREHENSIVE RESET - Cross-browser */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background:
        radial-gradient(circle at 30% 20%, rgba(43, 183, 218, 0.12), transparent 35%),
        radial-gradient(circle at 70% 80%, rgba(43, 183, 218, 0.08), transparent 30%),
        linear-gradient(180deg, #06101A 0%, #0A1927 50%, #06101A 100%);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) var(--navy-deep);
}

/* Webkit scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan-light);
}

/* Remove tap highlight on mobile */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure images are responsive by default */
img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove default button styles */
button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Ensure links inherit color */
a {
    color: inherit;
    text-decoration: none;
}

/* GLOBAL PAGE WIDTH CONTAINER - Full width with max content areas */
.page-container {
    width: 100%;
    padding: 0;
    padding-top: 72px; /* Account for fixed nav height */
}

/* Content sections get their own internal max-width where needed */
.content-width {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* GLOBAL SECTION SPACING */
section {
    padding: 100px 5vw;
    width: 100%;
}

/* Full-bleed sections */
.full-bleed {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 5vw;
    padding-right: 5vw;
}

p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

/* ACCESSIBILITY -------------------------------------- */

/* Skip to content link - hidden until focused */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 10px;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--cyan);
    color: var(--navy-deep);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: top 0.2s ease;
}

.skip-to-content:focus {
    top: 10px;
    outline: 3px solid var(--cyan-light);
    outline-offset: 2px;
}

/* Enhanced focus indicators for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove focus outline for mouse/touch users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
}

/* Form label accessibility */
form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

form label input,
form label textarea {
    margin-top: 4px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Disable GSAP animations */
    .hero-arrow {
        animation: none !important;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.6; }
    }
}

/* NAVIGATION -------------------------------------- */
.nav {
    --header-height: 72px;
    width: 100%;
    height: var(--header-height);
    padding: 0 40px;
    background: rgba(6, 16, 26, 0.80);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 1px 0 rgba(255,255,255,0.03);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    --header-height: 64px;
    background: rgba(6, 16, 26, 0.95);
    backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* LOGO */
.nav-logo {
    overflow: hidden; /* Contain logo during scroll transitions */
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.02);
}

.nav-logo img {
    height: calc(var(--header-height) - 8px);
    max-height: calc(var(--header-height) - 8px);
    width: auto;
    object-fit: contain;
    margin-left: -6px;
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
}

.cta-btn {
    padding: 10px 22px !important;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: var(--navy-deep) !important;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(43, 183, 218, 0.3);
    letter-spacing: 0.01em;
    border: none;
}

.cta-btn:hover {
    opacity: 1 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(43, 183, 218, 0.4) !important;
    background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 100%) !important;
}

.cta-btn.active {
    background: linear-gradient(135deg, #1ca6c8 0%, #1a9ab8 100%);
}

/* SHARED PAGE HERO BASE -------------------------------------- */
/* Base styles for consistent hero heights across pages */
.page-hero {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px 60px;
    text-align: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(43,183,218,0.12), transparent 40%),
        radial-gradient(circle at 70% 20%, rgba(43,183,218,0.08), transparent 35%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

/* HERO SECTION -------------------------------------- */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 8vw 60px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: stretch;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80vw;
    height: 80vw;
    max-width: 1400px;
    max-height: 1400px;
    background: radial-gradient(circle, rgba(43, 183, 218, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan);
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-content h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    width: 100%;
}

.hero-title-line {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-family: var(--font-alt);
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
}

.hero-arrow {
    font-size: 28px;
    color: var(--cyan);
    margin: 2px 0;
    animation: bounce 2s ease-in-out infinite;
    display: block;
    align-self: center;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-arrow {
        animation: none;
    }
}

.hero-content p {
    font-size: 16px;
    max-width: 440px;
    margin: 0 auto 28px auto;
    color: var(--muted);
    line-height: 1.65;
    text-align: center;
    width: 100%;
}

.hero-content .cta-btn-large {
    margin: 0 auto;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    min-height: 450px;
    justify-self: end;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.1) 0%, rgba(43, 183, 218, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: translateY(-10px) scale(1.02);
}

/* HERO VALUES - Integrated What You Get */
.hero-values-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin: 0 0 16px 0;
    width: 100%;
}

.hero-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.hero-value-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.hero-value-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(43, 183, 218, 0.3);
    transform: translateY(-4px);
}

.hero-value-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
    font-family: var(--font-alt);
}

.hero-value-box p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* CTA BUTTONS */
.cta-btn-large {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: var(--navy-deep);
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 32px rgba(43, 183, 218, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-btn-large:hover::before {
    left: 100%;
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(43, 183, 218, 0.5);
}

.cta-btn-outline {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

/* METRICS */
.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    padding: 120px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43, 183, 218, 0.5), transparent);
}

.metric {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric:hover::before {
    transform: scaleX(1);
}

.metric:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 183, 218, 0.4);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.metric h4 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-family: var(--font-alt);
}

.metric p {
    color: var(--muted);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.metric-disclaimer {
    display: block;
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
    margin-top: 8px;
}

/* Q&A SECTION HEADERS */
.qa-section {
    position: relative;
    padding: 100px 8vw;
    width: 100%;
}

.qa-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.qa-label {
    display: inline-block;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 600;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    opacity: 0.8;
}

.qa-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    font-style: italic;
}

/* Standard section headers (non-question) */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
}

.section-header-light h2 {
    color: var(--navy);
}

/* Proof section specific */
.proof-section {
    padding-top: 80px;
}

.proof-section .qa-header {
    margin-bottom: 60px;
}

.proof-disclaimer {
    color: var(--muted);
    max-width: 720px;
    margin: 14px auto 0;
    line-height: 1.6;
    font-size: 16px;
}

.proof-answer {
    color: var(--muted);
    font-size: 20px;
    margin-top: 16px;
    font-weight: 500;
}

.proof-section-spaced {
    padding-bottom: 100px;
}

.proof-section .metrics {
    padding-top: 0;
}

.social-proof {
    padding: 36px 80px;
    max-width: 1400px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.compliance-blurb {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}

.compliance-title {
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.compliance-body {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.compliance-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.compliance-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Offer section specific */
.offer-section .section-header {
    margin-bottom: 48px;
    padding: 0 80px;
}

.offer-section .values {
    padding-top: 0;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 100px 80px;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: rgba(43, 183, 218, 0.3);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-source {
    border-top: 1px solid #e4e8ef;
    padding-top: 16px;
}

.testimonial-name {
    display: block;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
}

.testimonials-notice {
    align-items: stretch;
}

.policy-card {
    border: 1px dashed #cbd5e1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.policy-card .testimonial-text {
    font-style: normal;
}

/* Policy & legal pages */
.policy-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 80px;
}

.policy-section a {
    color: var(--cyan);
    text-decoration: underline;
    font-weight: 600;
}

.policy-section a:hover,
.policy-section a:focus-visible {
    color: var(--white);
}

/* Policy & legal pages */
.policy-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 80px;
}

.policy-section a {
    color: var(--cyan);
    text-decoration: underline;
    font-weight: 600;
}

.policy-section a:hover,
.policy-section a:focus-visible {
    color: var(--white);
}

/* VALUE PROPS */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(24px, 3vw, 40px);
    padding: 100px 8vw;
    width: 100%;
}

.value-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
    border-radius: 24px;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.value-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-box:hover::before {
    transform: scaleX(1);
}

.value-box:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    transform: translateY(-10px);
    border-color: rgba(43, 183, 218, 0.4);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.value-box h3 {
    margin-bottom: 16px;
    font-size: 28px;
    color: var(--white);
    font-family: var(--font-alt);
    font-weight: 700;
}

.value-box p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

/* SERVICES PREVIEW */
.services-preview {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    color: var(--navy);
    text-align: center;
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(6, 16, 26, 1) 0%, rgba(6, 16, 26, 0) 100%);
    pointer-events: none;
}

.services-preview h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: var(--font-alt);
}

.services-preview p {
    margin-bottom: 60px;
    color: #4a5568;
    font-size: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(10, 25, 39, 0.95) 0%, rgba(15, 35, 53, 0.95) 100%);
    color: var(--white);
    padding: 32px 28px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 183, 218, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(43, 183, 218, 0.5);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 120px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 183, 218, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(43, 183, 218, 0.5);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-family: var(--font-alt);
    font-weight: 700;
    color: var(--white);
}

.feature-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

/* DIFFERENTIATOR SECTION - Us vs Them */
.differentiator-section {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative;
}

.differentiator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43, 183, 218, 0.3), transparent);
}

.differentiator-content {
    max-width: 1000px;
    margin: 0 auto;
}

.differentiator-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diff-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.diff-card:hover {
    border-color: rgba(43, 183, 218, 0.3);
    background: rgba(255,255,255,0.05);
}

.diff-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

.diff-them, .diff-us {
    padding: 16px 20px;
    border-radius: 12px;
}

.diff-them {
    background: rgba(255, 95, 87, 0.08);
    border: 1px solid rgba(255, 95, 87, 0.2);
}

.diff-us {
    background: rgba(43, 183, 218, 0.1);
    border: 1px solid rgba(43, 183, 218, 0.3);
}

.diff-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.diff-them .diff-label {
    color: rgba(255, 95, 87, 0.8);
}

.diff-us .diff-label {
    color: var(--cyan);
}

.diff-them p, .diff-us p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.diff-them p {
    color: var(--gray);
}

.diff-us p {
    color: var(--white);
    font-weight: 500;
}

.diff-arrow {
    font-size: 24px;
    color: var(--cyan);
    font-weight: 700;
}

/* FINAL CTA - Clean problem/solution/action with animated background */
.final-cta {
    padding: 120px 8vw;
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.15) 0%, rgba(10, 25, 39, 0.95) 50%, rgba(6, 16, 26, 1) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 183, 218, 0.12) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-problem {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.cta-solution {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.final-cta .cta-btn-large {
    font-size: clamp(16px, 1.5vw, 18px);
    padding: 20px 48px;
}

/* ============================================
   PROCESS FLOW SECTION
   ============================================ */

.process-flow-container {
    padding: 120px 8vw;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}
}

.process-flow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43, 183, 218, 0.5), transparent);
}

.process-flow-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.process-flow-intro .section-header {
    margin-bottom: 16px;
}

.process-flow-intro .subtext {
    font-size: 20px;
    color: var(--muted);
}

/* SPIRAL PROCESS LAYOUT */
.spiral-process {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px 80px;
}

/* FLOW STEPS */
.flow-step {
    position: relative;
    margin-bottom: 120px;
}

/* Alternating pattern - zigzag */
.flow-step[data-step="1"],
.flow-step[data-step="3"],
.flow-step[data-step="5"] {
    padding-left: 0;
    padding-right: 40%;
}

.flow-step[data-step="2"],
.flow-step[data-step="4"] {
    padding-left: 40%;
    padding-right: 0;
}

.flow-step[data-step="6"] {
    padding-left: 20%;
    padding-right: 20%;
}

/* STEP BOX */
.step-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    border: 2px solid rgba(43, 183, 218, 0.3);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-box:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 183, 218, 0.6);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(43, 183, 218, 0.3);
}

.step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
    border-radius: 24px 24px 0 0;
}

/* Final step special styling */
.step-final {
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.15) 0%, rgba(43, 183, 218, 0.08) 100%);
    border-color: rgba(43, 183, 218, 0.5);
}

.step-final::before {
    background: linear-gradient(90deg, #28C840, var(--cyan-light));
}

/* STEP NUMBER */
.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--navy-deep);
    box-shadow: 0 8px 24px rgba(43, 183, 218, 0.5);
    border: 3px solid var(--navy);
}

/* ANIMATED TEXT */
.animated-text {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 12px;
    margin-top: 12px;
}

.step-box p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

/* ARROW CONNECTORS */
.arrow-connector {
    position: absolute;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.arrow-down-right {
    bottom: -100px;
    right: 20%;
}

.arrow-down-left {
    bottom: -100px;
    left: 20%;
}

.arrow-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.arrow-path {
    stroke: #2BB7DA;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(43, 183, 218, 0.6));
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000; /* Hide path initially */
}

.arrow-head {
    fill: #2BB7DA;
    filter: drop-shadow(0 0 6px rgba(43, 183, 218, 0.8));
    opacity: 0; /* Hide initially until path is drawn */
    transition: opacity 0.3s ease;
}

/* Show arrow head when parent has visible class */
.arrow-connector.visible .arrow-head {
    opacity: 1;
}

/* SUCCESS BADGE */
.success-badge {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.success-circle {
    fill: none;
    stroke: #28C840;
    stroke-width: 3;
}

.success-check {
    fill: none;
    stroke: #28C840;
    stroke-width: 4;
    stroke-linecap: round;
}

/* PROCESS FLOW CTA */
.process-flow-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.process-flow-cta p {
    font-size: 22px;
    color: var(--muted);
    margin-bottom: 32px;
}

/* ============================================
   SERVICES PAGE - COMPREHENSIVE LAYOUT
   ============================================ */

/* SERVICES HERO - extends .page-hero */
.services-hero {
    /* Inherits from .page-hero base class */
}

.services-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: var(--font-alt);
    line-height: 1.2;
}

.services-hero p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* SERVICES PROBLEM SECTION */
.services-problem {
    padding: 100px 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services-problem h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
    text-align: center;
    margin-bottom: 48px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: rgba(255, 95, 87, 0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.problem-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* SERVICES SOLUTION SECTION */
.services-solution {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-solution h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 20px;
}

.solution-intro {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
}

.benefit-check {
    color: var(--cyan);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    font-size: 16px;
    color: var(--white);
}

/* SERVICES OFFERINGS SECTION */
.services-offerings {
    padding: 100px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.offerings-header {
    text-align: center;
    margin-bottom: 60px;
}

.offerings-header h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 12px;
}

.offerings-header p {
    font-size: 18px;
    color: #4a5568;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-card {
    padding: 40px 32px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(43, 183, 218, 0.3);
}

.offering-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 16px;
}

.offering-card h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 12px;
}

.offering-outcome {
    font-size: 15px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4e8ef;
}

.offering-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offering-details li {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.5;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.offering-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 600;
}

/* SERVICES PROCESS SECTION */
.services-process {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 12px;
}

.process-header p {
    font-size: 18px;
    color: var(--muted);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
}

.process-step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-deep);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

.process-step-arrow {
    font-size: 28px;
    color: var(--cyan);
    align-self: center;
    margin-top: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Fallback for when GSAP hasn't loaded yet */
.process-step-arrow::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    position: absolute;
    margin-left: -4px;
    margin-top: -30px;
}

/* SERVICES TESTIMONIALS */
.services-testimonials {
    padding: 100px 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.services-testimonials .testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-testimonials .testimonials-header h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
}

/* SERVICES PRICING */
.services-pricing {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-pricing h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 20px;
}

.pricing-intro {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 48px;
}

.pricing-tier-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(43, 183, 218, 0.3);
}

.pricing-tier-alt {
    margin-top: 40px;
    color: var(--muted);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-details-alt {
    opacity: 0.85;
}

.pricing-tier-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 40px;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-align: left;
}

.pricing-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pricing-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyan);
}

.pricing-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 2px;
}

.pricing-cta-text {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 24px;
}

/* PRICING PACKAGES - New Design */
.pricing-package {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-package-primary {
    border-color: rgba(43, 183, 218, 0.3);
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.pricing-package-secondary {
    opacity: 0.9;
}

.pricing-package-addon {
    border-color: rgba(255, 200, 100, 0.3);
    background: linear-gradient(135deg, rgba(255, 200, 100, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
}

.package-addon-label {
    display: inline-block;
    background: linear-gradient(135deg, #f0b429 0%, #e09422 100%);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.package-header {
    margin-bottom: 16px;
}

.package-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.package-tagline {
    font-size: 15px;
    color: var(--cyan);
    font-style: italic;
    margin: 0;
}

.package-description {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.package-includes {
    margin-bottom: 24px;
}

.package-includes h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.package-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-includes li {
    font-size: 14px;
    color: var(--muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.package-pricing {
    margin-bottom: 24px;
}

.package-pricing h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.package-pricing .pricing-details {
    margin-bottom: 0;
}

.package-best-for {
    font-size: 14px;
    color: var(--gray);
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin: 0;
}

.package-best-for strong {
    color: var(--cyan);
}

/* Additional Costs Section */
.pricing-additional {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-additional h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.pricing-additional ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pricing-additional li {
    font-size: 14px;
    color: var(--gray);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

/* Fit Note Section */
.pricing-fit-note {
    background: linear-gradient(135deg, rgba(10, 25, 39, 0.8) 0%, rgba(6, 16, 26, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-fit-note h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.pricing-fit-note p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 12px;
}

.pricing-fit-note ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.pricing-fit-note li {
    font-size: 14px;
    color: var(--gray);
    padding: 6px 0 6px 20px;
    position: relative;
}

.pricing-fit-note li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.fit-conclusion {
    font-weight: 600;
    color: var(--cyan) !important;
    margin-bottom: 0 !important;
}

/* SERVICES FAQ */
.services-faq {
    padding: 100px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

/* SERVICES FINAL CTA */
.services-final-cta {
    padding: 100px 80px;
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.15) 0%, rgba(10, 25, 39, 0.95) 50%, rgba(6, 16, 26, 1) 100%);
    position: relative;
    overflow: hidden;
}

.services-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 183, 218, 0.12) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.services-final-cta .final-cta-content {
    position: relative;
    z-index: 1;
}

.services-final-cta h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 16px;
}

.services-final-cta p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
}

/* Legacy services header (keep for compatibility) */
.services-header {
    padding: 140px 80px 100px;
    text-align: center;
    background: 
        radial-gradient(circle at 25% 25%, rgba(43,183,218,0.2), transparent 40%),
        radial-gradient(circle at 75% 20%, rgba(43,183,218,0.15), transparent 35%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.services-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: var(--font-alt);
}

.services-header p {
    font-size: 20px;
    color: var(--muted);
}

.services-grid {
    padding: 100px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    color: var(--navy);
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    padding: 48px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border-radius: 20px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e4e8ef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail:hover::before {
    transform: scaleX(1);
}

.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: rgba(43, 183, 218, 0.3);
}

.service-detail h3 {
    margin-bottom: 16px;
    font-size: 26px;
    color: var(--navy);
    font-weight: 700;
    font-family: var(--font-alt);
}

.service-detail p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 17px;
}
    font-size: 17px;
}

/* CONTACT PAGE - extends .page-hero */
.contact-header {
    /* Inherits from .page-hero base class */
}

.contact-header-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header h1 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 800;
    font-family: var(--font-alt);
}

.contact-header p {
    font-size: 16px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-spanish {
    font-size: 16px;
    color: var(--cyan);
    font-weight: 600;
    margin-top: 16px;
}

.calendly-skip-btn {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 17px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(43, 183, 218, 0.35);
}

.calendly-skip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(43, 183, 218, 0.45);
}

.skip-icon {
    font-size: 20px;
}

/* WHAT HAPPENS NEXT TIMELINE */
.contact-timeline {
    padding: 60px 80px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-alt) 100%);
    text-align: center;
}

.contact-timeline h2 {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 40px;
}

.timeline-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    flex: 1;
    max-width: 260px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(43, 183, 218, 0.2);
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: var(--cyan);
    color: var(--navy-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 16px;
}

.timeline-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
}

.timeline-arrow {
    font-size: 24px;
    color: var(--cyan);
    flex-shrink: 0;
}

.contact-form-section {
    padding: 80px 80px 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    color: var(--navy);
    display: flex;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border: 2px solid #e4e8ef;
    border-radius: 12px;
    font-size: 17px;
    font-family: var(--font-main);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    color: var(--navy);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(43, 183, 218, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #FF5F57;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

/* Loading spinner for submit button */
.contact-form button[type="submit"]:disabled::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

.form-consent-box {
    background: rgba(43, 183, 218, 0.05);
    border: 1px solid rgba(43, 183, 218, 0.15);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 8px;
}

.privacy-note {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.privacy-note:last-child {
    margin-bottom: 0;
}

.privacy-note a {
    color: var(--cyan);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

.form-legal {
    font-size: 12px;
    color: #64748b;
    margin-top: 12px;
    text-align: center;
}

.form-legal a {
    color: var(--cyan);
    text-decoration: none;
}

.form-legal a:hover {
    text-decoration: underline;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   ABOUT PAGE - NARRATIVE STRUCTURE
   ============================================ */

/* ABOUT HERO */
.about-hero-new {
    padding: 90px 80px 40px;
    text-align: center;
    background:
        radial-gradient(circle at 35% 25%, rgba(43,183,218,0.15), transparent 40%),
        radial-gradient(circle at 65% 15%, rgba(43,183,218,0.1), transparent 35%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-new h1 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 800;
    font-family: var(--font-alt);
    line-height: 1.2;
}

.about-hero-new p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.6;
}

/* ORIGIN STORY */
.about-story {
    padding: 100px 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-story h2 {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 32px;
    text-align: center;
}

.story-text p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* BACKGROUND SECTION */
.about-background {
    padding: 100px 80px;
    background: #ffffff;
}

/* Founder Story Box - labeled container */
.founder-story-box {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px; /* Space for the label above */
    position: relative;
    padding: 40px;
    border: 2px solid rgba(43, 183, 218, 0.25);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(43, 183, 218, 0.03) 0%, transparent 100%);
}

.founder-label {
    position: absolute;
    top: -14px;
    left: 40px;
    background: #ffffff;
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    z-index: 1; /* Ensure label is above border */
}

.background-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.background-image {
    flex-shrink: 0;
    text-align: center;
}

.background-image img {
    width: 420px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(10, 25, 39, 0.18);
}

.background-caption {
    font-size: 15px;
    color: #6b7a8c;
    font-style: italic;
    margin-top: 16px;
    line-height: 1.6;
    max-width: 100%; /* Match parent container width */
    text-align: center;
}

.background-text {
    flex: 1;
}

.background-text p {
    font-size: 20px;
    color: #4a5568;
    line-height: 2;
}

/* BACKGROUND PROOF PHOTOS */
.background-proof {
    margin-top: 60px;
    text-align: center;
    overflow: hidden; /* Contain images within section */
}

.proof-photos {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden; /* Ensure images don't overflow container */
}

.proof-photos img {
    flex: 1;
    max-width: 420px;
    height: 300px;
    object-fit: cover;
    object-position: center 60%; /* Focus lower on image - less sky, more person/roof */
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(10, 25, 39, 0.18);
}

/* Left image (aerial) - focus on the roof and person, not sky */
.proof-photos img:first-child {
    object-position: center 70%; /* Focus toward bottom of image */
}

/* Right image (roof2.png) - move viewpoint UP to see person */
.proof-photos img:last-child {
    object-position: center 20%; /* Focus on upper portion of image */
}

.proof-caption {
    margin-top: 20px;
    font-size: 16px;
    color: #6b7a8c;
    font-style: italic;
}

/* MISSION & VALUES */
.about-mission {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-block {
    text-align: center;
    margin-bottom: 60px;
}

.mission-block h2 {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 16px;
}

.mission-block p {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.values-block h2 {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 32px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-item {
    padding: 28px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-align: center;
}

.value-item h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-alt);
    color: var(--cyan);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
}

/* WHO WE SERVE */
.about-audience {
    padding: 100px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.audience-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-audience h2 {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 16px;
}

.audience-intro {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
}

.audience-traits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.trait-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 10px;
}

.trait-icon {
    color: var(--cyan);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.trait-item span:last-child {
    font-size: 16px;
    color: var(--navy);
}

.audience-note {
    margin-top: 24px;
    font-size: 15px;
    color: #6b7a8c;
    text-align: center;
    font-style: italic;
}

/* SOCIAL PROOF STATS */
.about-proof {
    padding: 80px 80px;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.proof-content {
    max-width: 900px;
    margin: 0 auto;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.proof-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--cyan);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* TEAM */
.about-team {
    padding: 100px 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-team h2 {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
    text-align: center;
    margin-bottom: 48px;
}

/* Click hint - hidden on desktop, shows on mobile/tablet */
.team-click-hint {
    display: none;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin: -32px 0 20px 0;
    font-style: italic;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.team-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: rgba(43, 183, 218, 0.3);
}

/* TEAM SECTION - UPDATED WITH IMAGE PLACEHOLDER */
.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.15), rgba(43, 183, 218, 0.05));
    color: var(--cyan);
    font-weight: 800;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 32px rgba(43, 183, 218, 0.2);
    overflow: hidden;
    border: 3px solid rgba(43, 183, 218, 0.3);
    position: relative;
}

/* Add subtle gradient overlay for depth */
.team-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.team-photo.has-image {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.1), rgba(10, 25, 39, 0.05));
    box-shadow: 
        0 12px 32px rgba(43, 183, 218, 0.25),
        inset 0 2px 4px rgba(255,255,255,0.1);
    border: 3px solid var(--cyan);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* Hover effects for team cards */
.team-card:hover .team-photo.has-image {
    box-shadow: 
        0 16px 48px rgba(43, 183, 218, 0.35),
        inset 0 2px 6px rgba(255,255,255,0.15);
    border-color: var(--cyan-light);
}

.team-card:hover .team-photo:not(.has-image) {
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.25), rgba(43, 183, 218, 0.1));
    box-shadow: 0 16px 40px rgba(43, 183, 218, 0.3);
}

.team-info h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

/* Make team cards clickable */
.team-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:active {
    transform: scale(0.98);
}

/* ============================================
   TEAM MEMBER MODAL
   ============================================ */

.team-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 16, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.team-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.team-modal {
    background: var(--white);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.team-modal-overlay.active .team-modal {
    transform: scale(1);
}

.team-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.team-modal-close:hover {
    background: var(--cyan);
    color: var(--white);
    transform: rotate(90deg);
}

.team-modal-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    padding: 60px;
}

.team-modal-photo {
    position: sticky;
    top: 60px;
    height: fit-content;
}

.team-modal-photo img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(43, 183, 218, 0.3);
}

.team-modal-info h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.team-modal-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-modal-email {
    display: inline-block;
    color: var(--cyan);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(43, 183, 218, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.team-modal-email:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-2px);
}

.team-modal-bio {
    margin-bottom: 32px;
    line-height: 1.8;
    color: #4a5568;
}

.team-modal-bio p {
    margin-bottom: 16px;
    font-size: 16px;
}

.team-modal-skills h3,
.team-modal-achievements h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-alt);
    color: var(--navy-deep);
    margin-bottom: 16px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.skill-badge {
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.15), rgba(43, 183, 218, 0.05));
    border: 1px solid rgba(43, 183, 218, 0.3);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s ease;
}

.skill-badge:hover {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 183, 218, 0.4);
}

.team-modal-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-modal-achievements li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.team-modal-achievements li:last-child {
    border-bottom: none;
}

.team-modal-achievements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28C840;
    font-weight: 700;
    font-size: 18px;
}

/* Responsive modal */
@media (max-width: 768px) {
    .team-modal-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 24px;
    }

    .team-modal-photo {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .team-modal-info h2 {
        font-size: 28px;
    }

    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-modal-close {
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .team-modal {
        border-radius: 16px;
    }

    .team-modal-content {
        padding: 32px 20px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT CTA */
.about-cta {
    padding: 100px 80px;
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.15) 0%, rgba(10, 25, 39, 0.95) 50%, rgba(6, 16, 26, 1) 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 183, 218, 0.12) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.about-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Legacy about styles (keep for compatibility) */
.about-hero {
    padding: 140px 80px 100px;
    text-align: center;
    background: 
        radial-gradient(circle at 35% 25%, rgba(43,183,218,0.2), transparent 40%),
        radial-gradient(circle at 65% 15%, rgba(43,183,218,0.15), transparent 35%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: var(--font-alt);
}

.about-hero p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
    font-size: 20px;
}

.about-grid {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    color: var(--navy);
    padding: 80px 80px 120px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border: 1px solid #e4e8ef;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: rgba(43, 183, 218, 0.3);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-photo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.2), rgba(10, 25, 39, 0.8));
    border: 3px solid rgba(43, 183, 218, 0.3);
    color: var(--white);
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(43, 183, 218, 0.3);
}

.profile-role {
    color: #56606c;
    font-weight: 600;
    margin-top: 4px;
    font-size: 15px;
}

.about-card h3 {
    margin-bottom: 0;
    font-size: 24px;
    font-family: var(--font-alt);
    font-weight: 700;
}

.about-card p {
    color: #3f4957;
    font-size: 17px;
    line-height: 1.6;
}

/* FOOTER */
footer {
    padding: 60px 8vw 40px;
    background: linear-gradient(180deg, rgba(6,16,26,0.98) 0%, rgba(6,16,26,1) 100%);
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0;
    width: 100%;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto 40px;
    gap: clamp(20px, 4vw, 48px);
    max-width: 1200px;
    padding: 0 12px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 1;
}


.footer-disclaimer {
    flex: 1;
    text-align: left;
    padding: 0;
    max-width: 760px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 12px 0;
    letter-spacing: 0.01em;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-contact {
    font-size: 13px;
    color: var(--gray);
}

.footer-contact a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-spanish {
    font-size: 13px;
    color: var(--cyan);
    font-weight: 600;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 12px 0;
}

.footer-copy {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    flex-shrink: 0;
}

/* Hide footer toggle on desktop */
.footer-links-toggle {
    display: none;
}

.footer-links {
    display: flex;
    gap: clamp(16px, 2.5vw, 32px);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Legacy footer-content for simpler pages */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
}

/* Final CTA spacing */
.final-cta-spaced {
    margin-bottom: 0;
}

/* TALK TO A HUMAN - FLOATING BUTTON & MODAL */
.talk-human-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--cyan) 0%, #1a9ab8 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(43, 183, 218, 0.4);
    transition: all 0.3s ease;
}

.talk-human-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(43, 183, 218, 0.5);
}

.talk-human-btn:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.talk-human-icon {
    font-size: 20px;
}

/* Popup positioned near button */
.talk-human-popup {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: white;
    border-radius: 20px;
    padding: 28px;
    width: 340px;
    max-width: calc(100vw - 48px);
    z-index: 10000;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.talk-human-popup:not([hidden]) {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.talk-human-popup[hidden] {
    display: block !important;
}

.talk-human-popup h2 {
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 6px;
}

.talk-human-popup .talk-human-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.talk-human-popup .talk-human-hours {
    font-size: 12px;
    color: #888;
    margin-top: 16px;
    margin-bottom: 0;
}

.talk-human-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.talk-human-close:hover {
    background: #eee;
    color: var(--navy);
}

.talk-human-close:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.talk-human-modal h2 {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 8px;
}

.talk-human-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Action Buttons */
/* Hide options/form when hidden attribute is present */
.talk-human-actions[hidden],
.talk-human-form[hidden] {
    display: none !important;
}

.talk-human-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.talk-human-action {
    flex: 1 1 calc(50% - 5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.talk-human-action .action-icon {
    font-size: 22px;
}

.talk-human-action .action-text {
    font-size: 12px;
}

.talk-human-action:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.talk-human-call {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.talk-human-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.talk-human-text {
    background: linear-gradient(135deg, var(--cyan) 0%, #1a9ab8 100%);
    color: white;
}

.talk-human-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 183, 218, 0.4);
}

.talk-human-computer {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

.talk-human-computer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.action-icon {
    font-size: 28px;
}

.action-text {
    font-size: 15px;
}

.talk-human-hours {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* Computer Form */
.talk-human-form {
    text-align: left;
}

.talk-human-form .form-intro {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    text-align: center;
}

.talk-human-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.talk-human-form input,
.talk-human-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.talk-human-form input:focus,
.talk-human-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
}

.talk-human-form textarea {
    min-height: 80px;
    resize: vertical;
    margin-bottom: 12px;
}

.talk-human-send {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--cyan) 0%, #1a9ab8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.talk-human-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 183, 218, 0.4);
}

.talk-human-form .form-disclaimer {
    font-size: 11px;
    color: #888;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 12px;
}

.back-to-options {
    background: none;
    border: none;
    color: var(--cyan);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.back-to-options:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .talk-human-label {
        display: none;
    }

    .talk-human-btn {
        padding: 14px;
        border-radius: 50%;
    }

    .talk-human-modal {
        padding: 32px 24px;
    }

    .talk-human-actions {
        flex-direction: column;
        gap: 12px;
    }

    .talk-human-action {
        flex-direction: row;
        justify-content: center;
        padding: 18px 24px;
    }
}

/* 3D DASHBOARD */
.dashboard-3d {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: none;
    will-change: transform;
}

.dashboard-3d svg {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.dashboard-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 10px;
    font-style: italic;
}

.hero-image-container:hover .dashboard-3d {
    filter: drop-shadow(0 0 40px rgba(43, 183, 218, 0.4));
}

/* RESPONSIVE */
/* Note: Graph should stay on RIGHT until it's hidden at 1024px */
@media (max-width: 1024px) {
    .page-hero {
        min-height: 400px;
        padding: 100px 60px 60px;
    }

    .hero {
        gap: 60px;
        padding: 100px 60px 80px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-title-line {
        font-size: 52px;
    }

    /* Only stack with visual on top when it's a single column (hidden anyway at this point) */
    .hero-visual {
        order: -1;
    }

    .social-proof {
        grid-template-columns: 1fr;
        padding: 32px 60px;
    }
}

@media (max-width: 800px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        --header-height: 80px;
        flex-wrap: wrap;
        padding: 12px 20px;
        overflow: visible;
    }

    .nav-links.active {
        backdrop-filter: blur(12px) saturate(160%);
        -webkit-backdrop-filter: blur(12px) saturate(160%);
    }

    .nav-logo img {
        height: 60px;
        max-height: 60px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: rgba(6, 16, 26, 0.98);
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        padding: 20px 24px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        padding: 16px 20px;
        text-align: left;
        border-radius: 0;
        position: relative;
    }

    .nav-links a.active::after {
        left: 8px;
        bottom: 50%;
        transform: translateY(50%);
    }

    /* Responsive page-hero base */
    .page-hero {
        min-height: 360px;
        padding: 90px 32px 50px;
    }

    .hero {
        min-height: auto;
        padding: 72px 32px 56px;
        gap: 40px;
        text-align: center;
    }

    .hero-top {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .hero-title-line {
        font-size: 40px;
        text-align: center;
    }

    .hero-arrow {
        text-align: center;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 90%;
        margin: 0 auto 32px auto;
        text-align: center;
    }

    .cta-btn-large {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
    }

    .hero-values-heading {
        font-size: 28px;
        margin: 0 0 20px 0;
    }

    .hero-values {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-value-box {
        padding: 20px;
    }

    .hero-value-box h3 {
        font-size: 16px;
    }

    .hero-value-box p {
        font-size: 13px;
    }

    .hero-image-container {
        max-width: 100%;
        width: 100%;
    }
    
    .metrics,
    .values,
    .feature-grid,
    .services-grid,
    .about-grid,
    .contact-form-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .services-preview h2,
    .services-header h1,
    .contact-header h1,
    .about-hero h1 {
        font-size: 38px;
    }
    
    .metric h4 {
        font-size: 42px;
    }

    .social-proof {
        padding: 28px 40px;
        gap: 20px;
    }

    /* RESPONSIVE - CONTACT TIMELINE */
    .contact-timeline {
        padding: 50px 24px;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-step {
        max-width: 100%;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    /* RESPONSIVE - PROCESS FLOW */
    .process-flow-container {
        padding: 80px 24px;
    }

    .process-flow-intro .qa-header h2 {
        font-size: 32px;
    }

    .spiral-process {
        padding: 20px 10px 40px;
    }

    .flow-step {
        margin-bottom: 100px;
    }

    /* Stack all steps vertically on mobile */
    .flow-step[data-step="1"],
    .flow-step[data-step="2"],
    .flow-step[data-step="3"],
    .flow-step[data-step="4"],
    .flow-step[data-step="5"],
    .flow-step[data-step="6"] {
        padding-left: 0;
        padding-right: 0;
    }

    .step-box {
        padding: 32px 24px;
    }

    .animated-text {
        font-size: 24px;
    }

    .arrow-connector {
        display: none;
    }

    /* RESPONSIVE - Q&A HEADERS */
    .qa-header h2 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .qa-label {
        font-size: 12px;
    }

    .offer-section .section-header {
        padding: 0 40px;
    }

    /* RESPONSIVE - FOOTER */
    footer {
        padding: 48px 40px 32px;
    }

    .footer-main {
        flex-direction: column;
        gap: 24px;
        text-align: left;
        align-items: flex-start;
    }

    .footer-brand {
        justify-self: flex-start;
    }

    .footer-disclaimer {
        max-width: 100%;
        text-align: left;
    }

    .footer-spacer {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 16px;
    }

    /* RESPONSIVE - TESTIMONIALS */
    .testimonials-section {
        padding: 80px 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* RESPONSIVE - DIFFERENTIATOR */
    .differentiator-section {
        padding: 80px 40px;
    }

    .diff-comparison {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .diff-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    /* RESPONSIVE - FINAL CTA */
    .final-cta {
        padding: 70px 40px;
    }

    .cta-problem {
        font-size: 26px;
    }

    .cta-solution {
        font-size: 16px;
    }

    /* RESPONSIVE - SERVICES PAGE */
    /* Services hero uses .page-hero base responsive styles */

    .services-hero h1 {
        font-size: 36px;
    }

    .services-problem,
    .services-solution,
    .services-offerings,
    .services-process,
    .services-testimonials,
    .services-pricing,
    .services-faq,
    .services-final-cta {
        padding: 80px 40px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }

    .process-step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .pricing-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .pricing-label,
    .pricing-value,
    .pricing-note {
        text-align: center;
        min-width: auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    /* RESPONSIVE - ABOUT PAGE */
    .about-hero-new {
        padding: 120px 40px 80px;
    }

    .about-hero-new h1 {
        font-size: 36px;
    }

    .about-story,
    .about-background,
    .about-mission,
    .about-audience,
    .about-proof,
    .about-team,
    .about-cta {
        padding: 80px 40px;
    }

    .background-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .background-image img {
        width: 320px;
        max-width: 100%;
    }

    .background-text p {
        font-size: 18px;
        line-height: 1.9;
    }

    .background-proof {
        margin-top: 40px;
    }

    .proof-photos {
        flex-direction: column;
        gap: 16px;
    }

    .proof-photos img {
        max-width: 100%;
        height: 220px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        flex-direction: column;
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
    }

    .team-photo {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 340px;
        padding: 80px 24px 48px;
    }

    .hero-title-line {
        font-size: 32px;
    }

    .nav-logo img {
        height: 52px;
        max-height: 52px;
    }
    
    .metrics,
    .values,
    .feature-grid,
    .services-grid,
    .about-grid,
    .contact-form-section {
        padding-left: 24px;
        padding-right: 24px;
        gap: 24px;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }

    .process-flow-intro h2 {
        font-size: 32px;
    }

    .animated-text {
        font-size: 22px;
    }

    .step-box p {
        font-size: 16px;
    }

    /* RESPONSIVE 480 - WHY US */
    .why-us-section {
        padding: 60px 24px;
    }

    .why-us-content h2 {
        font-size: 24px;
    }

    .why-us-item p {
        font-size: 16px;
    }

    /* RESPONSIVE 480 - FINAL CTA */
    .final-cta {
        padding: 60px 24px;
    }

    .final-cta h2 {
        font-size: 26px;
    }

    .cta-subtext {
        font-size: 16px;
    }

    .cta-action .cta-btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .proof-item strong {
        font-size: 24px;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(6, 16, 26, 0.98) 0%, rgba(6, 16, 26, 1) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(43, 183, 218, 0.2);
    padding: 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner[hidden] {
    display: block;
    visibility: hidden;
}

.cookie-banner.visible {
    transform: translateY(0);
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
    padding: 24px 8vw;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px 0;
}

.cookie-copy {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: var(--navy-deep);
    box-shadow: 0 4px 16px rgba(43, 183, 218, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 183, 218, 0.4);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.cookie-link {
    font-size: 13px;
    color: var(--cyan);
    text-decoration: none;
    margin-left: 8px;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 5vw;
        gap: 16px;
    }

    .cookie-text {
        min-width: 100%;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-link {
        margin-left: 0;
        margin-top: 8px;
        display: block;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================ */

/* Reduce 3D dashboard complexity on mobile devices for better performance */
@media (max-width: 800px) {
    #dashboard3d {
        transform: none !important;
        transition: none !important;
    }

    /* Disable 3D mouse effect on mobile for performance */
    .hero-visual {
        transform: none !important;
    }
}

/* Very small phones (iPhone SE, older Android) */
@media screen and (max-width: 375px) {
    .hero {
        min-height: auto;
        padding: 56px 16px 44px;
        row-gap: 24px;
    }

    .hero-title-line {
        font-size: 28px;
        line-height: 1.15;
    }

    .hero-arrow {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }

    .nav {
        padding: 8px 12px;
    }

    .nav-logo img {
        height: 50px;
        max-height: 50px;
    }
}

/* Small phones (320px - 480px) */
@media screen and (max-width: 480px) {
    /* Collapsible Footer Legal Links */
    .footer-links-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: var(--muted);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 12px;
    }

    .footer-links-toggle:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(43, 183, 218, 0.3);
    }

    .footer-links-toggle::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .footer-links-toggle.active::after {
        transform: rotate(180deg);
    }

    /* Footer link compression */
    .footer-links {
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        text-align: center;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-links.active {
        display: grid;
        max-height: 500px;
    }

    .footer-links a {
        font-size: 11px;
        padding: 10px 8px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 6px;
    }

    .footer-main {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .footer-brand {
        margin: 0;
    }

    .footer-disclaimer {
        padding: 0;
        text-align: left;
    }

    .footer-disclaimer p {
        font-size: 11px;
    }

    .footer-spacer {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copy {
        font-size: 12px;
    }

    /* Navigation comfort */
    .nav {
        padding: 10px 16px;
    }

    .nav-links {
        top: 76px;
        padding: 16px;
        gap: 6px;
    }

    .mobile-menu-toggle {
        gap: 6px;
        padding: 10px;
    }

    /* Hero adjustments */
    .hero {
        min-height: auto;
        padding: 64px 5vw 52px;
        row-gap: 28px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-title-line {
        font-size: 30px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-visual {
        width: min(100%, 340px);
    }

    .hero-image-container {
        max-width: 340px;
        border-radius: 22px;
    }

    /* Section padding reduction */
    section {
        padding: 60px 5vw;
    }

    .qa-section {
        padding: 60px 5vw;
    }

    /* CTA buttons */
    .cta-btn-large {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   TABLET RESPONSIVE OVERHAUL
   481px - 1024px (iPad Mini, iPad Air, Surface)
   ============================================ */

/* Small Tablets / Large Phones (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    /* ---- HIDE DASHBOARD GRAPH ---- */
    .hero-visual,
    .dashboard-3d,
    .dashboard-disclaimer {
        display: none !important;
    }

    /* ---- HERO - Full width centered ---- */
    .hero {
        padding: 60px 5vw 50px !important;
    }

    .hero-top {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title-line {
        font-size: 32px !important;
    }

    .hero-content p {
        font-size: 15px !important;
        max-width: 100%;
    }

    /* ---- PAGE HERO ---- */
    .page-hero {
        min-height: 200px;
        padding: 80px 5vw 50px;
    }

    .page-hero h1 {
        font-size: 28px !important;
    }

    /* ---- TYPOGRAPHY SCALING ---- */
    h1 {
        font-size: 28px !important;
    }

    h2, .section-title {
        font-size: 22px !important;
    }

    h3 {
        font-size: 17px !important;
    }

    p {
        font-size: 15px !important;
    }

    section {
        padding: 50px 5vw !important;
    }

    /* ---- WHAT YOU GET - 3 across but smaller ---- */
    .hero-values {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }

    .hero-value-box {
        padding: 14px 12px !important;
    }

    .hero-value-box h3 {
        font-size: 12px !important;
    }

    .hero-value-box p {
        font-size: 10px !important;
    }

    /* ---- WHAT MAKES US DIFFERENT - 2x2 grid ---- */
    .differentiator-grid {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 12px !important;
    }

    .diff-card {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
        padding: 16px 14px !important;
    }

    .diff-card h3 {
        font-size: 13px !important;
    }

    .diff-card p {
        font-size: 11px !important;
    }

    /* ---- PROCESS FLOW - ZIGZAG PRESERVED ---- */
    .spiral-process {
        padding: 20px 10px !important;
    }

    .flow-step {
        margin-bottom: 60px !important;
    }

    .flow-step[data-step="1"],
    .flow-step[data-step="3"],
    .flow-step[data-step="5"] {
        padding-left: 0 !important;
        padding-right: 20% !important;
    }

    .flow-step[data-step="2"],
    .flow-step[data-step="4"] {
        padding-left: 20% !important;
        padding-right: 0 !important;
    }

    .flow-step[data-step="6"] {
        padding-left: 10% !important;
        padding-right: 10% !important;
    }

    .step-box {
        padding: 16px 14px !important;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .animated-text {
        font-size: 14px !important;
    }

    .step-box p {
        font-size: 11px !important;
    }

    /* ---- SHOW ARROWS ---- */
    .arrow-connector {
        display: block !important;
        width: 60px !important;
        height: 60px !important;
    }

    .arrow-down-right {
        bottom: -45px !important;
        right: 25% !important;
    }

    .arrow-down-left {
        bottom: -45px !important;
        left: 25% !important;
    }

    .arrow-svg {
        display: block !important;
    }

    /* ---- JOHN'S STORY - Stack vertically ---- */
    .about-background {
        padding: 50px 5vw !important;
    }

    .founder-story-box {
        padding: 24px 20px !important;
    }

    .background-content {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .background-image {
        width: 100%;
        text-align: center;
    }

    .background-image img {
        width: 280px !important;
        max-width: 80%;
        margin: 0 auto;
    }

    .background-text {
        width: 100%;
    }

    .background-text p {
        font-size: 15px !important;
        line-height: 1.7;
    }

    /* ---- PROOF PHOTOS - Side by side, contained ---- */
    .proof-photos {
        flex-direction: row !important;
        gap: 12px !important;
    }

    .proof-photos img {
        flex: 1 !important;
        max-width: 48% !important;
        height: 180px !important;
        object-fit: cover !important;
        object-position: center 65% !important; /* Focus on person, less sky */
        border-radius: 10px !important;
    }

    /* Left image (aerial) - focus on roof/person */
    .proof-photos img:first-child {
        object-position: center 70% !important;
    }

    /* Right image (roof2.png) - viewpoint UP to see person */
    .proof-photos img:last-child {
        object-position: center 20% !important;
    }

    /* ---- MEET THE TEAM - 2 across ---- */
    .team-click-hint {
        display: block !important;
        font-size: 11px !important;
        margin: -20px 0 16px 0 !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .team-card {
        padding: 16px !important;
    }

    .team-photo {
        width: 60px !important;
        height: 60px !important;
    }

    .team-card h3 {
        font-size: 14px !important;
    }

    .team-role {
        font-size: 11px !important;
    }

    .team-bio {
        font-size: 11px !important;
        line-height: 1.4;
    }

    /* ---- VALUES GRID - 3 across ---- */
    .values-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }

    .value-item {
        padding: 14px 12px !important;
    }

    .value-item h3 {
        font-size: 12px !important;
    }

    .value-item p {
        font-size: 10px !important;
    }

    /* ---- SERVICES PAGE ---- */
    .problem-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .problem-item {
        padding: 14px !important;
    }

    .problem-item h3 {
        font-size: 13px !important;
    }

    .problem-item p {
        font-size: 11px !important;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .offering-card {
        padding: 16px !important;
    }

    .offering-card h3 {
        font-size: 14px !important;
    }

    .offering-card p {
        font-size: 11px !important;
    }

    /* ---- PRICING / INVESTMENT ---- */
    .pricing-card,
    .investment-section {
        padding: 30px 24px !important;
    }

    .price-display {
        font-size: 36px !important;
    }

    /* New pricing packages responsive */
    .pricing-package {
        padding: 24px 20px !important;
    }

    .package-header h3 {
        font-size: 18px !important;
    }

    .package-tagline {
        font-size: 13px !important;
    }

    .package-description {
        font-size: 13px !important;
    }

    .package-includes li {
        font-size: 12px !important;
        padding: 6px 0 6px 20px !important;
    }

    .pricing-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
        padding: 14px !important;
    }

    .pricing-label {
        font-size: 13px !important;
        min-width: unset !important;
    }

    .pricing-value {
        font-size: 16px !important;
        text-align: left !important;
    }

    .pricing-note {
        font-size: 11px !important;
        min-width: unset !important;
        text-align: left !important;
    }

    .pricing-additional {
        padding: 18px !important;
    }

    .pricing-additional ul {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .pricing-fit-note {
        padding: 20px !important;
    }

    .pricing-fit-note h4 {
        font-size: 16px !important;
    }

    .pricing-fit-note p,
    .pricing-fit-note li {
        font-size: 13px !important;
    }

    /* ---- FINAL CTA - Gradient Animation ---- */
    .final-cta {
        padding: 50px 5vw !important;
        position: relative !important;
        overflow: hidden !important; /* Contain gradient within box */
    }

    .final-cta::before {
        content: '' !important;
        position: absolute !important;
        top: -25% !important;
        left: -25% !important;
        width: 150% !important;
        height: 150% !important;
        background: radial-gradient(circle, rgba(43, 183, 218, 0.12) 0%, transparent 60%) !important;
        animation: rotate 20s linear infinite !important;
        pointer-events: none;
    }

    .cta-problem {
        font-size: 22px !important;
    }

    .cta-solution {
        font-size: 14px !important;
    }

    /* ---- GUARANTEE BOX - Smaller ---- */
    .guarantee-box {
        padding: 28px 24px !important;
    }

    .guarantee-box h3 {
        font-size: 18px !important;
    }

    .guarantee-box p {
        font-size: 13px !important;
    }

    /* ---- CONTACT PAGE ---- */
    .contact-header {
        padding: 80px 5vw 50px !important;
        min-height: auto !important;
    }

    .contact-header h1 {
        font-size: 26px !important;
    }

    .contact-timeline h2 {
        font-size: 18px !important;
    }

    .timeline-step {
        padding: 14px !important;
    }

    .timeline-step h3 {
        font-size: 13px !important;
    }

    .timeline-step p {
        font-size: 11px !important;
    }

    /* ---- FOOTER - COLLAPSIBLE LINKS ---- */
    .footer-links-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: var(--muted);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 12px;
    }

    .footer-links-toggle::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .footer-links-toggle.active::after {
        transform: rotate(180deg);
    }

    .footer-links {
        display: none;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        text-align: center;
        width: 100%;
    }

    .footer-links.active {
        display: grid;
    }

    .footer-links a {
        font-size: 12px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 6px;
    }

    .footer-main {
        flex-direction: column;
        gap: 24px;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* ---- NAV / HEADER ---- */
    .nav {
        padding: 0 20px;
    }

    .nav-logo img {
        height: 40px;
        max-height: 40px;
    }
}

/* Medium Tablets (769px - 1024px) - iPad Air, Surface Pro */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* ---- HIDE DASHBOARD GRAPH ---- */
    .hero-visual,
    .dashboard-3d,
    .dashboard-disclaimer {
        display: none !important;
    }

    /* ---- HERO - Full width centered ---- */
    .hero {
        padding: 70px 6vw 60px !important;
    }

    .hero-top {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title-line {
        font-size: 38px !important;
    }

    .hero-content p {
        font-size: 16px !important;
        max-width: 600px;
        margin: 0 auto 28px auto;
    }

    /* ---- PAGE HERO ---- */
    .page-hero {
        min-height: 220px;
        padding: 90px 6vw 60px;
    }

    .page-hero h1 {
        font-size: 32px !important;
    }

    /* ---- TYPOGRAPHY ---- */
    h1 {
        font-size: 32px !important;
    }

    h2, .section-title {
        font-size: 26px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    p {
        font-size: 16px !important;
    }

    section {
        padding: 60px 6vw !important;
    }

    /* ---- WHAT YOU GET - 3 across ---- */
    .hero-values {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .hero-value-box {
        padding: 18px 16px !important;
    }

    .hero-value-box h3 {
        font-size: 14px !important;
    }

    .hero-value-box p {
        font-size: 12px !important;
    }

    /* ---- WHAT MAKES US DIFFERENT - 2x2 grid ---- */
    .differentiator-grid {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 16px !important;
    }

    .diff-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding: 20px 18px !important;
    }

    .diff-card h3 {
        font-size: 15px !important;
    }

    .diff-card p {
        font-size: 13px !important;
    }

    /* ---- PROCESS FLOW - ZIGZAG ---- */
    .spiral-process {
        padding: 30px 20px !important;
    }

    .flow-step {
        margin-bottom: 70px !important;
    }

    .flow-step[data-step="1"],
    .flow-step[data-step="3"],
    .flow-step[data-step="5"] {
        padding-left: 0 !important;
        padding-right: 18% !important;
    }

    .flow-step[data-step="2"],
    .flow-step[data-step="4"] {
        padding-left: 18% !important;
        padding-right: 0 !important;
    }

    .flow-step[data-step="6"] {
        padding-left: 8% !important;
        padding-right: 8% !important;
    }

    .step-box {
        padding: 20px 18px !important;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .animated-text {
        font-size: 16px !important;
    }

    .step-box p {
        font-size: 13px !important;
    }

    /* ---- SHOW ARROWS ---- */
    .arrow-connector {
        display: block !important;
        width: 70px !important;
        height: 70px !important;
    }

    .arrow-down-right {
        bottom: -50px !important;
        right: 22% !important;
    }

    .arrow-down-left {
        bottom: -50px !important;
        left: 22% !important;
    }

    .arrow-svg {
        display: block !important;
    }

    /* ---- JOHN'S STORY - Stack vertically on tablets for safety ---- */
    .about-background {
        padding: 50px 5vw !important;
    }

    .founder-story-box {
        padding: 28px 24px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .background-content {
        flex-direction: column !important;
        gap: 24px !important;
        align-items: center;
        max-width: 100% !important;
    }

    .background-image {
        width: 100% !important;
        text-align: center !important;
    }

    .background-image img {
        width: 280px !important;
        max-width: 70% !important;
    }

    .background-text {
        width: 100% !important;
        max-width: 100% !important;
    }

    .background-text p {
        font-size: 16px !important;
        line-height: 1.7;
    }

    .background-caption {
        max-width: 280px !important;
        margin: 12px auto 0 !important;
        font-size: 13px !important;
    }

    /* ---- PROOF PHOTOS - Side by side, contained ---- */
    .proof-photos {
        flex-direction: row !important;
        gap: 16px !important;
    }

    .proof-photos img {
        flex: 1 !important;
        max-width: 400px !important;
        height: 220px !important;
        object-fit: cover !important;
        object-position: center 65% !important; /* Focus on person, less sky */
        border-radius: 12px !important;
    }

    /* Left image (aerial) - focus on roof/person */
    .proof-photos img:first-child {
        object-position: center 70% !important;
    }

    /* Right image (roof2.png) - viewpoint UP to see person */
    .proof-photos img:last-child {
        object-position: center 20% !important;
    }

    /* ---- MEET THE TEAM - 2 across ---- */
    .team-click-hint {
        display: block !important;
        font-size: 12px !important;
        margin: -24px 0 20px 0 !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .team-card {
        padding: 20px !important;
    }

    .team-photo {
        width: 70px !important;
        height: 70px !important;
    }

    .team-card h3 {
        font-size: 16px !important;
    }

    .team-role {
        font-size: 13px !important;
    }

    .team-bio {
        font-size: 13px !important;
    }

    /* ---- VALUES GRID - 3 across ---- */
    .values-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .value-item {
        padding: 18px 16px !important;
    }

    .value-item h3 {
        font-size: 14px !important;
    }

    .value-item p {
        font-size: 12px !important;
    }

    /* ---- SERVICES PAGE ---- */
    .problem-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .problem-item {
        padding: 18px !important;
    }

    .problem-item h3 {
        font-size: 15px !important;
    }

    .problem-item p {
        font-size: 13px !important;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .offering-card {
        padding: 20px !important;
    }

    .offering-card h3 {
        font-size: 16px !important;
    }

    .offering-card p {
        font-size: 13px !important;
    }

    /* ---- PRICING / INVESTMENT ---- */
    .pricing-card,
    .investment-section {
        padding: 36px 30px !important;
    }

    .price-display {
        font-size: 40px !important;
    }

    /* New pricing packages responsive */
    .pricing-package {
        padding: 28px 24px !important;
    }

    .package-header h3 {
        font-size: 20px !important;
    }

    .package-tagline {
        font-size: 14px !important;
    }

    .package-description {
        font-size: 14px !important;
    }

    .package-includes li {
        font-size: 13px !important;
    }

    .pricing-item {
        padding: 16px 18px !important;
    }

    .pricing-label {
        font-size: 14px !important;
    }

    .pricing-value {
        font-size: 16px !important;
    }

    .pricing-note {
        font-size: 12px !important;
    }

    .pricing-additional {
        padding: 20px !important;
    }

    .pricing-fit-note {
        padding: 24px !important;
    }

    .pricing-fit-note h4 {
        font-size: 17px !important;
    }

    .pricing-fit-note p,
    .pricing-fit-note li {
        font-size: 14px !important;
    }

    /* ---- HOW IT WORKS - Smaller ---- */
    .services-process {
        padding: 50px 6vw !important;
    }

    .services-process h2 {
        font-size: 24px !important;
    }

    /* ---- FINAL CTA - Gradient Animation ---- */
    .final-cta {
        padding: 60px 6vw !important;
        position: relative !important;
        overflow: hidden !important; /* Contain gradient within box */
    }

    .final-cta::before {
        content: '' !important;
        position: absolute !important;
        top: -25% !important;
        left: -25% !important;
        width: 150% !important;
        height: 150% !important;
        background: radial-gradient(circle, rgba(43, 183, 218, 0.12) 0%, transparent 60%) !important;
        animation: rotate 20s linear infinite !important;
        pointer-events: none;
    }

    .cta-problem {
        font-size: 26px !important;
    }

    .cta-solution {
        font-size: 15px !important;
    }

    /* ---- GUARANTEE BOX ---- */
    .guarantee-box {
        padding: 32px 28px !important;
    }

    .guarantee-box h3 {
        font-size: 20px !important;
    }

    .guarantee-box p {
        font-size: 14px !important;
    }

    /* ---- CONTACT PAGE ---- */
    .contact-header {
        padding: 90px 6vw 60px !important;
        min-height: auto !important;
    }

    .contact-header h1 {
        font-size: 30px !important;
    }

    .contact-timeline h2 {
        font-size: 20px !important;
    }

    .timeline-step {
        padding: 16px !important;
    }

    .timeline-step h3 {
        font-size: 14px !important;
    }

    .timeline-step p {
        font-size: 12px !important;
    }

    /* ---- FOOTER ---- */
    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-main {
        gap: 30px;
    }

    /* ---- NAV / HEADER ---- */
    .nav {
        padding: 0 24px;
    }

    .nav-logo img {
        height: 44px;
        max-height: 44px;
    }
}

/* ============================================
   BROWSER-SPECIFIC FIXES
   ============================================ */

/* Safari flexbox fix */
@supports (-webkit-appearance: none) {
    .footer-main,
    .footer-bottom,
    .nav,
    .hero {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }
}

/* Firefox smooth scroll fix */
@-moz-document url-prefix() {
    html {
        scroll-behavior: smooth;
    }
}

/* IE11 and Edge Legacy fallbacks */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .hero {
        display: -ms-grid;
        -ms-grid-columns: 1fr 1fr;
    }

    .values {
        display: -ms-grid;
        -ms-grid-columns: 1fr 1fr 1fr;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --cyan: #00d4ff;
        --muted: #ffffff;
    }

    .cta-btn,
    .cta-btn-large {
        border: 2px solid currentColor;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode already default - light mode override if needed */
@media (prefers-color-scheme: light) {
    /* Site is already dark themed, no changes needed */
}

/* Print styles */
@media print {
    .nav,
    .cookie-banner,
    .cta-btn,
    .cta-btn-large {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }

    .footer-links a::after {
        content: " (" attr(href) ")";
        font-size: 10px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-links a,
    .footer-links a,
    .cta-btn,
    button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch */
    .value-box:hover,
    .team-card:hover,
    .cta-btn:hover {
        transform: none;
    }
}

/* Landscape phone orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .cookie-banner {
        padding: 12px;
    }

    .cookie-content {
        padding: 12px 5vw;
    }
   }

/* ============================================
   GUARANTEE SECTION - Add to styles.css
   ============================================ */

.guarantee-section {
    padding: 100px 8vw;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43, 183, 218, 0.3), transparent);
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(40, 200, 64, 0.15) 0%, rgba(43, 183, 218, 0.1) 100%);
    border: 2px solid rgba(40, 200, 64, 0.3);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(40, 200, 64, 0.2);
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28C840, var(--cyan-light));
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #28C840, #20A030);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(40, 200, 64, 0.4);
}

.guarantee-box h3 {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 16px;
}

.guarantee-box p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.guarantee-fine-print {
    font-size: 14px !important;
    color: var(--gray) !important;
    font-style: italic;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 800px) {
    .guarantee-section {
        padding: 80px 40px;
    }
    
    .guarantee-box {
        padding: 36px 28px;
    }
    
    .guarantee-box h3 {
        font-size: 26px;
    }
    
    .guarantee-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .guarantee-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
    
    .guarantee-box h3 {
        font-size: 22px;
    }
}

/* ============================================
   CALENDAR EMBED SECTION - For contact page
   ============================================ */

.calendar-option {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px dashed #e4e8ef;
}

.calendar-option p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.calendar-link {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: var(--navy-deep);
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(43, 183, 218, 0.3);
}

.calendar-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 183, 218, 0.4);
}

/* ============================================
   COMPARISON MATRIX - For services page
   ============================================ */

.comparison-matrix-section {
    padding: 100px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.comparison-table {
    max-width: 1000px;
    margin: 48px auto 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e4e8ef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.comparison-header .comparison-cell {
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.comparison-header .comparison-cell:first-child {
    text-align: left;
}

.comparison-cell {
    padding: 20px 16px;
    font-size: 15px;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    font-weight: 600;
}

.comparison-check {
    color: #28C840;
    font-size: 24px;
    font-weight: 700;
}

.comparison-x {
    color: #FF5F57;
    font-size: 24px;
    font-weight: 700;
}

.comparison-us {
    background: rgba(43, 183, 218, 0.05);
}

/* Responsive comparison table */
@media (max-width: 800px) {
    .comparison-matrix-section {
        padding: 80px 40px;
    }
    
    .comparison-table {
        display: block;
    }
    
    .comparison-row {
        display: block;
        margin-bottom: 24px;
        border: 1px solid #e4e8ef;
        border-radius: 12px;
    }
    
    .comparison-header {
        display: none;
    }
    
    .comparison-cell {
        display: flex;
        justify-content: space-between;
        padding: 16px;
        border-bottom: 1px solid #e4e8ef;
    }
    
    .comparison-cell:last-child {
        border-bottom: none;
    }
    
    .comparison-cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: #4a5568;
    }
}

/* ============================================
   POST-FORM SUCCESS MESSAGE
   ============================================ */

.form-success-message {
    display: none;
    background: linear-gradient(135deg, rgba(40, 200, 64, 0.1), rgba(43, 183, 218, 0.1));
    border: 2px solid rgba(40, 200, 64, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-top: 24px;
    text-align: center;
}

.form-success-message.visible {
    display: block;
}

.form-success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #28C840;
    margin-bottom: 16px;
}

.form-success-next-steps {
    text-align: left;
    margin-top: 24px;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
}

.form-success-next-steps h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.form-success-next-steps ol {
    list-style: decimal;
    padding-left: 20px;
    color: #4a5568;
}


.form-success-next-steps li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
}

/* About - Our Approach */
.about-approach {
    padding: 90px 0;
    background: linear-gradient(180deg, #0A1927 0%, #0F2A3C 100%);
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    color: #f1f5f9;
}

.approach-content h2 {
    font-size: clamp(32px, 3vw, 40px);
    margin-bottom: 16px;
    color: #fff;
}

.approach-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.approach-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.pillar-item {
    padding: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.pillar-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.pillar-item p {
    color: #dbeafe;
    line-height: 1.6;
    font-size: 15px;
}

.pricing-exclusions {
    max-width: 820px;
    margin: 0 auto 60px;
    padding: 28px 32px;
    background: #ffffff;
    border: 2px solid #e4e8ef;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pricing-exclusions h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-alt);
    margin-bottom: 16px;
    color: var(--navy);
}

.pricing-exclusions ul {
    list-style: disc;
    padding-left: 24px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.pricing-exclusions li {
    margin-bottom: 10px;
    font-size: 16px;
}

.calendar-option {
    max-width: 600px;
    margin: 32px auto 0;
    text-align: center;
    padding: 24px 28px;
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
}

.calendar-option p {
    margin-bottom: 14px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.calendar-link {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: var(--navy-deep);
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(43, 183, 218, 0.3);
}

.calendar-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 183, 218, 0.4);
    color: var(--navy-deep);
}

/* FIX: Pricing Exclusions - Subtle, not a sore thumb */
.pricing-exclusions {
    max-width: 820px;
    margin: -20px auto 60px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    border-top: 1px solid #e2e8f0;
    border-radius: 0;
}

.pricing-exclusions h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-alt);
    margin-bottom: 14px;
    color: #475569;
}

.pricing-exclusions ul {
    list-style: none;
    padding-left: 0;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.pricing-exclusions li {
    margin-bottom: 0;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.pricing-exclusions li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #94a3b8;
    font-weight: 600;
}


/* FIX: Calendar Option - Simple text link, not a box */
.calendar-option {
    max-width: 600px;
    margin: 32px auto 0;
    text-align: center;
    padding: 20px 0 0 0;
    background: transparent;
    border: none;
    border-top: 1px solid #e2e8f0;
    border-radius: 0;
}

.calendar-option p {
    margin-bottom: 8px;
    color: #64748b;
    font-size: 14px;
}

.calendar-link {
    display: inline-block;
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    padding: 0;
    background: none;
    box-shadow: none;
    transition: color 0.2s ease;
}

.calendar-link:hover,
.calendar-link:focus-visible {
    color: #1a9bb8;
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}


/* FIX: Guarantee Icon - Proper checkmark rendering */
.guarantee-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #28C840 0%, #22b339 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    font-weight: 400;
    box-shadow: 0 6px 24px rgba(40, 200, 64, 0.3);
    line-height: 1;
    font-family: system-ui, -apple-system, sans-serif;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */

.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 16, 26, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.exit-popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(43, 183, 218, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(43, 183, 218, 0.2);
}

.exit-popup-overlay.visible .exit-popup {
    transform: scale(1) translateY(0);
}

/* Calendly popup specific styles */
.calendly-popup {
    max-width: 600px;
    max-height: 90vh;
    padding: 32px 28px;
    margin: 20px;
}

.calendly-popup .exit-popup-content {
    max-height: 70vh;
    overflow-y: auto;
}

/* Lock body scroll when popup is open */
body.popup-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.calendly-popup .exit-popup-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.calendly-popup .exit-popup-content p {
    font-size: 15px;
    margin-bottom: 20px;
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.exit-popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0A1927;
}

.exit-popup-content {
    text-align: center;
}

.exit-popup-eyebrow {
    font-size: 14px;
    color: var(--cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.exit-popup-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.exit-popup-content h3 {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--navy);
    margin-bottom: 12px;
}

.exit-popup-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 28px;
}

.exit-popup-cta {
    display: inline-block;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: var(--navy-deep);
    font-weight: 800;
    font-size: 17px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(43, 183, 218, 0.35);
    margin-bottom: 16px;
}

.exit-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(43, 183, 218, 0.45);
}

.exit-popup-dismiss {
    background: none;
    border: none;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

.exit-popup-dismiss:hover {
    color: var(--navy);
}

/* Mobile popup adjustments */
@media (max-width: 600px) {
    .exit-popup {
        padding: 36px 24px;
        margin: 16px;
    }

    .calendly-popup {
        padding: 28px 20px;
        max-width: 100%;
    }

    .calendly-popup .calendly-inline-widget {
        min-width: 100% !important;
        height: 600px !important;
    }

    .calendly-skip-btn {
        font-size: 15px;
        padding: 14px 24px;
        width: 100%;
    }
    
    .exit-popup-icon {
        font-size: 48px;
    }
    
    .exit-popup-content h3 {
        font-size: 24px;
    }
    
    .exit-popup-content p {
        font-size: 15px;
    }
    
    .exit-popup-cta {
        font-size: 16px;
        padding: 16px 24px;
    }
}


/* ============================================
   GUARANTEE BOX - CLEAN VERSION (NO ICON)
   ============================================ */

.guarantee-section {
    padding: 100px 8vw;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43, 183, 218, 0.3), transparent);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(43, 183, 218, 0.12) 0%, rgba(43, 183, 218, 0.06) 100%);
    border: 2px solid rgba(43, 183, 218, 0.25);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
}

/* Remove the icon completely */
.guarantee-icon {
    display: none !important;
}

.guarantee-box h3 {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-alt);
    color: var(--white);
    margin-bottom: 16px;
}

.guarantee-box p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.guarantee-fine-print {
    font-size: 13px !important;
    color: var(--gray) !important;
    font-style: italic;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive guarantee */
@media (max-width: 800px) {
    .guarantee-section {
        padding: 80px 40px;
    }
    
    .guarantee-box {
        padding: 36px 28px;
    }
    
    .guarantee-box h3 {
        font-size: 24px;
    }
    
    .guarantee-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .guarantee-box h3 {
        font-size: 22px;
    }
    
    .guarantee-box p {
        font-size: 15px;
    }
}


/* ============================================
   PRICING EXCLUSIONS - CLEAN INLINE VERSION
   ============================================ */

.pricing-exclusions {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 24px 0;
    text-align: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.pricing-exclusions h3 {
    display: none; /* Hide the old header */
}

.pricing-exclusions ul {
    display: none; /* Hide the old list */
}

.exclusions-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exclusions-list {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}


/* ============================================
   CALENDAR OPTION - REMOVED (Now Exit Popup)
   ============================================ */

.calendar-option {
    display: none !important;
}


/* ============================================
   SITE-WIDE CLEANUP - Remove Cheap-Looking Elements
   ============================================ */

/* Cleaner section headers without the label */
.qa-label {
    display: none;
}

/* Proof section - remove the "You're wondering..." text */
.proof-section {
    display: none;
}

/* Remove excessive shadows on hover - more subtle */
.value-box:hover,
.team-card:hover,
.service-detail:hover,
.offering-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Cleaner footer disclaimer - less wordy */
.footer-disclaimer p:first-child {
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
}

/* Remove the "All service claims are based on..." - redundant */
.footer-disclaimer p:first-child::after {
    content: none;
}

/* ============================================
   MOBILE OVERHAUL - iPhone 16 Pro & Similar
   Match desktop proportions, just scaled down
   ============================================ */

@media screen and (max-width: 480px) {
    /* ---- FIX iOS SCROLL BUG ---- */
    /* background-attachment: fixed causes janky scrolling on iOS */
    body {
        background-attachment: scroll !important;
    }

    /* Account for mobile nav height */
    .page-container {
        padding-top: 60px !important;
    }

    /* ---- HIDE DASHBOARD GRAPH ON MOBILE ---- */
    /* Complex SVG doesn't scale well on small screens */
    .hero-visual,
    .dashboard-3d,
    .dashboard-disclaimer {
        display: none !important;
    }

    /* ---- TEAM MODAL POPUP FIX ---- */
    .team-modal {
        max-height: 90vh;
        max-width: 95vw;
        margin: 5vh auto;
        overflow-y: auto;
    }

    .team-modal-close {
        position: fixed;
        top: calc(5vh + 12px);
        right: calc(2.5vw + 12px);
        width: 36px;
        height: 36px;
        font-size: 24px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.15);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 10002;
    }

    /* ---- MY STORY / PROOF PHOTOS FIX ---- */
    .proof-photos {
        gap: 12px;
    }

    .proof-photos img {
        height: auto;
        max-height: 180px;
        width: 100%;
        object-fit: cover;
        aspect-ratio: 16 / 10;
    }

    /* ---- TYPOGRAPHY - PROPER HIERARCHY ---- */
    /* Keep desktop ratios, just scaled down */

    /* Main headlines - big and impactful */
    h1, .hero h1, .hero-title-line {
        font-size: 28px !important;
        line-height: 1.15;
        font-weight: 800;
    }

    /* Section titles - clearly different from body */
    h2, .section-title {
        font-size: 22px !important;
        font-weight: 700;
    }

    /* Subheadings */
    h3 {
        font-size: 17px !important;
        font-weight: 700;
    }

    h4 {
        font-size: 15px !important;
        font-weight: 600;
    }

    /* Body text - readable but clearly smaller than headings */
    p {
        font-size: 14px !important;
        line-height: 1.6;
    }

    .hero-content p {
        font-size: 15px !important;
        line-height: 1.5;
    }

    .story-text p, .background-text p {
        font-size: 14px !important;
    }

    /* Labels - small accent text */
    .section-label, .founder-label {
        font-size: 11px !important;
        letter-spacing: 0.1em;
    }

    /* ---- CTA BUTTONS - PROMINENT ---- */
    /* CTAs should stand out and be easy to tap */
    .cta-btn {
        padding: 14px 24px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    .cta-btn-large {
        padding: 16px 28px !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        width: 100%;
        text-align: center;
    }

    /* ---- SECTION SPACING ---- */
    /* Tighter but not cramped */
    section {
        padding: 36px 5vw !important;
    }

    .about-story,
    .about-background,
    .about-mission,
    .about-audience,
    .about-proof,
    .about-team,
    .about-cta {
        padding: 36px 16px !important;
    }

    .qa-section {
        padding: 36px 5vw !important;
    }

    /* Hero - centered without the graph */
    .hero {
        padding: 60px 5vw 48px !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content p {
        text-align: center;
    }

    .page-hero {
        min-height: 260px;
        padding: 70px 16px 40px;
    }

    /* ---- ELEMENT SIZES ---- */

    /* Cards and boxes */
    .value-box,
    .service-detail,
    .offering-card,
    .feature-card {
        padding: 18px 16px;
    }

    /* Team section */
    .team-click-hint {
        display: block !important;
        font-size: 10px !important;
        margin: -16px 0 12px 0 !important;
    }

    .team-card {
        padding: 16px;
    }

    .team-photo {
        width: 64px;
        height: 64px;
    }

    /* Stats and metrics - impactful numbers */
    .proof-stat,
    .metric {
        padding: 16px 14px;
    }

    .proof-stat h3,
    .metric h3 {
        font-size: 26px !important;
        font-weight: 800;
    }

    /* ---- SPACING ---- */

    /* Grid gaps */
    .values-grid,
    .team-grid,
    .services-grid {
        gap: 14px;
    }

    /* Section headers */
    .section-title {
        margin-bottom: 20px;
    }

    /* Story content */
    .story-content {
        padding: 0 8px;
    }

    .story-text p {
        margin-bottom: 12px;
    }

    /* Background content */
    .background-content {
        gap: 20px;
    }

    .background-image img {
        width: 220px !important;
        max-width: 75%;
    }

    /* Founder story box */
    .founder-story-box {
        padding: 20px 16px;
    }

    /* Navigation */
    .nav-logo img {
        height: 44px;
    }

    /* ---- OTHER POPUP FIXES ---- */

    /* Talk to Human popup - ensure close button visible */
    .talk-human-popup {
        width: calc(100vw - 32px);
        max-width: 320px;
        right: 16px;
        bottom: 90px;
        padding: 24px 20px;
    }

    .talk-human-popup h2 {
        font-size: 18px;
    }

    .talk-human-close {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    /* Exit intent / Calendly popup */
    .exit-popup {
        margin: 12px;
        max-width: calc(100vw - 24px);
        padding: 28px 20px;
    }

    .exit-popup-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }

    .exit-popup-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .exit-popup-content h3 {
        font-size: 20px !important;
    }

    .exit-popup-content p {
        font-size: 14px !important;
        margin-bottom: 20px;
    }

    .exit-popup-cta {
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Calendly popup - needs room for widget */
    .calendly-popup {
        padding: 20px 16px;
    }

    .calendly-popup .calendly-inline-widget {
        min-height: 500px;
    }

    /* ---- PROCESS FLOW - SAME ZIGZAG LAYOUT AS DESKTOP ---- */

    .process-flow-container {
        padding: 36px 10px !important;
    }

    .process-flow-intro {
        margin-bottom: 20px;
    }

    .process-flow-intro .qa-header h2,
    .process-flow-intro .section-header h2 {
        font-size: 18px !important;
    }

    .process-flow-intro .subtext {
        font-size: 12px !important;
    }

    .spiral-process {
        padding: 10px 4px 20px !important;
    }

    /* Smaller margins between steps - compact view */
    .flow-step {
        margin-bottom: 35px !important;
    }

    /* KEEP ZIGZAG - reduced offsets for compact view */
    .flow-step[data-step="1"],
    .flow-step[data-step="3"],
    .flow-step[data-step="5"] {
        padding-left: 0 !important;
        padding-right: 15% !important;
    }

    .flow-step[data-step="2"],
    .flow-step[data-step="4"] {
        padding-left: 15% !important;
        padding-right: 0 !important;
    }

    .flow-step[data-step="6"] {
        padding-left: 8% !important;
        padding-right: 8% !important;
    }

    /* Compact step boxes */
    .step-box {
        padding: 10px 8px !important;
        border-radius: 8px;
    }

    .step-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: -8px;
        left: 8px;
    }

    .animated-text {
        font-size: 11px !important;
        margin-bottom: 2px;
    }

    .step-box p {
        font-size: 9px !important;
        line-height: 1.3;
    }

    /* SHOW SVG ARROWS - scaled down */
    .arrow-connector {
        display: block !important;
        width: 50px !important;
        height: 50px !important;
    }

    .arrow-down-right {
        bottom: -40px !important;
        right: 30% !important;
    }

    .arrow-down-left {
        bottom: -40px !important;
        left: 30% !important;
    }

    .arrow-svg {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* ---- FINAL CTA - SHOW GRADIENT ANIMATION ---- */
    .final-cta {
        padding: 48px 20px !important;
        overflow: hidden !important; /* Contain gradient within box */
    }

    /* Ensure the rotating gradient is visible but contained */
    .final-cta::before {
        display: block !important;
        opacity: 1 !important;
        animation: rotate 20s linear infinite !important;
        top: -25% !important;
        left: -25% !important;
        width: 150% !important;
        height: 150% !important;
    }

    .cta-problem {
        font-size: 22px !important;
    }

    .cta-solution {
        font-size: 14px !important;
        margin-bottom: 24px;
    }

    /* Services final CTA */
    .services-final-cta {
        padding: 48px 20px !important;
    }

    .services-final-cta::before {
        display: block !important;
        opacity: 1 !important;
    }

    /* ---- WHAT YOU GET - HORIZONTAL 3 ACROSS ---- */
    .hero-values {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .hero-value-box {
        padding: 10px 8px !important;
        border-radius: 10px;
    }

    .hero-value-box h3 {
        font-size: 11px !important;
        margin-bottom: 4px;
    }

    .hero-value-box p {
        font-size: 9px !important;
        line-height: 1.3;
    }

    .hero-values-heading {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    /* ---- WHAT MAKES US DIFFERENT - HORIZONTAL ---- */
    .differentiator-grid {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px !important;
    }

    .diff-card {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        padding: 12px 10px !important;
        border-radius: 10px;
    }

    .diff-card h3 {
        font-size: 11px !important;
        margin-bottom: 4px;
    }

    .diff-card p {
        font-size: 9px !important;
        line-height: 1.3;
    }

    .differentiator-section .qa-header h2 {
        font-size: 18px !important;
    }

    /* ---- CTA GRADIENT - FORCE VISIBLE ---- */
    .final-cta {
        position: relative !important;
        overflow: visible !important;
    }

    .final-cta::before {
        content: '' !important;
        position: absolute !important;
        top: -50% !important;
        left: -50% !important;
        width: 200% !important;
        height: 200% !important;
        background: radial-gradient(circle, rgba(43, 183, 218, 0.15) 0%, transparent 50%) !important;
        animation: rotate 20s linear infinite !important;
        pointer-events: none;
    }

    /* ---- FOOTER - SMALLER ---- */
    footer {
        padding: 32px 16px 24px !important;
    }

    .footer-main {
        gap: 16px !important;
    }

    .footer-brand img {
        height: 32px !important;
    }

    .footer-disclaimer p {
        font-size: 9px !important;
        line-height: 1.4;
    }

    .footer-links a {
        font-size: 9px !important;
        padding: 6px 4px !important;
    }

    .footer-copy {
        font-size: 10px !important;
    }

    .footer-bottom {
        padding-top: 16px !important;
        gap: 12px !important;
    }

    /* ============================================
       SERVICES PAGE - HORIZONTAL LAYOUTS
       ============================================ */

    /* Problem grid - 2 across */
    .problem-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .problem-item {
        padding: 10px !important;
        gap: 8px !important;
    }

    .problem-item .icon {
        font-size: 18px !important;
        min-width: 28px;
    }

    .problem-item h3 {
        font-size: 11px !important;
    }

    .problem-item p {
        font-size: 9px !important;
        line-height: 1.3;
    }

    /* Offerings grid - 2 across */
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .offering-card {
        padding: 12px 10px !important;
    }

    .offering-card h3 {
        font-size: 12px !important;
        margin-bottom: 6px;
    }

    .offering-card p {
        font-size: 9px !important;
        line-height: 1.3;
    }

    .offering-card ul li {
        font-size: 9px !important;
    }

    /* FAQ grid - 2 across */
    .faq-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .faq-item {
        padding: 12px 10px !important;
    }

    .faq-item h3 {
        font-size: 11px !important;
        margin-bottom: 6px;
    }

    .faq-item p {
        font-size: 9px !important;
        line-height: 1.3;
    }

    /* Services sections - tighter */
    .services-problem,
    .services-solution,
    .services-offerings,
    .services-process,
    .services-pricing,
    .services-faq {
        padding: 30px 14px !important;
    }

    .services-pricing h2,
    .services-problem h2,
    .services-solution h2,
    .services-offerings h2 {
        font-size: 18px !important;
    }

    /* Solution section - compact */
    .solution-intro {
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }

    .solution-benefits {
        gap: 10px !important;
    }

    .benefit-item {
        gap: 10px !important;
        padding: 12px !important;
    }

    .benefit-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }

    .benefit-item h3 {
        font-size: 13px !important;
    }

    .benefit-item p {
        font-size: 11px !important;
    }

    /* How it Works - compact */
    .services-process h2 {
        font-size: 16px !important;
        margin-bottom: 16px !important;
    }

    .services-process .subtext {
        font-size: 11px !important;
    }

    /* New pricing packages - mobile */
    .pricing-package {
        padding: 20px 16px !important;
        margin-bottom: 20px !important;
    }

    .package-header h3 {
        font-size: 16px !important;
    }

    .package-tagline {
        font-size: 12px !important;
    }

    .package-description {
        font-size: 12px !important;
        margin-bottom: 16px !important;
    }

    .package-includes h4,
    .package-pricing h4 {
        font-size: 11px !important;
    }

    .package-includes li {
        font-size: 11px !important;
        padding: 5px 0 5px 18px !important;
    }

    .pricing-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
        padding: 12px !important;
    }

    .pricing-label {
        font-size: 12px !important;
        min-width: unset !important;
    }

    .pricing-value {
        font-size: 14px !important;
        text-align: left !important;
    }

    .pricing-note {
        font-size: 10px !important;
        min-width: unset !important;
        text-align: left !important;
    }

    .package-best-for {
        font-size: 11px !important;
        padding: 12px !important;
    }

    .pricing-additional {
        padding: 16px !important;
        margin-bottom: 20px !important;
    }

    .pricing-additional h4 {
        font-size: 14px !important;
    }

    .pricing-additional ul {
        flex-direction: column !important;
        gap: 6px !important;
    }

    .pricing-additional li {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }

    .pricing-fit-note {
        padding: 16px !important;
        margin-bottom: 24px !important;
    }

    .pricing-fit-note h4 {
        font-size: 14px !important;
    }

    .pricing-fit-note p {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    .pricing-fit-note li {
        font-size: 11px !important;
        padding: 4px 0 4px 16px !important;
    }

    .fit-conclusion {
        font-size: 12px !important;
    }

    /* ============================================
       ABOUT PAGE - HORIZONTAL LAYOUTS
       ============================================ */

    /* Values grid - 3 across */
    .values-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .value-item {
        padding: 10px 8px !important;
    }

    .value-item h3 {
        font-size: 10px !important;
        margin-bottom: 4px;
    }

    .value-item p {
        font-size: 8px !important;
        line-height: 1.3;
    }

    /* Team grid - 2 across */
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .team-card {
        flex-direction: column !important;
        padding: 10px !important;
        gap: 8px !important;
        text-align: center;
    }

    .team-photo {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto;
    }

    .team-card h3 {
        font-size: 11px !important;
    }

    .team-card .role {
        font-size: 9px !important;
    }

    /* About sections - tighter */
    .about-story,
    .about-background,
    .about-mission,
    .about-audience,
    .about-approach,
    .about-team,
    .about-cta {
        padding: 32px 14px !important;
    }

    .about-story h2,
    .about-mission h2,
    .about-team h2 {
        font-size: 18px !important;
    }

    /* Proof photos - side by side */
    .proof-photos {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .proof-photos img {
        max-height: 120px !important;
        flex: 1;
    }

    /* ============================================
       CONTACT PAGE - COMPACT LAYOUT
       ============================================ */

    .contact-header {
        padding: 60px 16px 32px !important;
        min-height: auto !important;
    }

    .contact-header h1 {
        font-size: 22px !important;
    }

    .contact-header p {
        font-size: 12px !important;
    }

    .contact-form-section {
        padding: 32px 16px !important;
    }

    .contact-form {
        padding: 20px 16px !important;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .contact-form label {
        font-size: 11px !important;
    }

    .contact-timeline {
        padding: 32px 16px !important;
    }

    .timeline-step {
        padding: 12px !important;
    }

    .timeline-step h3 {
        font-size: 12px !important;
    }

    .timeline-step p {
        font-size: 10px !important;
    }

    /* ============================================
       ADDITIONAL MOBILE FIXES
       ============================================ */

    /* 90-Day Guarantee Box - smaller */
    .guarantee-section {
        padding: 32px 16px !important;
    }

    .guarantee-box {
        padding: 20px 16px !important;
        border-radius: 12px;
    }

    .guarantee-icon {
        font-size: 32px !important;
        margin-bottom: 12px;
    }

    .guarantee-box h3 {
        font-size: 16px !important;
        margin-bottom: 8px;
    }

    .guarantee-box p {
        font-size: 11px !important;
        line-height: 1.4;
    }

    .guarantee-fine-print {
        font-size: 9px !important;
        margin-top: 12px;
    }

    /* Final CTA "Losing Jobs" - smaller with gradient */
    .final-cta {
        padding: 36px 16px !important;
    }

    .final-cta-content {
        max-width: 100%;
    }

    .cta-problem {
        font-size: 18px !important;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .cta-solution {
        font-size: 12px !important;
        margin-bottom: 16px;
    }

    .final-cta .cta-btn-large {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    /* Calendly popup X button fix */
    .calendly-popup {
        padding: 16px 12px !important;
        margin: 8px !important;
        max-width: calc(100vw - 16px) !important;
    }

    .calendly-popup .exit-popup-close {
        top: 8px !important;
        right: 8px !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 18px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
        z-index: 10003 !important;
    }

    /* Contact page - What happens next timeline */
    .contact-timeline {
        padding: 24px 12px !important;
    }

    .contact-timeline h2 {
        font-size: 16px !important;
        margin-bottom: 16px;
    }

    .timeline-steps {
        gap: 8px !important;
    }

    .timeline-step {
        padding: 10px 8px !important;
    }

    .timeline-number {
        width: 24px !important;
        height: 24px !important;
        font-size: 11px !important;
    }

    .timeline-step h3 {
        font-size: 11px !important;
    }

    .timeline-step p {
        font-size: 9px !important;
    }

    .timeline-arrow {
        font-size: 14px !important;
        padding: 0 4px !important;
    }
}
