   HERO SECTION
   ============================================ */
.hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 64px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 180, 216, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(0, 119, 182, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(144, 224, 239, 0.08) 0%, transparent 30%);
    animation: gradientDrift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 1%) rotate(1deg); }
    50% { transform: translate(0, 2%) rotate(0deg); }
    75% { transform: translate(-2%, 1%) rotate(-1deg); }
}

/* Noise texture overlay */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    animation: float1 25s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    animation: float2 20s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
    background: var(--blue-light);
    animation: float3 15s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    background: var(--blue-primary);
    animation: float4 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.02); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.03); }
}

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

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

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

/* Accent line before headline */
.hero-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-primary));
    margin-bottom: 32px;
    opacity: 0;
    animation: heroSlideIn 0.6s ease 0.1s forwards;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 60px;
    }
}

.hero h1 {
    font-size: clamp(3.2rem, 8vw, 5rem);
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    line-height: 1.05;
    font-weight: 600;
}

.hero h1 span {
    display: block;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 span:first-child {
    color: var(--light-100);
    animation-delay: 0.2s;
}

.hero h1 span:last-child {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.35s;
}

.hero-subhead {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--light-400);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.75;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero .btn-primary {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
    padding: 20px 44px;
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    box-shadow: 
        0 4px 20px rgba(0, 119, 182, 0.3),
        0 0 0 0 rgba(0, 180, 216, 0);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 119, 182, 0.4),
        0 0 0 4px rgba(0, 180, 216, 0.1);
}

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

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 1s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--light-500);
    font-weight: 500;
}

.scroll-indicator .arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--blue-primary);
    border-bottom: 2px solid var(--blue-primary);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    color: var(--light-100);
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light-300);
    border: 1px solid var(--light-500);
}

.btn-secondary:hover {
    border-color: var(--light-100);
    color: var(--light-100);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--blue-primary);
    margin-bottom: 20px;
}

.section-label::before {
    content: "";
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-dark));
}

/* ============================================
   SERVICES BANNER (New section under hero)
   ============================================ */
.pillars-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pillar-tag {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-300);
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
}

.pillar-tag strong {
    color: var(--blue-primary);
    font-weight: 600;
}

.proof-strip {
    background: var(--dark-800);
    padding: var(--section-padding-compact) 0;
    border-top: 1px solid rgba(0, 180, 216, 0.1);
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.proof-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.proof-strip-stat {
    font-size: 2rem;
    font-weight: 600;
    color: var(--blue-primary);
    margin-bottom: 4px;
}

.proof-strip-label {
    font-size: 0.85rem;
    color: var(--light-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-secondary {
    display: inline-flex;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--light-200);
    text-decoration: none;
    font-weight: 500;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue-primary);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .proof-strip-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.services-banner {
    background: var(--dark-800);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.services-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
}

.services-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-banner h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--light-100);
}

.services-banner h2 span {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-banner-subtitle {
    font-size: 1.15rem;
    color: var(--light-400);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.services-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-banner-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.services-banner-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-banner-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateY(-4px);
}

.services-banner-item:hover::before {
    transform: scaleX(1);
}

.services-banner-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.2), rgba(0, 180, 216, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.services-banner-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--blue-primary);
}

.services-banner-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--light-100);
    margin-bottom: 12px;
}

.services-banner-item p {
    color: var(--light-400);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   ACKNOWLEDGMENT SECTION
   ============================================ */
.acknowledgment {
    background: var(--dark-900);
    position: relative;
    padding-top: 140px;
}

.acknowledgment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--blue-primary), transparent);
}

.acknowledgment-content {
    max-width: 760px;
}

.acknowledgment-content h2 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.acknowledgment-content p {
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--light-400);
}

.acknowledgment-content p strong {
    color: var(--light-200);
    font-weight: 600;
}

.quote-block {
    border-left: none;
    padding: 56px 64px;
    margin: 64px 0;
    background: linear-gradient(135deg, var(--dark-600) 0%, var(--dark-700) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.quote-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--blue-primary), var(--blue-dark));
}

.quote-block::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.quote-block p {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--light-100);
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

/* ============================================
   PARTNERSHIP SECTION
   ============================================ */
.partnership {
    background: var(--dark-800);
    position: relative;
    overflow: hidden;
}

.partnership::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.partnership::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.partnership-content {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.partnership-content h2 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.partnership-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--light-400);
}

.highlight-box {
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    padding: 32px;
    margin-top: 40px;
    border-radius: 12px;
}

.highlight-box p {
    font-weight: 600;
    color: var(--light-200);
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   EVOLUTION SECTION
   ============================================ */
.evolution {
    background: var(--dark-900);
}

.evolution-content {
    max-width: 760px;
}

.evolution-content h2 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.evolution-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--light-400);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
#results {
    background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-700) 100%);
    position: relative;
    overflow: hidden;
}

#results::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
}

#results h2 {
    color: var(--light-100);
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.result-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateY(-4px);
}

.result-stat {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.result-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--light-500);
    margin-bottom: 20px;
}

.result-desc {
    color: var(--light-400);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.results-note {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-400);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
}

/* ============================================
   SERVICES SECTION (Tiers without pricing)
   ============================================ */
.services {
    background: var(--dark-900);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.services > .container > .reveal:first-child {
    margin-bottom: 56px;
}

.services h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-grid.services-grid-single {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--light-100);
    margin: 16px 0 8px;
    letter-spacing: -0.02em;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-400);
}

.service-card {
    padding: 48px 36px;
    background: var(--dark-800);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--dark-700);
    border-color: rgba(0, 180, 216, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

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

/* Featured card (middle tier) */
.service-card.featured {
    background: linear-gradient(180deg, var(--dark-600) 0%, var(--dark-700) 100%);
    border-color: rgba(0, 180, 216, 0.3);
}

.service-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
}

.service-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 180, 216, 0.15);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    color: var(--dark-900);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 20px;
}

.service-tier {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue-primary);
    margin-bottom: 16px;
}

.service-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-100);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-desc {
    font-size: 1rem;
    color: var(--light-400);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-fit {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--light-500);
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.services-footer {
    margin-top: 56px;
    text-align: center;
    color: var(--light-400);
    font-style: italic;
    font-size: 1.05rem;
}

.services-grid.services-grid-custom {
    margin-top: 24px;
}

.service-card.service-card-custom {
    padding: 36px 32px;
    background: var(--dark-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card.service-card-custom::before {
    display: none;
}

.service-card.service-card-custom:hover {
    transform: translateY(-4px);
    background: var(--dark-700);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.35);
}

/* ============================================
   BELIEFS SECTION
   ============================================ */
.beliefs {
    background: var(--dark-800);
    position: relative;
    overflow: hidden;
}

.beliefs::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.beliefs-content {
    max-width: 760px;
}

.beliefs-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.beliefs-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--light-400);
}

.beliefs-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.beliefs-list p {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--light-300);
}

.beliefs-list p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    border-radius: 50%;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-subhead {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--blue-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--light-400);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta .btn-primary {
    padding: 20px 48px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-email {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--light-500);
}

.cta-email a {
    color: var(--blue-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cta-email a:hover {
    color: var(--blue-light);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card.featured {
        order: -1;
    }

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

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

@media (min-width: 1100px) {
    .services-banner-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark-900);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .quote-block {
        padding: 40px 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

