/* variables.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --deep-black: #0A0A0A;
    --nero: #161616;
    --crimson: #DC143C;
    --crimson-light: rgba(220, 20, 60, 0.1);
    --off-white: #FAFAFA;
    /* Darkened gray-700 for better contrast against light backgrounds if used, or keep as is */
    --gray-700: #3F3F46;
    /* Lightened gray-500 significantly to meet 4.5:1 against deep-black #0A0A0A */
    /* original was #B0B0B0 (4.23:1), new is #C0C0C0 (5.1:1) or #D1D5DB (contrast 7.8:1) */
    --gray-500: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-300: #E4E4E7;
    --crimson-text: #FF4D6D;
    /* Lighter crimson for better contrast on dark */
    --mouse-x: 50%;
    --mouse-y: 50%;

    /* Typography Tokens */
    --header-weight: 900;
    --header-spacing: -0.04em;
    --header-line-height: 1.1;
    --sub-header-weight: 800;
    --sub-header-spacing: -0.02em;
}

/* base.css */
html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--deep-black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden
}

p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8
}

.grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background-image: linear-gradient(rgba(220, 20, 60, 0.1) 3px, transparent 2px), linear-gradient(90deg, rgba(220, 20, 60, 0.1) 1px, transparent 2px), radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    background-size: 80px 80px, 80px 80px, 100% 100%;
    background-repeat: repeat, repeat, no-repeat;
    z-index: 0
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--crimson);
}

/* Selection Color */
::selection {
    background: rgba(220, 20, 60, 0.3);
    color: var(--off-white);
}

/* Accessibility: Global Focus Styles */
:focus-visible {
    outline: 2px solid var(--crimson);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Utility Classes */
.accent {
    color: var(--crimson);
}

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

.hidden {
    display: none;
}

/* animations.css */
/* Animations */
@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;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.05s;
}

.delay-2 {
    animation-delay: 0.1s;
}

.delay-3 {
    animation-delay: 0.15s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

@keyframes wheel {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Premium Scroll Indicator Animations */
@keyframes scrollFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
        height: 10px;
    }

    50% {
        opacity: 0.4;
        top: 18px;
        height: 6px;
    }

    100% {
        opacity: 0;
        top: 26px;
        height: 4px;
    }
}

@keyframes bounceArrow {

    0%,
    100% {
        opacity: var(--arrow-opacity, 0.5);
        transform: rotate(45deg) translateY(0);
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(4px);
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ============================================
   SCROLL-TRIGGERED ANIMATIONS
   Subtle, world-class animations for AUZA
   ============================================ */

/* Base state for all scroll-triggered elements */
[data-scroll] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.2, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.2, 1, 0.3, 1),
        filter 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Faster animations on mobile */
@media (max-width: 768px) {
    [data-scroll] {
        transition-duration: 0.5s;
    }
}

/* Visible state */
[data-scroll].scroll-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* Fade Up Animation */
[data-scroll="fade-up"] {
    transform: translate3d(0, 30px, 0);
}

/* Fade Down Animation */
[data-scroll="fade-down"] {
    transform: translate3d(0, -30px, 0);
}

/* Fade Left Animation */
[data-scroll="fade-left"] {
    transform: translate3d(40px, 0, 0);
}

/* Fade Right Animation */
[data-scroll="fade-right"] {
    transform: translate3d(-40px, 0, 0);
}

/* Scale Up Animation */
[data-scroll="scale"] {
    transform: scale(0.9);
}

/* Scale Up with Fade */
[data-scroll="scale-fade"] {
    transform: scale(0.95);
    filter: blur(4px);
}

/* Zoom In Animation */
[data-scroll="zoom"] {
    transform: scale(0.8);
}

/* Blur In Animation */
[data-scroll="blur"] {
    filter: blur(10px);
    transform: translate3d(0, 20px, 0);
}

/* Subtle float animation */
[data-scroll="float"] {
    transform: translate3d(0, 30px, 0);
}

/* Card reveal with lift */
[data-scroll="card"] {
    transform: translate3d(0, 60px, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

[data-scroll="card"].scroll-visible {
    box-shadow: var(--shadow-lg, 0 25px 50px -12px rgba(0, 0, 0, 0.25));
}

/* Stagger delays are now handled dynamically via JavaScript for better performance */

/* ============================================
   ENHANCED HOVER STATES
   Premium micro-interactions
   ============================================ */

/* Card hover lift effect */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Subtle glow on hover */
.hover-glow {
    transition: box-shadow 0.4s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.15);
}

/* Scale on hover */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* ============================================
   REDUCED MOTION SUPPORT
   Accessibility for users who prefer less motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {

    [data-scroll],
    .fade-up,
    .hover-lift,
    .hover-scale,
    .hover-glow {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    [data-scroll] {
        opacity: 1;
    }
}

/* ============================================
   LOADING SHIMMER
   Subtle loading state
   ============================================ */

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ============================================
   GRADIENT TEXT ANIMATION
   Subtle color shift for accent text
   ============================================ */

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(90deg,
            var(--accent, #DC143C),
            #FF6B6B,
            var(--accent, #DC143C));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

/* ============================================
   SMOOTH SECTION TRANSITIONS
   ============================================ */

.section-transition {
    position: relative;
}

.section-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg, #0A0A0A));
    pointer-events: none;
}

/* navigation.css */
/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--crimson);
    color: white;
    padding: 12px 24px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 700;
    transition: top 0.3s;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 8px 8px;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.nav {
    position: fixed;
    top: var(--banner-height, 0);
    left: 0;
    right: 0;
    z-index: 5000;
    padding: clamp(32px, 4vw, 48px) clamp(24px, 5vw, 48px) clamp(24px, 3vw, 40px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Premium Glass Effect */
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    padding: 24px 48px 20px;
    border-bottom-color: rgba(220, 20, 60, 0.2);
}

.logo-full {
    display: block;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-compact {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    visibility: hidden;
}

.nav.scrolled .logo-full {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
}

.nav.scrolled .logo-compact {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px
}

.nav-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: -8px;
    bottom: -4px;
    height: 3px;
    width: calc(100% + 16px);
    background: linear-gradient(90deg, var(--crimson) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--off-white);
    position: relative;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 4002;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--off-white);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--deep-black);
    z-index: 4999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    padding: 40px;
}

.mobile-menu.active {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-500);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--off-white);
    transform: scale(1.1);
}

.mobile-nav-link.highlight {
    color: var(--crimson);
}

@media (max-width: 1024px) {
    .nav {
        padding: 28px 24px 20px;
        top: var(--banner-height, 0);
        /* Standardize for banner height */
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* sections.css */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 48px 40px;
    /* Offset for fixed header overlap */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 700px;
    height: 160px;
    background: var(--crimson);
    border-radius: 100% 0 100% 15%;
    transform: translate(-50%, -50%) rotate(-15deg);
    filter: blur(100px);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 0;
}

.hero:hover::before {
    opacity: 0.35;
}

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

.hero-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: var(--header-weight);
    line-height: var(--header-line-height);
    letter-spacing: var(--header-spacing);
    margin-bottom: 24px;
    max-width: 900px
}

.hero-title .accent {
    color: var(--crimson)
}

.hero-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 36px
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center
}

/* Services Hero */
.services-hero {
    padding: 220px 8vw 100px;
    background: #111;
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.services-hero p {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Basics */
.section {
    padding: clamp(60px, 8vw, 100px) clamp(18px, 8vw, 120px);
    position: relative
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto
}

.section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--crimson-accessible);
    margin-bottom: 4px
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: var(--header-weight);
    letter-spacing: var(--header-spacing);
    line-height: var(--header-line-height)
}

.section-desc {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 100%;
    line-height: 1.75;
    margin-top: 6px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
}

@media (min-width: 1024px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
        margin-bottom: 32px;
    }

    .section-header>div {
        flex: 1;
    }

    .section-header .section-desc,
    .section-header .section-description {
        flex: 1;
        max-width: 100%;
        margin-bottom: 8px;
    }
}

.section-header p,
.section-header .section-desc {
    margin-bottom: 0;
}

/* Value Props */
.value-props {
    padding: 72px 48px;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a
}

.value-props-inner {
    max-width: 1400px;
    /* Increased to fit 4 columns better */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* Reduced gap slightly for 4 columns */
}

.value-prop {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.5px;
    /* Border thickness */
    background: radial-gradient(400px circle at var(--mouse-x, -100%) var(--mouse-y, -100%),
            rgba(220, 20, 60, 1),
            transparent 25%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-prop:hover::before {
    opacity: 1;
}

.value-prop>* {
    position: relative;
    z-index: 1;
}

.value-prop:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(220, 20, 60, 0.2);
    transform: translateY(-4px);
}

.value-prop-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.value-prop:hover .value-prop-icon {
    border-color: var(--crimson);
    box-shadow: 0 0 16px rgba(220, 20, 60, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.value-prop-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--crimson);
    fill: none;
    stroke-width: 2
}

.value-prop-title {
    font-size: 18px;
    font-weight: var(--sub-header-weight);
    letter-spacing: var(--sub-header-spacing);
    margin-bottom: 10px
}

.value-prop-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7
}

/* Stats Section */
.stats-bar {
    padding: 56px 48px;
    background: var(--nero)
}

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

.stat-value {
    font-size: 40px;
    font-weight: 900;
    color: var(--crimson);
    line-height: 1
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

/* Work / Projects Section */
.work {
    background: var(--deep-black)
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.project-card {
    background: var(--nero);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.project-card:hover {
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.project-image {
    height: 340px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #333;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.project-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img-cover {
    transform: scale(1.05);
}

.concept-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    color: var(--off-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.project-info {
    padding: 20px 24px;
    background: var(--nero);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(220, 20, 60, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.project-description {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

.project-title {
    font-size: 18px;
    font-weight: var(--sub-header-weight);
    letter-spacing: var(--sub-header-spacing);
    margin-bottom: 8px
}

.project-result {
    font-size: 13px;
    color: var(--gray-500)
}

.project-result strong {
    color: var(--off-white)
}

.transparency-notice {
    margin-bottom: 32px;
    padding: 16px 24px;
    background: rgba(220, 20, 60, 0.08);
    border-left: 3px solid var(--crimson);
    border-radius: 4px;
}

.transparency-notice p {
    margin: 0;
    font-size: 13px;
    color: var(--gray-500);
}

.transparency-notice strong {
    color: var(--crimson-text);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    margin-right: 8px;
}

/* Services Section */
.engagement-options {
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services {
    background: var(--nero)
}

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

.service-card {
    padding: 32px;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

/* Border Glow for What We Do */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.5px;
    /* Border thickness */
    background: radial-gradient(400px circle at var(--mouse-x, -100%) var(--mouse-y, -100%),
            rgba(220, 20, 60, 1),
            transparent 25%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-5px);
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        0 0 16px rgba(220, 20, 60, 0.1);
}

.service-num {
    font-size: 56px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 0.8;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: absolute;
    top: 24px;
    right: 24px;
}

.service-card:hover .service-num {
    color: rgba(220, 20, 60, 0.1);
    transform: scale(1.1);
}

.service-title {
    font-size: 20px;
    font-weight: var(--sub-header-weight);
    letter-spacing: var(--sub-header-spacing);
    margin-bottom: 12px;
    position: relative;
    color: var(--crimson) !important;
    transition: all 0.3s ease;
}

.service-card:visited .service-title,
.service-card:active .service-title {
    color: var(--crimson) !important;
}

.service-card:hover .service-title {
    color: var(--crimson) !important;
    text-shadow: 0 0 12px rgba(220, 20, 60, 0.3);
}

.service-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.service-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.service-card:hover .service-tag {
    background: rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.3);
    color: var(--crimson-text);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: var(--deep-black)
}

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

.testimonial-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Holographic Sheen for Testimonials */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg,
            transparent 0%,
            rgba(255, 255, 255, 0.02) 40%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.02) 60%,
            transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: 1;
    pointer-events: none;
}

.testimonial-card:hover::after {
    transform: translateX(100%);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2), 0 0 16px rgba(220, 20, 60, 0.1);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 80px;
    line-height: 1;
    font-family: serif;
    color: var(--crimson);
    opacity: 0.1;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 0;
}

.testimonial-card:hover::before {
    opacity: 0.2;
    transform: scale(1.1);
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
    color: var(--off-white)
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--crimson) 0%, #8B0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px
}

.testimonial-name {
    font-weight: 700;
    font-size: 14px
}

.testimonial-role {
    font-size: 12px;
    color: var(--gray-500)
}

/* Process Section */
.process {
    background: var(--nero);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.process-step {
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 2px solid rgba(255, 255, 255, 0.03);
    background: transparent;
    margin-bottom: 4px;
    position: relative;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.02);
    border-left-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.process-step.active {
    background: rgba(220, 20, 60, 0.03);
    border-left: 3px solid var(--crimson);
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.step-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--gray-500);
    transition: all 0.3s;
    font-family: monospace;
}

.process-step.active .step-num {
    color: var(--crimson);
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(220, 20, 60, 0.4);
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.step-duration {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
}

.detail-card {
    padding: clamp(40px, 5vw, 64px);
    background: var(--deep-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.detail-card:hover {
    transform: scale(1.01);
    border-color: rgba(220, 20, 60, 0.2);
}

.detail-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at top right, rgba(220, 20, 60, 0.05), transparent 70%);
    pointer-events: none;
}

.detail-num {
    font-size: 120px;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.08);
    line-height: 0.8;
    position: absolute;
    top: -10px;
    right: -10px;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.detail-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: var(--header-weight);
    margin-bottom: 20px;
    letter-spacing: var(--header-spacing);
    line-height: var(--header-line-height);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.detail-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 480px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Transition States */
.detail-card.switching .detail-num {
    opacity: 0;
    transform: scale(0.9);
}

.detail-card.switching .detail-title,
.detail-card.switching .detail-desc {
    opacity: 0;
    transform: translateY(10px);
}

/* Accessibility Section */
.accessibility {
    padding: 72px 48px;
    border-top: 1px solid rgba(220, 20, 60, 0.15);
    border-bottom: 1px solid rgba(220, 20, 60, 0.15)
}

.accessibility-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: flex-start;
}

.accessibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.2);
    margin-bottom: 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crimson);
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(220, 20, 60, 0.1);
}

.accessibility h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px
}

.accessibility p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8
}

.accessibility-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 56px;
    /* Aligns with h3 text by skipping the badge + margin */
}

.accessibility-feature {
    padding: 18px;
    background: var(--nero);
    border: 1px solid #222
}

.accessibility-feature-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px
}

.accessibility-feature-desc {
    font-size: 11px;
    color: var(--gray-500)
}

/* CTA Section */
.cta {
    padding: 90px 48px;
    background: linear-gradient(135deg, var(--crimson) 0%, #9B1B30 100%);
    text-align: center
}

.cta-inner {
    max-width: 650px;
    margin: 0 auto
}

.cta-title {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 18px
}

.cta-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px
}

/* Contact Section */
.contact {
    background: var(--deep-black)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: center;
}

.contact-expect {
    margin-top: 24px;
    padding: 18px;
    background: var(--nero);
    border: 1px solid #222
}

.contact-expect-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 12px
}

.contact-expect-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--gray-500)
}

.contact-expect-num {
    color: var(--crimson);
    font-weight: 700
}

.contact-info-email {
    display: inline-block;
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    margin-top: 18px;
    transition: color 0.2s
}

.contact-info-email:hover {
    color: var(--crimson)
}

.contact-location {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 6px
}

.contact-process {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.02);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Methodology Section */
.methodology {
    padding: clamp(100px, 15vw, 160px) clamp(18px, 8vw, 120px);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

@media(max-width: 900px) {
    .method-grid {
        grid-template-columns: 1fr;
    }
}

.method-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: var(--crimson);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

.method-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--off-white);
}

.method-desc {
    line-height: 1.6;
    color: var(--gray-500);
    font-size: 15px;
}

.process-steps-list {
    list-style: none;
    margin-top: 24px;
}

.process-step-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-500);
}

/* Footer Section */
.footer {
    padding: 80px 48px 40px;
    background: var(--nero);
    border-top: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Footer Grid Pattern */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px
}

.footer-brand-desc {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 12px 0
}

.footer-heading {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-link {
    font-size: 12px;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s
}

.footer-link:hover {
    color: var(--off-white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 40px;
    padding-top: 24px;
    border-top: 1px solid #222;
}

.footer-copy {
    font-size: 11px;
    color: var(--gray-500);
    margin: 0;
    white-space: nowrap;
}

.footer-legal {
    display: flex;
    gap: 20px
}

.footer-legal-link {
    font-size: 11px;
    color: var(--gray-500);
    text-decoration: none;
    white-space: nowrap;
}

.footer-legal-link:hover {
    color: var(--off-white)
}

/* Logo Scroll Section */
.logo-scroll-section {
    padding: 48px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
}

.logo-scroll-label {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.logo-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-scroll-wrapper::before,
.logo-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {

    .logo-scroll-wrapper::before,
    .logo-scroll-wrapper::after {
        width: 40px;
        backdrop-filter: none;
    }
}

.logo-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--deep-black) 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
    backdrop-filter: blur(2px);
}

.logo-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--deep-black) 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
    backdrop-filter: blur(2px);
}

.logo-track {
    display: flex;
    gap: 64px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.scroll-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    white-space: nowrap;
    display: flex;
    gap: 20px;
    align-items: center;
}

.scroll-text .highlight {
    color: var(--crimson);
}

/* Reasons Section */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.reason-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.reason-card:hover {
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2), 0 0 16px rgba(220, 20, 60, 0.1);
}

.reason-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson);
    background: rgba(220, 20, 60, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(220, 20, 60, 0.2);
}

.reason-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.reason-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--off-white);
}

.reason-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--off-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Founder Section */
.founder-section {
    background: var(--nero);
}

.founder-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.founder-image-container {
    position: relative;
}

.founder-image {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* components.css */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease
}

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

.btn-primary:hover {
    background: #e8163f;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--gray-700)
}

.btn-secondary:hover {
    border-color: var(--off-white)
}

/* Badges */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.25);
    margin-bottom: 28px
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--crimson);
    border-radius: 50%;
    animation: pulse 2s infinite
}

.badge-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--crimson-text)
}

/* Scroll Indicator - Premium World-Class Design */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 10;
    animation: scrollFloat 3s ease-in-out infinite;
}

.scroll-indicator:hover {
    opacity: 1;
    animation-play-state: paused;
    transform: translateX(-50%) scale(1.05);
}

.scroll-indicator.hidden {
    opacity: 0;
    transform: translate(-50%, 30px);
    pointer-events: none;
}

/* Premium Mouse Icon */
.mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    position: relative;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(8px);
    box-shadow:
        0 0 20px rgba(220, 20, 60, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.scroll-indicator:hover .mouse {
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow:
        0 0 30px rgba(220, 20, 60, 0.25),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Animated Scroll Wheel */
.wheel {
    width: 4px;
    height: 10px;
    background: linear-gradient(180deg, var(--crimson) 0%, rgba(220, 20, 60, 0.3) 100%);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 8px rgba(220, 20, 60, 0.5);
}

/* Premium Bouncing Arrows */
.arrow-span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.arrow-span span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    margin: -5px 0;
    animation: bounceArrow 2s ease-in-out infinite;
    transition: border-color 0.3s ease;
}

.scroll-indicator:hover .arrow-span span {
    border-color: rgba(220, 20, 60, 0.7);
}

.arrow-span span:nth-child(1) {
    animation-delay: 0s;
    opacity: 0.3;
}

.arrow-span span:nth-child(2) {
    animation-delay: 0.15s;
    opacity: 0.6;
}

.arrow-span span:nth-child(3) {
    animation-delay: 0.3s;
    opacity: 1;
}

/* Value Prop Icons */
.value-prop-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.value-prop-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--crimson);
    fill: none;
    stroke-width: 2
}

/* Stats */
.stat-value {
    font-size: 40px;
    font-weight: 900;
    color: var(--crimson);
    line-height: 1
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

/* Toast */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--crimson);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Go to Top */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(220, 20, 60, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.go-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.go-to-top:hover {
    background: var(--crimson);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

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

.form-group.full {
    grid-column: span 2
}

.form-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 6px
}

.form-input,
.form-select,
.form-textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--off-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    border-radius: 8px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--crimson);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-select option {
    background: var(--nero);
    color: var(--off-white);
    padding: 16px;
    font-weight: 500;
}

.form-textarea {
    resize: none;
    min-height: 90px
}

.form-submit-container {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.form-submit-container .btn {
    width: 100%;
    height: 54px;
    justify-content: center;
    margin-top: auto;
}

/* mockups.css */
/* Case Study Mockups */
.project-cover-1 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 32px;
}

.dashboard-mock {
    width: 100%;
    max-width: 380px;
    background: #0d1117;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dash-header {
    display: flex;
    gap: 6px;
    margin-bottom: 12px
}

.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333
}

.dash-dot.r {
    background: #ff5f56
}

.dash-dot.y {
    background: #ffbd2e
}

.dash-dot.g {
    background: #27ca40
}

.dash-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 16px
}

.dash-nav-item {
    height: 6px;
    background: #21262d;
    border-radius: 3px;
    flex: 1
}

.dash-nav-item.active {
    background: var(--crimson)
}

.dash-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.dash-card {
    background: #161b22;
    border-radius: 6px;
    padding: 12px
}

.dash-card-title {
    font-size: 8px;
    color: #8b949e;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.dash-card-value {
    font-size: 18px;
    font-weight: 800;
    color: #fff
}

.dash-card-value.up {
    color: #3fb950
}

.dash-chart {
    grid-column: span 2;
    height: 60px;
    background: #161b22;
    border-radius: 6px;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    gap: 4px
}

.dash-bar {
    flex: 1;
    background: linear-gradient(to top, var(--crimson), #ff4d6d);
    border-radius: 2px 2px 0 0
}

/* Project 2 - Healthcare */
.project-cover-2 {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 32px;
}

.health-mock {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.health-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.health-logo {
    font-size: 14px;
    font-weight: 800;
    color: #0d9488
}

.health-nav {
    display: flex;
    gap: 12px
}

.health-nav-dot {
    width: 6px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 50%
}

.health-hero {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px
}

.health-hero-title {
    font-size: 12px;
    font-weight: 700;
    color: #134e4a;
    margin-bottom: 4px
}

.health-hero-text {
    font-size: 9px;
    color: #5eead4
}

.health-cards {
    display: flex;
    gap: 8px
}

.health-card {
    flex: 1;
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px;
    text-align: center
}

.health-icon {
    width: 24px;
    height: 24px;
    background: #ccfbf1;
    border-radius: 50%;
    margin: 0 auto 6px
}

.health-card-text {
    font-size: 8px;
    color: #6b7280
}

.wcag-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    color: #0d9488;
    display: flex;
    align-items: center;
    gap: 4px
}

.wcag-badge::before {
    content: "✓";
    color: #0d9488
}

/* Project 3 - FinTech */
.project-cover-3 {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 32px;
}

.fintech-mock {
    width: 100%;
    max-width: 360px;
    background: #0f0f23;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #2d2d5a;
}

.fintech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.fintech-logo {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px
}

.fintech-logo span {
    color: #818cf8
}

.fintech-btn {
    background: #4f46e5;
    color: #fff;
    font-size: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600
}

.fintech-balance {
    margin-bottom: 20px
}

.fintech-label {
    font-size: 9px;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.fintech-amount {
    font-size: 28px;
    font-weight: 900;
    color: #fff
}

.fintech-chart {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin-bottom: 16px
}

.fintech-bar {
    flex: 1;
    background: linear-gradient(to top, #4f46e5, #818cf8);
    border-radius: 2px 2px 0 0;
    opacity: 0.7
}

.fintech-bar:nth-child(even) {
    opacity: 1
}

.fintech-stats {
    display: flex;
    gap: 12px
}

.fintech-stat {
    flex: 1;
    background: #1a1a3e;
    border-radius: 8px;
    padding: 10px
}

.fintech-stat-label {
    font-size: 8px;
    color: #6366f1;
    margin-bottom: 2px
}

.fintech-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.speed-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #4f46e5;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    color: #fff
}

/* Project 4 - EdTech */
.project-cover-4 {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 32px;
}

.edtech-mock {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.edtech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.edtech-logo {
    font-size: 14px;
    font-weight: 800;
    color: #92400e
}

.edtech-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%
}

.edtech-progress {
    background: #fef3c7;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px
}

.edtech-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px
}

.edtech-progress-title {
    font-size: 10px;
    font-weight: 700;
    color: #92400e
}

.edtech-progress-pct {
    font-size: 10px;
    font-weight: 700;
    color: #d97706
}

.edtech-bar-bg {
    height: 6px;
    background: #fde68a;
    border-radius: 3px;
    overflow: hidden
}

.edtech-bar-fill {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 3px
}

.edtech-courses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
}

.edtech-course {
    background: #fffbeb;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #fef3c7
}

.edtech-course-icon {
    width: 20px;
    height: 20px;
    background: #fde68a;
    border-radius: 4px;
    margin-bottom: 6px
}

.edtech-course-title {
    font-size: 9px;
    font-weight: 600;
    color: #78350f
}

.a11y-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 4px
}

/* pricing.css */
/* Pricing Section */
.pricing-section {
    background: #0A0A0A;
    padding: clamp(100px, 15vw, 160px) 0;
    position: relative;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 48px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-tier {
    background: #161616;
    padding: 40px 30px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.pricing-tier:hover {
    border-left-color: #DC143C;
    transform: translateY(-5px);
}

.pricing-tier.tier-featured {
    border-left-color: #DC143C;
    background: linear-gradient(135deg, #161616 0%, #1a1a1a 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #DC143C;
    color: #FAFAFA;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 4px;
}

.tier-header {
    margin-bottom: 30px;
}

.tier-name {
    font-size: 24px;
    font-weight: var(--sub-header-weight);
    color: #FAFAFA;
    margin-bottom: 8px;
    letter-spacing: var(--sub-header-spacing);
}

.tier-tagline {
    font-size: 14px;
    color: #71717A;
    line-height: 1.5;
}

.tier-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #71717A;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: #DC143C;
    line-height: 1;
}

.tier-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.tier-features li {
    font-size: 14px;
    color: #FAFAFA;
    line-height: 2.2;
    padding-left: 20px;
    position: relative;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DC143C;
    font-weight: 700;
}

.tier-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid #FAFAFA;
    color: #FAFAFA;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: #FAFAFA;
    color: #0A0A0A;
}

.tier-cta-primary {
    background: #DC143C;
    border-color: #DC143C;
}

.tier-cta-primary:hover {
    background: #FAFAFA;
    border-color: #FAFAFA;
    color: #0A0A0A;
}

.launch-offer {
    background: linear-gradient(90deg, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.05) 100%);
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    padding: 60px 0;
    margin: 80px 0;
    position: relative;
}

.launch-offer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.offer-icon {
    font-size: 32px;
    color: #DC143C;
    flex-shrink: 0;
}

.offer-title {
    font-size: 20px;
    font-weight: var(--sub-header-weight);
    color: #FAFAFA;
    margin-bottom: 8px;
    letter-spacing: var(--sub-header-spacing);
}

.offer-description {
    font-size: 14px;
    color: #71717A;
    line-height: 1.6;
    margin-bottom: 0;
}

.offer-cta {
    padding: 14px 32px;
    background: #DC143C;
    color: #FAFAFA;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.offer-cta:hover {
    background: #e8163f;
    transform: translateY(-2px);
}

.inline-link {
    color: var(--crimson);
    text-decoration: none;
    font-weight: 700;
}

/* Scenarios Section */
.scenarios-section {
    padding: clamp(100px, 15vw, 160px) clamp(24px, 5vw, 48px);
    background: var(--deep-black);
}

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

.scenario-card {
    background: #161616;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.scenario-card:hover {
    border-color: var(--crimson);
    transform: translateY(-5px);
}

.scenario-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--off-white);
    margin-bottom: 24px;
    line-height: 1.4;
}

.scenario-recommendation {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--crimson);
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scenario-features {
    list-style: none;
    padding: 0;
}

.scenario-features li {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.scenario-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--crimson);
}

/* Detailed Package Styles */
.detailed-package-section {
    background: var(--deep-black);
    padding: clamp(80px, 10vw, 120px) 0;
}

.package-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.package-detail-card {
    background: var(--nero);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: clamp(32px, 5vw, 64px);
}

.package-detail-header {
    margin-bottom: 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 32px;
}

.package-detail-header h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    margin-bottom: 12px;
}

.package-detail-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--crimson);
    margin-bottom: 16px;
}

.package-detail-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.detail-group-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--crimson);
    margin-bottom: 24px;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 14px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--crimson);
}

/* Conditional Display */
.launch-offer~.investment-container .pricing-footer {
    display: none;
}

/* Engagement Grid */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.engagement-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.engagement-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.engagement-card.featured {
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.08) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-color: rgba(220, 20, 60, 0.3);
}

.engagement-card.featured:hover {
    border-color: var(--crimson);
}

.card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.engagement-card.featured .card-eyebrow {
    color: var(--crimson);
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--off-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.card-features {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.card-features li {
    font-size: 14px;
    color: var(--off-white);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-500);
}

.engagement-card.featured .card-features li::before {
    background: var(--crimson);
}

/* Comparison Section */
.comparison-section {
    padding: clamp(100px, 15vw, 160px) clamp(18px, 8vw, 120px);
    background: #0A0A0A;
    color: var(--off-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: #161616;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 0;
    /* Removed padding to fix sticky column scroll-behind issue */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table-wrapper:focus-visible {
    outline: 2px solid var(--crimson);
    outline-offset: 4px;
}

/* Custom Thin Crimson Scrollbar */
.comparison-table-wrapper::-webkit-scrollbar {
    height: 4px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 10px;
}

.comparison-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table-wrapper th,
.comparison-table-wrapper td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--gray-500);
    /* Restored to gray-500 for AAA contrast */
    font-size: 14px;
    transition: background 0.2s ease;
}

.comparison-table-wrapper th:first-child,
.comparison-table-wrapper td:first-child {
    padding-left: 32px;
    text-align: left;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--off-white);
    position: sticky;
    left: 0;
    background: #161616;
    z-index: 20;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.15);
    /* Soft shadow on the right side of sticky column */
}

.comparison-table-wrapper thead {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #161616;
}

.comparison-table-wrapper thead th {
    padding-top: 24px;
    padding-bottom: 24px;
    background: #1A1A1A;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.sticky-tier-names {
    display: none;
    /* Only show when needed or for specific mobile logic */
}

.comparison-table-wrapper thead th {
    font-size: 1.5rem;
    color: var(--off-white);
}

.comparison-table-wrapper .price-row td {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--crimson-text);
    /* Higher contrast crimson */
    letter-spacing: -0.02em;
}

.comparison-table-wrapper .check {
    color: var(--crimson-text);
    font-weight: 800;
}

.comparison-table-wrapper .dash {
    color: var(--gray-700);
}

/* Accessibility Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Zebra Striping */
.comparison-table-wrapper tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table-wrapper tbody tr:hover {
    background: rgba(220, 20, 60, 0.05);
}

/* Professional Column Highlight - World Class */
.comparison-table-wrapper tr td:nth-child(4),
.comparison-table-wrapper tr th:nth-child(4) {
    background: rgba(220, 20, 60, 0.04);
    position: relative;
    border-left: 1px solid rgba(220, 20, 60, 0.15);
    border-right: 1px solid rgba(220, 20, 60, 0.15);
}

.comparison-table-wrapper tr th:nth-child(4) {
    background: rgba(220, 20, 60, 0.08);
}

/* Scroll Hint - Premium Independent Style */
.scroll-hint-container {
    display: none;
    justify-content: center;
    margin-bottom: 40px;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 20px;
    background: rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 100px;
    color: var(--off-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hint-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--crimson);
    border-radius: 50%;
    color: white;
}

.hint-icon svg {
    width: 14px;
    height: 14px;
    animation: swipeHint 2s infinite ease-in-out;
}

@keyframes swipeHint {

    0%,
    100% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(2px);
    }
}

/* Enhanced Engagement Card Styles */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.engagement-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.engagement-card:hover {
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--crimson);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.engagement-card:hover .card-icon svg {
    transform: scale(1.1) rotate(-5deg);
}

.card-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.card-title {
    font-size: 24px;
    font-weight: var(--header-weight);
    color: var(--off-white);
    margin-bottom: 16px;
    line-height: var(--header-line-height);
    letter-spacing: var(--header-spacing);
}

.card-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Card Meta (Investment/Timeline) */
.card-meta {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    margin-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.1em;
}

.meta-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--off-white);
}

.card-features {
    list-style: none;
    padding: 0;
}

.card-features li {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}

.card-features li::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--crimson);
}

/* Featured State Override */
.engagement-card.featured {
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.08) 0%, rgba(10, 10, 10, 0.5) 100%) !important;
    border-color: rgba(220, 20, 60, 0.3) !important;
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.1) !important;
}

.engagement-card.featured:hover {
    border-color: var(--crimson) !important;
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.2) !important;
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--crimson);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 6px 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom-left-radius: 12px;
}

.engagement-card.featured .card-eyebrow {
    color: var(--crimson) !important;
}

/* legal.css */
/* Legal Pages */
.legal-content {
    padding: clamp(120px, 15vw, 160px) clamp(24px, 5vw, 48px) clamp(60px, 8vw, 100px);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-header {
    margin-bottom: 64px;
    text-align: left;
}

.legal-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: var(--header-weight);
    letter-spacing: var(--header-spacing);
    line-height: var(--header-line-height);
    margin-bottom: 24px;
}

.legal-body {
    color: var(--gray-500);
    font-size: 16px;
    line-height: 1.8;
}

.legal-body h2 {
    color: var(--off-white);
    font-size: 24px;
    font-weight: var(--sub-header-weight);
    margin: 48px 0 24px;
    letter-spacing: var(--sub-header-spacing);
}

/* banner.css */
/* Shared Announcement Banner Styles - Source of Truth */

/* Desktop / Default Styles */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 48px;
    /* Standardized height */
    z-index: 5000;
    /* High z-index to stay above nav */
    background: #DC143C;
    /* Crimson fallback */
    background: var(--crimson, #DC143C);
    color: white;
    color: var(--off-white, white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    /* Ensure font consistency */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.announcement-banner:hover {
    background: #c11235;
}

.banner-text {
    display: inline;
}

.banner-extra {
    display: inline;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: banner-pulse-shared 1.5s infinite;
}

@keyframes banner-pulse-shared {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.banner-cta {
    display: inline-flex;
    /* Fix for alignment */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
    font-weight: 700;
    line-height: normal;
    /* Reset line-height */
}

.announcement-banner:hover .banner-cta {
    background: white;
    color: #DC143C;
    color: var(--crimson, #DC143C);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .banner-extra,
    .banner-prefix {
        display: none;
        /* Hide extra text and prefix on mobile */
    }

    .announcement-banner {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        height: auto;
        padding: 6px 16px;
        font-size: 11px;
    }

    .banner-cta {
        padding: 2px 8px;
        font-size: 10px;
    }

    /* Ensure content stacks if very narrow */
    .banner-text {
        margin-bottom: 2px;
    }
}

/* responsive.css */
@media (max-width: 768px) {
    .section {
        padding: 80px 24px !important;
    }

    /* Hero Section - Completely Reworked */
    .hero {
        padding: 140px 24px 40px;
        min-height: calc(100vh - 110px);
        /* Subtract banner and nav height */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Hero Section - Completely Reworked */

    .hero-inner {
        padding: 0;
        max-width: 100%;
    }

    .hero-badge {
        padding: 8px 16px;
        margin-bottom: 24px;
    }

    .badge-text {
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .hero-title {
        font-size: 32px;
        font-weight: var(--header-weight);
        line-height: var(--header-line-height);
        letter-spacing: var(--header-spacing);
        margin-bottom: 20px;
    }

    /* Remove force line breaks on mobile */
    .hero-title br {
        display: none;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: auto;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: auto;
        display: inline-flex;
        padding: 14px 28px;
        font-size: 12px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Logo Scroll - Simplified */
    .logo-scroll-section {
        padding: 24px 0;
    }

    .logo-scroll-label {
        font-size: 9px;
        padding: 0 16px;
        margin-bottom: 16px;
    }

    .scroll-text {
        font-size: 12px;
        gap: 16px;
    }

    /* Value Props / Why Us Section */
    .reasons,
    .value-props {
        padding: 48px 16px;
    }

    .value-props-inner {
        grid-template-columns: 1fr !important;
        gap: 12px;
        margin-top: 32px !important;
    }

    .value-prop {
        padding: 28px 24px;
        text-align: left;
        border-radius: 12px;
    }

    .value-prop-icon {
        width: 48px;
        height: 48px;
        margin: 0 0 16px 0;
    }

    .value-prop-icon svg {
        width: 18px;
        height: 18px;
    }

    .value-prop-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .value-prop-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* Process Section */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }

    .process-steps {
        gap: 0;
    }

    .process-step {
        padding: 14px 16px;
        margin-bottom: 2px;
    }

    .step-left {
        gap: 12px;
    }

    .step-num {
        font-size: 11px;
    }

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

    .step-duration {
        font-size: 10px;
    }

    .detail-card {
        padding: 24px 20px;
    }

    .detail-num {
        font-size: 60px;
        top: -5px;
        right: 5px;
    }

    .detail-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .detail-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Work/Projects Section */
    .project-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-image {
        height: 180px;
    }

    .project-info {
        padding: 24px 20px;
    }

    .industry-tag {
        font-size: 9px;
        padding: 3px 6px;
    }

    .project-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .project-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .transparency-notice {
        padding: 12px 16px;
        margin-bottom: 24px;
    }

    .transparency-notice p {
        font-size: 12px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }

    .service-card {
        padding: 28px 24px;
        border-radius: 12px;
    }

    .service-num {
        font-size: 32px;
        top: 12px;
        right: 12px;
    }

    .service-title {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .service-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .service-tags {
        gap: 4px;
    }

    .service-tag {
        font-size: 9px;
        padding: 4px 8px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 40px;
    }

    .pricing-section .section-header {
        margin-bottom: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

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

    .scenario-card {
        padding: 32px 24px;
    }

    .pricing-tier {
        padding: 32px 28px;
        border-radius: 8px;
    }

    .package-detail-card {
        padding: 32px 24px;
    }

    .package-detail-groups {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .detail-group-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .detail-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .featured-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .tier-name {
        font-size: 20px;
    }

    .tier-tagline {
        font-size: 13px;
    }

    .price-amount {
        font-size: 36px;
    }

    .tier-features li {
        font-size: 13px;
        line-height: 2;
    }

    .launch-offer {
        padding: 40px 0;
        margin: 40px 0;
    }

    .launch-offer-inner {
        padding: 0 16px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .offer-icon {
        font-size: 24px;
    }

    .offer-title {
        font-size: 17px;
    }

    .offer-description {
        font-size: 13px;
    }

    .offer-cta {
        padding: 12px 24px;
        font-size: 12px;
    }

    /* Accessibility Section */
    .accessibility {
        padding: 40px 16px;
    }

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

    .accessibility-badge {
        font-size: 9px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .accessibility h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .accessibility h3 br {
        display: none;
    }

    .accessibility p {
        font-size: 13px;
        line-height: 1.6;
    }

    .accessibility-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 0;
    }

    .accessibility-feature {
        padding: 12px;
    }

    .accessibility-feature-title {
        font-size: 11px;
    }

    .accessibility-feature-desc {
        font-size: 10px;
    }

    /* Contact Section */
    .contact {
        padding: 60px 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-process {
        padding: 28px 24px;
        margin-bottom: 28px;
        border-radius: 12px;
    }

    .contact-expect-title {
        font-size: 18px;
    }

    .process-steps-list {
        margin-top: 16px;
    }

    .process-step-item {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .form-label {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 6px;
    }

    .form-textarea {
        min-height: 80px;
    }

    .form-submit-container .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        padding: 14px 32px;
    }

    /* Increased spacing for requested sections */


    .accessibility,
    .contact {
        padding: 80px 24px !important;
        margin-top: 40px;
    }

    /* Footer */
    /* Footer Rework */
    .footer {
        padding: 64px 24px 32px;
        background: #0D0D0D;
        /* Slightly lighter than deep-black for depth */
        border-top: 1px solid rgba(255, 255, 255, 0.03);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 24px;
        text-align: left;
    }

    .footer-brand {
        grid-column: span 2;
        margin-bottom: 8px;
    }

    .footer-brand-desc {
        font-size: 14px;
        line-height: 1.6;
        color: var(--gray-500);
        max-width: 280px;
        margin-top: 12px;
    }

    .footer-heading {
        font-size: 10px;
        font-weight: 800;
        color: var(--crimson);
        margin-bottom: 20px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .footer-link {
        font-size: 14px;
        color: var(--gray-500);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-link:hover {
        color: var(--off-white);
    }

    .footer-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 12px 24px;
        padding-top: 48px;
        margin-top: 48px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-copy {
        font-size: 12px;
        color: var(--gray-400);
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px 16px;
        width: auto;
    }

    .footer-legal-link {
        font-size: 11px;
        color: var(--gray-500);
        text-decoration: none;
    }

    /* Section Headers Global */
    .section-header {
        margin-bottom: 24px;
    }

    .section-label {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .section-title {
        font-size: 24px;
        font-weight: var(--header-weight);
        line-height: var(--header-line-height);
        letter-spacing: var(--header-spacing);
    }

    .section-desc {
        font-size: 13px;
        margin-top: 8px;
        line-height: 1.5;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 11px;
        border-radius: 4px;
    }

    .btn-primary {
        min-height: 44px;
    }

    /* Stats Bar */
    .stats-bar {
        padding: 32px 16px;
    }

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

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

    .stat-label {
        font-size: 9px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .testimonial-name {
        font-size: 13px;
    }

    .testimonial-role {
        font-size: 11px;
    }

    /* CTA Section */
    .cta {
        padding: 48px 16px;
    }

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

    .cta-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

/* Small Mobile Breakpoint (480px) - Reworked for better spacing */
@media (max-width: 480px) {
    .section {
        padding: 60px 20px !important;
    }

    /* Hero - Extra Small */
    .hero {
        padding: 90px 24px 40px;
    }

    .hero-badge {
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
    }

    .badge-text {
        font-size: 10px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Stats - Single column */
    .stats-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    /* Section headers */
    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 14px;
    }

    /* Process - Compact but readable */
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

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

    /* Accessibility compact */
    .accessibility-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .accessibility-feature {
        padding: 16px;
    }

    /* Footer - Better Grid for Mobile */
    .footer {
        padding: 40px 24px 24px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 16px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    /* Project cards standard padding */
    .project-image {
        height: 200px;
    }

    .project-info {
        padding: 20px;
    }

    .project-title {
        font-size: 18px;
    }

    /* Pricing readability */
    .price-amount {
        font-size: 36px;
    }

    .tier-name {
        font-size: 20px;
    }

    .pricing-tier {
        padding: 24px;
    }

    /* Toast compact */
    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 16px;
    }

    /* Value props readable */
    .value-prop {
        padding: 24px;
    }

    .value-prop-icon {
        width: 44px;
        height: 44px;
    }

    /* Service cards readable */
    .service-card {
        padding: 24px;
    }

    .service-num {
        font-size: 32px;
    }
}



/* Very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }

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

    .price-amount {
        font-size: 28px;
    }

    .tier-name {
        font-size: 16px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 10px;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {

    .btn,
    .nav-link,
    .footer-link,
    .mobile-nav-link {
        min-height: 44px;
    }

    .process-step {
        min-height: 48px;
    }

    .service-card,
    .project-card,
    .value-prop {
        cursor: pointer;
    }
}

/* ==========================================================
       PAGE SPECIFIC MOBILE FIXES
       ========================================================== */
@media (max-width: 768px) {

    /* Services & About Page Heroes - Override inline/embedded styles */
    .services-hero,
    .about-hero {
        padding: 100px 24px 60px !important;
    }

    .services-hero h1,
    .about-hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 24px !important;
    }

    .services-hero p,
    .about-hero p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        padding: 0 16px;
    }

    /* Comparison Table Section */
    .comparison-section {
        padding: 60px 24px !important;
    }

    .comparison-table-wrapper {
        padding: 24px !important;
        border-radius: 12px !important;
    }

    /* Services Methodology */
    .methodology {
        padding: 60px 24px !important;
    }

    .method-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* About Page Story Section */
    .story-section {
        padding: 60px 24px !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .story-content h2 {
        font-size: 28px !important;
    }

    .story-image {
        height: 300px !important;
    }

    /* About Page Values */
    .values-section {
        padding: 60px 24px !important;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
        margin-top: 40px !important;
    }

    .value-card {
        padding: 24px !important;
    }

    /* Founder Section on About Page */
    .founder-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .founder-image-container {
        width: 100% !important;
    }

    .founder-content {
        text-align: left;
    }
}

/* Services Page Mobile Optimization */
@media (max-width: 768px) {
    .services-hero {
        padding: 120px 24px 60px !important;
    }

    .services-hero h1 {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .services-hero p {
        font-size: 15px !important;
        line-height: 1.6;
    }

    .comparison-section {
        padding: 60px 18px !important;
    }

    .comparison-table-wrapper {
        padding: 0 !important;
        border-radius: 12px !important;
        margin: 0 !important;
        border-right: none;
        border-left: none;
    }

    .comparison-table-wrapper table {
        min-width: 650px;
        /* Slightly narrower to fit content better */
    }

    .comparison-table-wrapper th,
    .comparison-table-wrapper td {
        padding: 20px 14px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }

    .comparison-table-wrapper th:first-child,
    .comparison-table-wrapper td:first-child {
        min-width: 120px;
        font-size: 10px !important;
        padding-left: 16px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .scroll-hint-container {
        display: flex;
    }

    /* Fixed header on mobile */
    .comparison-table-wrapper table {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Adjust price row for mobile */
    .comparison-table-wrapper .price-row td {
        font-size: 1.1rem !important;
    }

    .methodology {
        padding: 60px 18px !important;
    }

    .method-grid {
        gap: 20px !important;
    }

    .method-card {
        padding: 24px !important;
    }

    .method-title {
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
    }

    .method-desc {
        font-size: 14px !important;
    }
}

/* Package Detail Responsiveness */
@media (max-width: 770px) {
    .package-detail-groups {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .detail-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .detail-list li {
        padding-left: 0 !important;
        text-align: center;
    }

    .detail-list li::before {
        display: none;
        /* Remove arrow for centered text to keep it clean */
    }

    .package-detail-card {
        padding: 40px 24px !important;
        border-radius: 12px !important;
    }

    .package-detail-header {
        margin-bottom: 32px !important;
        padding-bottom: 24px !important;
    }
}

/* Engagement Options Mobile */
@media (max-width: 900px) {
    .engagement-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 40px !important;
    }

    .engagement-card {
        padding: 32px 24px !important;
    }

    .card-meta {
        gap: 40px !important;
    }
}

/* ============================================
   ACCESSIBILITY CONTRAST FIXES
   Overrides for specific elements to meet WCAG AA
   ============================================ */

/* Fix inline-link contrast on dark backgrounds */
.inline-link {
    color: #FF99AD !important;
    /* Lighter pink for >4.5:1 ratio */
    text-decoration: underline;
}

/* Fix gray text in pricing section */
.pricing-section .tier-tagline,
.pricing-section .price-label,
.pricing-section .offer-description {
    color: var(--gray-500) !important;
    /* Forces #D4D4D8 */
}

/* Fix contact section text */
.contact-expect-title {
    color: var(--off-white) !important;
    font-weight: 700;
}

.contact-process {
    color: var(--gray-500);
}

.contact-process strong {
    color: var(--off-white);
}

/* Ensure links in footer/dark areas pass */
a.inline-link:focus,
a.inline-link:hover {
    color: #fff !important;
    background: rgba(220, 20, 60, 0.2);
    outline: 2px solid var(--crimson);
}