/* ===== SMARTFORGE POLYMERS STYLES ===== */
/* Dark mode-inspired layout with neon accents and futuristic design */

/* ===== MOBILE-FIRST RESPONSIVE FIXES ===== */
/* Ensure proper mobile viewport and prevent horizontal scrolling */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

/* Mobile-first container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Override the old container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Mobile-first grid system */
.grid {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }

/* Mobile-first flexbox utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

/* Mobile-first spacing */
.m-0 { margin: 0; }
.p-0 { padding: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

/* Mobile-first text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Mobile-first display utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

/* Mobile-first width utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-full { max-width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* Mobile-first responsive breakpoints */
@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1280px) {
    .container { padding: 0 2rem; }
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Color Palette - MicroForge Brand Guidelines - CORRECTED PROPORTIONS */
    --primary-accent: #ff6347; /* Tomato Red - Primary Accent (10%) - Use sparingly for highlights only */
    --primary-dark: #0A1C3F; /* Navy Blue - Primary Dark (45%) - Main background, dominant color */
    --secondary-neutral: #ecf0f1; /* Cloud - Secondary Neutral (35%) - Secondary backgrounds, cards */
    --secondary-accent: #3498db; /* Dodger Blue - Secondary Accent (5%) - Minimal usage, subtle accents */
    --text-details: #7f8c8d; /* Asbestos - Text & Details (5%) - Body text, secondary information */
    --primary-white: #FFFFFF;
    --text-gray: #7f8c8d; /* Updated to match text-details color */
    --text-dark: #0A1C3F; /* Updated to match primary-dark */
    
    /* Typography - Brand Guidelines */
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    --border-radius: 8px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    /* Shadows */
    --shadow-primary: 0 0 20px rgba(255, 99, 71, 0.3);
    --shadow-secondary: 0 0 30px rgba(52, 152, 219, 0.4);
    --shadow-dark: 0 0 25px rgba(10, 28, 63, 0.3);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark); /* 45% - Primary Dark as main background */
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent mid-word breaking - words move to next line instead */
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 700;
    line-height: 1.2;
    /* Prevent mid-word breaking for headings */
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-family: var(--font-body);
    /* Prevent mid-word breaking for paragraphs */
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
}

/* ===== LAYOUT UTILITIES ===== */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: inherit; /* Inherit color from parent section */
    position: relative;
}

/* Mobile-first section utilities */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem;
        line-height: 1.3;
        /* Prevent mid-word breaking on mobile - words move to next line */
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
        white-space: normal !important;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    border-radius: 2px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(236, 240, 241, 0.9); /* Secondary Neutral - Cloud with transparency */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10, 28, 63, 0.2); /* Primary Dark border */
    z-index: 1000;
    padding: 0.5rem 0;
}

/* Mobile-first navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
        order: 3;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 28, 63, 0.95); /* Primary Dark Blue with transparency */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 99, 71, 0.1);
    }
    
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 0;
        margin: 0;
        color: #ffffff !important; /* White text for mobile menu */
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 99, 71, 0.1);
        color: #ff8a65 !important; /* Lighter orange for better visibility on dark background */
    }
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #000000; /* Black */
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-header);
    transition: var(--transition-smooth);
    z-index: 1001;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}


.logo a:hover .logo-img {
    opacity: 0.8;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    z-index: 1001;
}

.nav-cta {
    margin-left: 2rem;
    z-index: 1001;
}

.book-call-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    color: var(--primary-white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-header);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.8rem;
    z-index: 1001;
}

.book-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.book-call-btn:hover::before {
    left: 100%;
}

.book-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 99, 71, 0.25); /* Subtle shadow for depth */
    border-color: var(--primary-accent);
}

.nav-link {
    color: #000000; /* Black */
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
    display: block;
    padding: 0.5rem 0;
    z-index: 1001;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
}

.nav-link:active {
    transform: scale(0.95);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000; /* Black for visibility on light background */
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Mobile menu active states */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--primary-dark); /* 45% - Primary Dark as main background */
    overflow: hidden;
    padding-top: 80px; /* Reduced padding for mobile */
}

/* Ensure proper mobile layout structure */
@media (max-width: 768px) {
    .hero {
        justify-content: flex-start !important;
        padding-top: 70px !important;
        padding-bottom: 2rem !important;
    }
    
    .hero-content {
        order: 1 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-cta {
        order: 2 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-tagline {
        margin-top: 1rem !important;
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
    }
}

/* Mobile-first hero section */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 70px;
        padding-bottom: 2rem;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    .hero-content {
        padding: 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        order: 1 !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        /* Prevent mid-word breaking on mobile - words move to next line */
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
        white-space: normal !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        /* Prevent mid-word breaking on mobile - words move to next line */
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
        white-space: normal !important;
    }
    
    .impossible-text {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .stat-item {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 1rem !important;
    }
    
    .stat-number, .stat-x {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-integrated-process {
        text-align: center;
        margin: 2rem 0 1.5rem 0;
        padding: 0 1rem;
        order: 2 !important;
    }
    
    .hero-integrated-process p {
        font-size: 1.1rem;
        color: var(--primary-white);
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        margin-top: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        order: 3 !important;
    }
    
    .hero-tagline {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        padding: 0 1rem;
        order: 3;
        z-index: 1;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding-top: 65px;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.4;
        padding: 0 0.3rem;
        /* Fix word breaking on small mobile */
        word-break: normal !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 0.3rem;
        /* Fix word breaking on small mobile */
        word-break: normal !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    .impossible-text {
        font-size: 1.1rem;
    }
    
    .stat-item {
        max-width: 250px !important;
        padding: 0.8rem !important;
    }
    
    .stat-number, .stat-x {
        font-size: 1.6rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    .hero-cta .cta-button {
        max-width: 250px !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* Removed distracting background effects for clean, elite appearance */

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 2rem; /* Additional top spacing */
    padding-bottom: 1rem; /* Reduced bottom spacing */
    order: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-white); /* Clean white text for elite appearance */
    margin-bottom: 2rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    /* Prevent mid-word breaking - words move to next line */
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    white-space: normal;
}

/* Removed glitch text effects for clean, elite appearance */

/* Removed unused gradient shift animation */

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-white); /* Pure white text for clean appearance */
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.impossible-text {
    color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #ecf0f1; /* Secondary Neutral - Cloud */
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 28, 63, 0.1); /* Primary Dark border */
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

/* Override hero section stat items specifically */
.hero .stat-item {
    background: #ecf0f1 !important; /* Secondary Neutral - Cloud */
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Primary Dark border */
}

.hero .stat-label {
    color: #0A1C3F !important; /* Primary Dark - Navy Blue for contrast on light background */
}

.stat-item:hover {
    border-color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    box-shadow: 0 6px 20px rgba(255, 99, 71, 0.2); /* Subtle shadow for depth */
    transform: translateY(-5px);
}

.stat-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-header);
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.stat-x {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-header);
    color: var(--primary-accent);
    margin-left: 0.2rem;
    margin-right: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #0A1C3F; /* Primary Dark - Navy Blue for contrast on light background */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.3;
}

.hero-cta {
    margin-top: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    text-align: center;
    color: var(--primary-white); /* Pure white text for clean appearance */
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 2;
    margin-top: 1rem;
    padding: 0 1rem;
}

.hero-tagline p {
    color: var(--primary-white) !important; /* Force pure white text for clean appearance */
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    color: var(--primary-white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-header);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 0.5rem 0;
}

/* Mobile-first buttons */
@media (max-width: 768px) {
    .cta-button {
        padding: 0.9rem 2rem !important;
        font-size: 0.95rem !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0.5rem auto !important;
        display: block !important;
        white-space: normal !important;
    }
    
    .book-call-btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        max-width: 280px !important;
    }
    
    .book-call-btn {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 99, 71, 0.25); /* Subtle shadow for depth */
}

.glow-button {
    /* Removed excessive glow effects for clean, elite appearance */
}

.glow-button:hover {
    /* Removed excessive glow effects for clean, elite appearance */
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    padding: var(--section-padding);
    color: var(--primary-dark); /* Dark text on light background */
}

.numbered-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Mobile-first features */
@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }
    
    .numbered-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem !important;
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }
    
    .feature-number {
        font-size: 1.8rem !important;
    }
    
    .feature-item h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem;
    }
    
    .feature-item p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }
    
    .feature-tags {
        gap: 0.8rem !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        padding: 0 1rem;
    }
    
    .feature-tag {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}

@media (min-width: 769px) {
    .numbered-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .numbered-features {
        grid-template-columns: repeat(5, 1fr);
    }
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--primary-white); /* White cards on light background */
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 28, 63, 0.1); /* Subtle border using primary-dark */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 28, 63, 0.1); /* Subtle shadow */
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    box-shadow: 0 8px 25px rgba(10, 28, 63, 0.15); /* Subtle shadow for depth */
}

.feature-number {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-header);
    color: var(--primary-accent);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feature-item h3 {
    color: var(--primary-dark); /* Dark text on white cards */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-details); /* Text details color for body text */
    font-size: 0.9rem;
}

.feature-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(52, 152, 219, 0.1); /* Secondary accent background (5% usage) */
    border: 1px solid var(--secondary-accent); /* Secondary accent border (5% usage) */
    border-radius: 20px;
    color: var(--secondary-accent); /* Secondary accent text (5% usage) */
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    z-index: 1;
}

.feature-tag:hover {
    background: var(--secondary-accent); /* Secondary accent background (5% usage) */
    color: var(--primary-white);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2); /* Subtle shadow for depth */
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--primary-dark); /* 45% - Primary Dark background */
    padding: var(--section-padding);
    text-align: center;
    color: var(--primary-white); /* White text on dark background */
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-white); /* Pure white text for clean appearance */
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-cta {
    text-align: center;
    font-size: 1rem;
    color: var(--primary-white); /* Pure white text for clean appearance */
    margin-bottom: 2rem;
}

.gallery-cta-button {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-cta-button .cta-button {
    width: auto;
    max-width: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile-first gallery */
@media (max-width: 768px) {
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .gallery-item {
        margin: 0 auto !important;
        max-width: 400px !important;
        width: 100% !important;
    }
    
    .gallery-image {
        height: 220px !important;
    }
    
    .gallery-subtitle {
        font-size: 1rem !important;
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    
    .gallery-cta {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-cta-button {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-cta-button .cta-button {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

.gallery-item {
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(52, 152, 219, 0.1); /* Secondary accent border (5% usage) */
    position: relative;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-accent); /* Secondary accent border (5% usage) */
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15); /* Subtle shadow for depth */
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.9);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.1); /* Secondary accent background (5% usage) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--secondary-accent); /* Secondary accent text (5% usage) */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===== OFFERS SECTION ===== */
.offers {
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    padding: var(--section-padding);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-dark); /* Dark text on light background */
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

/* Mobile-first offers */
@media (max-width: 768px) {
    .offers {
        padding: 3rem 0;
    }
    
    .offers-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .offer-item {
        padding: 2rem 1.5rem !important;
        margin: 0 auto;
        max-width: 500px;
        width: 100%;
    }
    
    .offer-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem;
    }
    
    .offer-item h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem;
    }
    
    .offer-item p {
        font-size: 0.95rem !important;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .offer-benefits li {
        font-size: 0.85rem !important;
        margin-bottom: 0.6rem;
    }
    
    .offers-cta {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .offers-cta .cta-button {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

@media (min-width: 769px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.offer-item {
    background: var(--primary-white); /* White cards on light background */
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 28, 63, 0.1); /* Subtle border using primary-dark */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(10, 28, 63, 0.1); /* Subtle shadow */
    z-index: 1;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
}

.offer-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    box-shadow: 0 8px 25px rgba(10, 28, 63, 0.15); /* Subtle shadow for depth */
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.offer-item h3 {
    color: var(--primary-dark); /* Dark text on white cards */
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.offer-item p {
    color: var(--text-details); /* Text details color for body text */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-benefits {
    list-style: none;
    text-align: left;
}

.offer-benefits li {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.offer-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    font-weight: bold;
}

.offers-cta {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.offers-cta .cta-button {
    width: auto;
    max-width: none;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--primary-dark); /* 45% - Primary Dark background */
    padding: var(--section-padding);
    color: var(--primary-white); /* White text on dark background */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Mobile-first contact */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem;
    }
    
    .contact-info p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .contact-details {
        gap: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.95rem !important;
    }
    
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .calendly-container {
        padding: 1.5rem !important;
    }
    
    .calendly-header h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.4rem;
    }
    
    .calendly-header p {
        font-size: 0.85rem !important;
    }
    
    .calendly-button .cta-button {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
}

@media (min-width: 769px) {
    .contact-content {
        grid-template-columns: 1fr 2fr; /* Give Calendly widget much more space */
        gap: 3rem;
    }
}

.contact-info h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: var(--primary-white); /* Pure white text for clean appearance */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-white); /* Pure white text for clean appearance */
    font-size: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-form {
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 28, 63, 0.1); /* Border using primary-dark */
    color: var(--primary-dark); /* Dark text on light background */
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--primary-white); /* White background for inputs */
    border: 1px solid rgba(10, 28, 63, 0.2); /* Border using primary-dark */
    border-radius: var(--border-radius);
    color: var(--primary-dark); /* Dark text on white background */
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    box-shadow: 0 2px 8px rgba(255, 99, 71, 0.2); /* Subtle shadow for depth */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-details); /* Text details color for placeholders */
}

/* ===== CALENDLY INTEGRATION ===== */
.calendly-container {
    background: var(--secondary-neutral) !important; /* 35% - Secondary Neutral for contrast */
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Border using primary-dark */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-dark) !important; /* Dark text on light background */
    position: relative;
    z-index: 1;
}

.calendly-header h3 {
    color: var(--primary-dark) !important; /* Dark text on light background */
}

.calendly-header p {
    color: var(--text-details) !important; /* Text details color for body text */
}

.calendly-header {
    margin-bottom: 2rem;
}

.calendly-header h3 {
    color: var(--primary-dark); /* Dark text on light background */
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.calendly-header p {
    color: var(--text-details); /* Text details color for body text */
    font-size: 0.9rem;
    margin: 0;
}

.calendly-button {
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.calendly-button .cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    width: auto;
    max-width: none;
}

/* Calendly Widget Styling */
.calendly-widget-container {
    min-height: 400px;
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Make the contact form area wider to accommodate the widget */
.contact-form {
    min-width: 0; /* Allow flex shrinking */
    flex: 1.2; /* Give it more space than the contact info */
}

/* Ensure Calendly widget uses full available width */
.calendly-widget-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* Responsive adjustments for Calendly widget */
@media (max-width: 768px) {
    .calendly-widget-container {
        min-height: 350px;
        height: 350px;
    }
    
    .calendly-container {
        padding: 20px;
    }
    
    .calendly-header h3 {
        font-size: 1.3rem;
    }
}

/* ===== FOOTER ===== */
/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

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

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    color: white;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6347, #e55a3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #ff6347;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.2);
}

.newsletter-submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6347, #e55a3f);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 99, 71, 0.3);
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

.newsletter-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

/* Mobile responsiveness for newsletter */
@media (max-width: 768px) {
    .newsletter {
        padding: 3rem 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form-container {
        padding: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .newsletter-form-container {
        padding: 1rem;
    }
}

.footer {
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(10, 28, 63, 0.1); /* Border using primary-dark */
    color: var(--primary-dark); /* Dark text on light background */
}

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

/* Mobile-first footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        padding: 0 1rem;
    }
    
    /* Center footer logo on mobile */
    .footer-logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    
    .footer-logo a {
        justify-content: center !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .footer-section h4 {
        font-size: 1rem !important;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem !important;
    }
    
    .footer-logo a {
        font-size: 1.1rem !important;
        justify-content: center !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .footer-logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    
    .footer-logo .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem !important;
        padding: 0 1rem;
    }
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-section h4 {
    color: var(--primary-dark); /* Dark text on light background */
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: var(--text-details); /* Text details color for body text */
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-details); /* Text details color for links */
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--primary-accent); /* Primary accent on hover (10% usage) */
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary-dark); /* Dark text on light background */
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-header);
    transition: var(--transition-smooth);
    justify-content: flex-start;
}

.footer-logo a:hover {
    color: var(--primary-accent); /* Primary accent on hover (10% usage) */
}

/* Footer logo without framing - just clickable */
.footer-logo .logo-img {
    border: none;
    box-shadow: none;
    clip-path: none;
    padding: 0;
    transform: none;
    background: transparent;
}

.footer-logo .logo-img::before {
    display: none;
}

.footer-logo a:hover .logo-img {
    transform: scale(1.05);
    box-shadow: none;
}

.footer-logo a:hover .logo-img::before {
    display: none;
}

.footer-logo span {
    color: var(--primary-dark); /* Dark text on light background */
    font-weight: 700;
    font-family: var(--font-header);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(10, 28, 63, 0.1); /* Border using primary-dark */
    color: var(--text-details); /* Text details color */
    font-size: 0.9rem;
}

/* ===== ADDITIONAL RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .breakthrough-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .breakthrough-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .breakthrough-stat {
        padding: 1.5rem 1rem;
    }
    
    .breakthrough-stat .stat-number {
        font-size: 2rem;
    }
    
    .breakthrough-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .tech-visualization {
        min-height: 250px;
        padding: 1.5rem;
    }
    
    .tech-visualization h4 {
        font-size: 1.3rem;
    }
    
    .video-container {
        min-height: 300px;
    }
    
    .video-overlay {
        padding: 1.5rem;
    }
    
    .video-overlay h3 {
        font-size: 1.3rem;
    }
    
    .video-overlay p {
        font-size: 0.8rem;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .mission-stat-item {
        padding: 1rem 0.5rem;
    }
    
    .mission-stat-item h3 {
        font-size: 2rem;
    }
    
    .mission-stat-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .breakthrough-text h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .breakthrough-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .breakthrough-stats {
        gap: 1rem;
    }
    
    .breakthrough-stat {
        padding: 1.2rem 0.8rem;
    }
    
    .breakthrough-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .breakthrough-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .tech-visualization {
        min-height: 200px;
        padding: 1rem;
    }
    
    .tech-visualization h4 {
        font-size: 1.1rem;
    }
    
    .video-container {
        min-height: 250px;
    }
    
    .video-overlay {
        padding: 1rem;
    }
    
    .video-overlay h3 {
        font-size: 1.1rem;
    }
    
    .video-overlay p {
        font-size: 0.7rem;
    }
    
    .process-step {
        padding: 1.2rem 0.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .breakthrough-text h3 {
        font-size: 1.4rem;
    }
    
    .breakthrough-text p {
        font-size: 0.9rem;
    }
    
    .breakthrough-stats {
        gap: 0.8rem;
    }
    
    .breakthrough-stat {
        padding: 1rem 0.6rem;
    }
    
    .breakthrough-stat .stat-number {
        font-size: 1.6rem;
    }
    
    .breakthrough-stat .stat-label {
        font-size: 0.7rem;
    }
    
    .tech-visualization {
        min-height: 180px;
        padding: 0.8rem;
    }
    
    .tech-visualization h4 {
        font-size: 1rem;
    }
    
    .video-container {
        min-height: 200px;
    }
    
    .video-overlay {
        padding: 0.8rem;
    }
    
    .video-overlay h3 {
        font-size: 1rem;
    }
    
    .video-overlay p {
        font-size: 0.65rem;
    }
    
    .process-step {
        padding: 1rem 0.6rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .process-step h3 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.8rem;
    }
}

/* ===== GALLERY MODAL ===== */

/* Enhanced modal animation */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    height: 80vh;
    max-height: 600px;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: default;
    pointer-events: auto;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 255, 0.2);
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    background: var(--primary-black);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: default;
    pointer-events: auto;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--primary-white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(0, 255, 255, 0.3);
    pointer-events: auto;
}

.close-modal:hover {
    color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    transform: scale(1.1);
    border-color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    background: rgba(255, 99, 71, 0.2); /* Primary accent background */
    box-shadow: 0 4px 15px rgba(255, 99, 71, 0.2); /* Subtle shadow for depth */
}

.modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    pointer-events: none;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2); /* Secondary accent border (5% usage) */
    flex-shrink: 0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.modal-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--primary-black);
    pointer-events: auto;
    overflow-y: auto;
    min-height: 0;
}

/* Custom scrollbar for modal details */
.modal-details::-webkit-scrollbar {
    width: 8px;
}

.modal-details::-webkit-scrollbar-track {
    background: rgba(52, 152, 219, 0.1); /* Secondary accent background (5% usage) */
    border-radius: 4px;
}

.modal-details::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.4); /* Secondary accent background (5% usage) */
    border-radius: 4px;
    border: 1px solid rgba(52, 152, 219, 0.2); /* Secondary accent border (5% usage) */
}

.modal-details::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 152, 219, 0.6); /* Secondary accent background (5% usage) */
}

/* Firefox scrollbar */
.modal-details {
    scrollbar-width: thin;
    scrollbar-color: rgba(52, 152, 219, 0.4) rgba(52, 152, 219, 0.1); /* Secondary accent colors (5% usage) */
}

.modal-details h3 {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modal-details p {
    color: var(--text-details); /* Text details color for body text */
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.modal-details ul li {
    color: var(--text-details); /* Text details color for body text */
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.modal-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Prevent hover effects when modal is open */


/* Fallback for browsers that don't support :has() */
body.modal-open .gallery-item:hover {
    transform: none;
}

body.modal-open .gallery-item:hover .gallery-overlay {
    opacity: 0;
}

body.modal-open .gallery-item {
    pointer-events: none;
}

body.modal-open .gallery-item:hover {
    transform: none !important;
}

body.modal-open .gallery-overlay {
    opacity: 0 !important;
}

/* Modal responsive styles */
@media (max-width: 768px) {
    .gallery-modal {
        width: 95%;
        height: 85vh;
        max-height: 500px;
        border-radius: 10px;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-details {
        padding: 1.5rem;
        overflow-y: auto;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gallery-modal {
        width: 98%;
        height: 90vh;
        max-height: 450px;
        border-radius: 8px;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-details {
        padding: 1rem;
        overflow-y: auto;
    }
    
    .modal-details h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .modal-details p {
        font-size: 0.9rem;
    }
    
    .close-modal {
        top: 8px;
        right: 12px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

/* ===== BREAKTHROUGH SECTION ===== */
.breakthrough {
    background: var(--primary-dark); /* 45% - Primary Dark as main background */
}

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

/* Mobile-first breakthrough */
@media (max-width: 768px) {
    .breakthrough {
        padding: 3rem 0;
    }
    
    .breakthrough-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
    }
    
    .breakthrough-text h3 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .breakthrough-text p {
        font-size: 1rem !important;
        margin-bottom: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .breakthrough-stats {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 1.5rem;
    }
    
    .breakthrough-stat {
        padding: 1.5rem 1rem !important;
        margin: 0 auto;
        max-width: 300px;
        width: 100%;
    }
    
    .breakthrough-stat .stat-number {
        font-size: 2rem !important;
    }
    
    .breakthrough-stat .stat-label {
        font-size: 0.8rem !important;
    }
    
    .mission-visual {
        order: -1;
    }
    
    .video-container {
        min-height: 300px !important;
    }
}

@media (min-width: 769px) {
    .breakthrough-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    }
}

.breakthrough-text h3 {
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.breakthrough-text p {
    margin-bottom: 1.5rem;
    color: var(--primary-white); /* Pure white text for clean appearance */
    font-size: 1.1rem;
}

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

.breakthrough-stat {
    text-align: center;
    padding: 1.5rem;
    background: #ecf0f1; /* Secondary Neutral - Cloud */
    border-radius: 10px;
    border: 1px solid rgba(10, 28, 63, 0.1); /* Primary Dark border */
    position: relative;
    z-index: 1;
}

.breakthrough-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-accent);
    font-family: var(--font-header);
}

.breakthrough-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #0A1C3F; /* Primary Dark - Navy Blue for contrast on light background */
    margin-top: 0.5rem;
}

.breakthrough-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-visualization {
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--primary-white);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(255, 99, 71, 0.2); /* Subtle shadow for depth */
}

.tech-visualization h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-header);
}

/* ===== GROUNDBREAKING TECHNOLOGIES SECTION ===== */
.technologies {
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    color: var(--primary-dark); /* Dark text on light background */
}

.technologies .section-title {
    color: var(--primary-dark);
}

.technologies-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.technology-card {
    background: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(10, 28, 63, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.technology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-accent);
}

.technology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(10, 28, 63, 0.15);
}

.tech-header {
    background: var(--primary-accent);
    color: var(--primary-white);
    padding: 2rem;
    text-align: center;
}

.tech-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-header);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-body {
    padding: 2rem;
}

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

.tech-features li {
    color: var(--text-details);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.tech-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.tech-features li:last-child {
    margin-bottom: 0;
}

/* Mobile-first technologies */
@media (max-width: 768px) {
    .technologies {
        padding: 3rem 0;
    }
    
    .technologies-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .technology-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .tech-header {
        padding: 1.5rem;
    }
    
    .tech-header h3 {
        font-size: 1.1rem;
    }
    
    .tech-body {
        padding: 1.5rem;
    }
    
    .tech-features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        padding-left: 1.2rem;
    }
}

@media (min-width: 640px) {
    .scaleup-process {
        gap: 0;
        overflow-x: visible;
    }
    
    .phase-arrow {
        min-width: 160px;
    }
}

@media (min-width: 1024px) {
    .scaleup-process {
        gap: 0;
        overflow-x: visible;
    }
    
    .phase-arrow {
        min-width: 180px;
        padding: 1.5rem 2.5rem;
    }
}

/* ===== MISSION VISUAL ===== */
.mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1); /* Secondary accent border (5% usage) */
    z-index: 1;
}

.mission-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-overlay h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-overlay p {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .numbered-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .breakthrough-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .scaleup-process {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 180px;
        flex: 0 0 auto;
    }
    
    .numbered-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .breakthrough-content {
        gap: 3rem;
    }
    
    .scaleup-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Mobile menu styles consolidated - using first implementation */
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(255, 99, 71, 0.1);
        width: 100%;
        box-sizing: border-box;
        color: #ffffff !important; /* White text for mobile menu */
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 99, 71, 0.1);
        border-radius: 0;
        margin: 0;
        width: 100%;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Ensure hamburger is always visible */
    .hamburger {
        display: flex !important;
        z-index: 1002;
    }
    
    /* Hide desktop navigation */
    /* Mobile menu visibility handled by position: fixed and left: -100% */
    
    /* Ensure proper spacing for mobile menu items */
    .nav-menu .nav-link {
        margin: 0;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #ffffff !important; /* White text for mobile menu */
    }
    
    /* Add hover effects for mobile menu */
    .nav-menu .nav-link:hover {
        background: rgba(255, 99, 71, 0.15);
        color: #ff8a65 !important; /* Lighter orange for better visibility on dark background */
    }
    
    /* Ensure mobile menu doesn't interfere with other elements */
    .nav-menu.active + * {
        margin-top: 0;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding-top: 1rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-number, .stat-x {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .hero-integrated-process {
        text-align: center;
        margin: 2rem 0 1.5rem 0;
        padding: 0 1rem;
        order: 2 !important;
    }
    
    .hero-integrated-process p {
        font-size: 1.1rem;
        color: var(--primary-white);
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        margin-top: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        order: 3 !important;
    }
    
    .numbered-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .offer-item {
        padding: 2rem 1.5rem;
    }
    
    .breakthrough-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .breakthrough-stat {
        padding: 1.5rem 1rem;
    }
    
    .scaleup-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .feature-tags {
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 70px;
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
        max-width: 280px;
    }
    
    .stat-number, .stat-x {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item, .offer-item, .process-step {
        padding: 1.2rem 0.8rem;
    }
    
    .feature-number, .step-number {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 65px;
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 0 0.3rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .impossible-text {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .stat-item {
        padding: 1rem 0.6rem;
        max-width: 250px;
    }
    
    .stat-number, .stat-x {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .hero-cta {
        margin-top: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-item, .offer-item, .process-step {
        padding: 1rem 0.6rem;
    }
    
    .feature-number, .step-number {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .hamburger .bar {
        width: 22px;
        height: 2px;
    }
    
    .hero-tagline {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 1rem !important;
        padding: 0 1rem !important;
        z-index: 1 !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 1rem;
    }
    
    .hero-tagline p {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.4 !important;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .gallery-cta {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-cta-button {
        margin-bottom: 2rem;
    }
    
    .feature-tags {
        gap: 0.6rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .stat-item {
        max-width: 220px;
        padding: 0.8rem 0.5rem;
    }
    
    .stat-number, .stat-x {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .cta-button {
        max-width: 220px;
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .gallery-image {
        height: 160px;
    }
    
    .container {
        padding: 0 0.3rem;
    }
    
    .nav-container {
        padding: 0 0.3rem;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .hamburger .bar {
        width: 20px;
        height: 2px;
    }
    
    .hero-tagline {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 2rem !important;
        padding: 0 1rem !important;
        order: 3 !important;
        z-index: 1 !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 0.9rem;
    }
    
    .hero-tagline p {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.4 !important;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .gallery-cta {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .gallery-cta-button {
        margin-bottom: 1.5rem;
    }
    
    .feature-tags {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .breakthrough-text h3 {
        font-size: 1.3rem;
    }
    
    .breakthrough-text p {
        font-size: 0.85rem;
    }
    
    .breakthrough-stat {
        padding: 0.8rem 0.5rem;
    }
    
    .breakthrough-stat .stat-number {
        font-size: 1.4rem;
    }
    
    .breakthrough-stat .stat-label {
        font-size: 0.65rem;
    }
    
    .tech-visualization {
        min-height: 160px;
        padding: 0.6rem;
    }
    
    .tech-visualization h4 {
        font-size: 0.9rem;
    }
    
    .video-container {
        min-height: 180px;
    }
    
    .video-overlay {
        padding: 0.6rem;
    }
    
    .video-overlay h3 {
        font-size: 0.9rem;
    }
    
    .video-overlay p {
        font-size: 0.6rem;
    }
    
    .process-step {
        padding: 0.8rem 0.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .process-step h3 {
        font-size: 0.9rem;
    }
    
    .process-step p {
        font-size: 0.75rem;
    }
    
    .feature-item, .offer-item {
        padding: 0.8rem 0.5rem;
    }
    
    .feature-number {
        font-size: 1.4rem;
    }
    
    .feature-item h3, .offer-item h3 {
        font-size: 0.9rem;
    }
    
    .feature-item p, .offer-item p {
        font-size: 0.75rem;
    }
    
    .contact-form {
        padding: 0.8rem;
    }
    
    .calendly-container {
        padding: 1.5rem;
    }
    
    .calendly-header h3 {
        font-size: 1.3rem;
    }
    
    .calendly-header p {
        font-size: 0.8rem;
    }
    
    .calendly-button .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .feature-item:hover,
    .offer-item:hover,
    .process-step:hover,
    .gallery-item:hover {
        transform: none;
    }
    
    .stat-item:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .nav-link {
        padding: 0.8rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .cta-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        /* Keep existing colors for consistency */
    }
}

/* ===== FOCUS VISIBILITY IMPROVEMENTS ===== */
.nav-link:focus,
.cta-button:focus,
.book-call-btn:focus,
.hamburger:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 28, 63, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 99, 71, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 99, 71, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 99, 71, 0.3) rgba(10, 28, 63, 0.1);
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.gallery-item,
.feature-item,
.offer-item,
.process-step,
.stat-item {
    will-change: transform;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-accent);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.grid {
    display: grid;
    gap: 3rem;
}

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

/* Mission section - should have light background like features section */
section:has(.mission-content) {
    background: var(--secondary-neutral) !important; /* 35% - Secondary Neutral for contrast */
    color: var(--primary-dark) !important; /* Dark text on light background */
}

section:has(.mission-content) h2,
section:has(.mission-content) h3,
section:has(.mission-content) p {
    color: var(--primary-dark) !important; /* Dark text on light background */
}

/* Services section - should have dark background like gallery section */
.services {
    background: var(--primary-dark) !important; /* 45% - Primary Dark background */
    color: var(--primary-white) !important; /* White text on dark background */
}

.services .section-title {
    color: var(--primary-white) !important; /* White text on dark background */
}

/* Service items in services section should have light backgrounds */
.services .service-item {
    background: var(--secondary-neutral) !important; /* 35% - Secondary Neutral for contrast */
    color: var(--primary-dark) !important; /* Dark text on light background */
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Border using primary-dark */
}

.services .service-item h3 {
    color: var(--primary-dark) !important; /* Dark text on light background */
}

.services .service-item p {
    color: var(--text-details) !important; /* Text details color for body text */
}

/* Spec items in services section should have light backgrounds */
.services .spec-item {
    background: var(--secondary-neutral) !important; /* 35% - Secondary Neutral for contrast */
    color: var(--primary-dark) !important; /* Dark text on light background */
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Border using primary-dark */
}

.services .spec-item h4 {
    color: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
}

.services .spec-item ul li {
    color: var(--text-details) !important; /* Text details color for body text */
}

/* Business Model section - should have light background */
section:has(.grid-2):not(.services):not(.contact) {
    background: var(--secondary-neutral) !important; /* 35% - Secondary Neutral for contrast */
    color: var(--primary-dark) !important; /* Dark text on light background */
}

section:has(.grid-2):not(.services):not(.contact) h2,
section:has(.grid-2):not(.services):not(.contact) h3,
section:has(.grid-2):not(.services):not(.contact) p,
section:has(.grid-2):not(.services):not(.contact) li {
    color: var(--primary-dark) !important; /* Dark text on light background */
}

/* Business Model section specific styling */
section:has(.grid-2):not(.services):not(.contact) ul {
    list-style: none;
}

section:has(.grid-2):not(.services):not(.contact) ul li {
    color: var(--text-details) !important; /* Text details color for body text */
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

section:has(.grid-2):not(.services):not(.contact) ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
    font-weight: bold;
}

/* Team section - should have light background */
section:has(.team-grid) {
    background: var(--secondary-neutral) !important; /* 35% - Secondary Neutral for contrast */
    color: var(--primary-dark) !important; /* Dark text on light background */
}

section:has(.team-grid) .section-title {
    color: var(--primary-dark) !important; /* Dark text on light background */
}

/* Team member styling */
.team-member {
    background: var(--primary-white) !important; /* White cards on light background */
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Border using primary-dark */
    color: var(--primary-dark) !important; /* Dark text on light background */
}

.team-member h3 {
    color: var(--primary-dark) !important; /* Dark text on light background */
}

.team-member .member-title {
    color: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
}

.team-member p {
    color: var(--text-details) !important; /* Text details color for body text */
}

/* Mission stats should have proper styling */
.mission-stats {
    background: transparent !important; /* Transparent background to inherit from parent */
}

.mission-stat-item {
    background: var(--primary-white) !important; /* White cards on light background */
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Subtle border using primary-dark */
    color: var(--primary-dark) !important; /* Dark text on white background */
}

.mission-stat-item h3 {
    color: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
}

.mission-stat-item p {
    color: var(--text-details) !important; /* Text details color for body text */
}

/* Video container styling */
.video-container {
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Border using primary-dark */
}

.video-overlay h3 {
    color: var(--primary-dark) !important; /* Dark text on light background */
}

.video-overlay p {
    color: var(--text-details) !important; /* Text details color for body text */
}

.mission-content h2 {
    color: var(--primary-dark); /* Dark text on light background */
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.mission-content p {
    color: var(--text-details); /* Text details color for body text */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1); /* Secondary accent border (5% usage) */
}

.mission-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-overlay h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-overlay p {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.mission-placeholder {
    background: rgba(30, 30, 30, 0.5);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(52, 152, 219, 0.1); /* Secondary accent border (5% usage) */
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.mission-placeholder h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-placeholder p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== SERVICE GRID ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: rgba(13, 13, 13, 0.5);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    box-shadow: 0 8px 25px rgba(10, 28, 63, 0.15); /* Subtle shadow for depth */
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-item h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-item p {
    color: var(--text-details); /* Text details color for body text */
    line-height: 1.6;
}



/* ===== SPECS GRID ===== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.spec-item {
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 28, 63, 0.1); /* Border using primary-dark */
    transition: var(--transition-smooth);
    color: var(--primary-dark); /* Dark text on light background */
}

.spec-item:hover {
    border-color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    box-shadow: 0 6px 20px rgba(10, 28, 63, 0.15); /* Subtle shadow for depth */
    transform: translateY(-3px);
}

.spec-item h4 {
    color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.spec-item ul {
    list-style: none;
}

.spec-item ul li {
    color: var(--text-details); /* Text details color for body text */
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.spec-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    font-weight: bold;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 28, 63, 0.1); /* Border using primary-dark */
    transition: var(--transition-smooth);
    color: var(--primary-dark); /* Dark text on light background */
}

.team-member:hover {
    border-color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    box-shadow: 0 8px 25px rgba(10, 28, 63, 0.15); /* Subtle shadow for depth */
    transform: translateY(-5px);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    color: var(--primary-white);
}

.team-member h3 {
    color: var(--primary-dark); /* Dark text on light background */
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    color: var(--text-details); /* Text details color for body text */
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== RESPONSIVE DESIGN FOR ABOUT PAGE ===== */
@media (max-width: 1200px) {
    .service-grid,
    .specs-grid,
    .leasing-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .service-grid,
    .specs-grid,
    .leasing-benefits,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-stats {
        flex-direction: column !important;
        gap: 1.5rem;
        align-items: center;
        margin-top: 2rem;
    }
    
    .mission-stat-item {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .mission-stat-item h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .mission-stat-item p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .custom-material-development {
        padding: 2rem 1rem;
    }
    
    .video-container {
        min-height: 300px;
    }
    
    .video-overlay h3 {
        font-size: 1.3rem;
    }
    
    .video-overlay p {
        font-size: 0.8rem;
    }
    
    /* About page hero mobile responsiveness */
    .about-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Mission section mobile responsiveness */
    .mission-content h2 {
        font-size: 2rem !important;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .mission-content p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    /* Mission visual mobile responsiveness */
    .mission-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    /* Service grid mobile responsiveness */
    .service-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Specs grid mobile responsiveness */
    .specs-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .spec-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .spec-item h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .spec-item ul {
        text-align: left;
        padding-left: 1rem;
    }
    
    .spec-item li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Business model section mobile responsiveness */
    .section h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .section p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .section ul {
        text-align: left;
        padding-left: 1rem;
    }
    
    .section li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    /* Contact section mobile responsiveness */
    .contact-content {
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .calendly-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .calendly-header p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 300px;
    }
    
    /* Ensure word breaking consistency for about page mobile */
    .about-hero-title,
    .hero-subtitle,
    .mission-content h2,
    .mission-content p,
    .service-item h3,
    .service-item p,
    .spec-item h4,
    .spec-item li,
    .section h3,
    .section p,
    .section li,
    .contact-info h3,
    .contact-info p,
    .calendly-header h3,
    .calendly-header p {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
        white-space: normal !important;
    }
} 

@media (max-width: 480px) {
    .video-container {
        min-height: 200px;
    }
    
    .video-overlay {
        padding: 1rem;
    }
    
    .video-overlay h3 {
        font-size: 1.1rem;
    }
    
    .video-overlay p {
        font-size: 0.7rem;
    }
    
    /* Extra small screen adjustments for about page */
    .about-hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .mission-content h2 {
        font-size: 1.8rem !important;
    }
    
    .mission-content p {
        font-size: 0.95rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
    
    .spec-item {
        padding: 1rem;
    }
    
    .spec-item h4 {
        font-size: 1.1rem;
    }
    
    .spec-item li {
        font-size: 0.85rem;
    }
    
    .section h3 {
        font-size: 1.3rem;
    }
    
    .section p {
        font-size: 0.95rem;
    }
    
    .section li {
        font-size: 0.9rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .calendly-header h3 {
        font-size: 1.2rem;
    }
    
    .calendly-header p {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Ensure word breaking consistency for about page */
    .about-hero-title,
    .mission-content h2,
    .mission-content p,
    .service-item h3,
    .service-item p,
    .spec-item h4,
    .spec-item li,
    .section h3,
    .section p,
    .section li,
    .contact-info h3,
    .contact-info p,
    .calendly-header h3,
    .calendly-header p {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
        white-space: normal !important;
    }
}

/* ===== ABOUT PAGE HERO FIXES ===== */
.about-hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important; /* Subtle shadow for depth */
}

/* About page hero subtitle should be white */
.hero .hero-subtitle {
    color: var(--primary-white) !important; /* Pure white text for clean appearance */
}

/* About page hero stats should have proper styling */
.hero .hero-stats .stat-item {
    background: #ecf0f1 !important; /* Secondary Neutral - Cloud */
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Primary Dark border */
}

.hero .hero-stats .stat-label {
    color: #0A1C3F !important; /* Primary Dark - Navy Blue for contrast on light background */
}

/* Removed glitch text effects for clean, elite appearance */

/* ===== MISSION STATS FIXES ===== */
.mission-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    color: var(--primary-dark) !important; /* Dark text on light background */
}

.stat-item-wide {
    min-width: 200px !important;
    flex: 1.2 !important;
}

/* Navigation menu styling for about page */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu .nav-link {
    color: #000000 !important; /* Black */
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
    display: block;
    padding: 0.5rem 0;
    z-index: 1001;
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
    transition: var(--transition-smooth);
}

.nav-menu .nav-link:hover {
    color: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
    transform: translateY(-2px);
}

.nav-menu .nav-link:hover::after {
    width: 100%;
    background: var(--primary-accent) !important; /* Primary accent for highlights (10% usage) */
}

.mission-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--secondary-neutral); /* 35% - Secondary Neutral for contrast */
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 99, 71, 0.2); /* Primary accent border (10% usage) */
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    flex: 1;
    min-width: 0;
    color: var(--primary-dark); /* Dark text on light background */
}

.mission-stat-item:hover {
    border-color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    box-shadow: 0 4px 20px rgba(255, 99, 71, 0.2); /* Subtle shadow for depth */
    transform: translateY(-5px);
}

.mission-stat-item h3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-header);
    color: var(--primary-accent); /* Primary accent for highlights (10% usage) */
    margin-bottom: 0.5px;
    line-height: 1;
}

.mission-stat-item p {
    font-size: 0.9rem;
    color: var(--text-details); /* Text details color for body text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
} 

/* ===== CALENDLY INTEGRATION ===== */
.calendly-container {
    background: var(--secondary-neutral) !important; /* 35% - Secondary Neutral for contrast */
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 28, 63, 0.1) !important; /* Border using primary-dark */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-dark) !important; /* Dark text on light background */
    position: relative;
    z-index: 1;
}

.calendly-header h3 {
    color: var(--primary-dark) !important; /* Dark text on light background */
}

.calendly-header p {
    color: var(--text-details) !important; /* Text details color for body text */
}

.calendly-header {
    margin-bottom: 2rem;
}

.calendly-header h3 {
    color: var(--primary-dark); /* Dark text on light background */
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.calendly-header p {
    color: var(--text-details); /* Text details color for body text */
    font-size: 0.9rem;
    margin: 0;
}

.calendly-button {
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.calendly-button .cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    width: auto;
    max-width: none;
}

/* Calendly widget customization for dark theme */
.calendly-inline-widget iframe {
    background: transparent !important;
}

/* Override Calendly's default styling to match our theme */
.calendly-inline-widget {
    /* Removed excessive filter for clean, elite appearance */
}

/* Ensure the widget maintains proper contrast */
.calendly-inline-widget * {
    color-scheme: dark;
} 

/* ===== FINAL MOBILE FIXES ===== */
/* Ensure proper mobile viewport handling */
@media (max-width: 768px) {
    /* Fix any remaining alignment issues */
    .container {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ensure proper text wrapping - prevent mid-word breaking */
    .hero-title,
    .hero-subtitle,
    .section-title,
    .feature-item h3,
    .offer-item h3,
    .process-step h3,
    .breakthrough-text h3,
    .feature-item p,
    .offer-item p,
    .process-step p,
    .breakthrough-text p,
    .stat-label,
    .mission-stat-item p,
    .tech-features li,
    .offer-benefits li {
        word-break: normal !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
        word-wrap: break-word !important;
    }
    
    /* Fix any floating elements */
    .hero-stats,
    .numbered-features,
    .offers-grid,
    .gallery-grid,
    .scaleup-process,
    .breakthrough-stats {
        float: none !important;
        clear: both !important;
    }
    
    /* Ensure proper button alignment */
    .hero-cta,
    .gallery-cta-button,
    .offers-cta,
    .calendly-button {
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Fix navigation container */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Ensure hamburger is properly positioned */
    .hamburger {
        display: flex !important;
        order: 3 !important;
        margin-left: auto !important;
    }
    
    /* Fix logo positioning */
    .logo {
        order: 1 !important;
        flex: 1 !important;
    }
    
    /* Hide desktop nav on mobile - handled by position: fixed and left: -100% */
    
    /* Mobile menu active state handled by first implementation */
}

/* Extra small mobile fixes */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem !important;
    }
    
    .nav-container {
        padding: 0 0.5rem !important;
    }
    
    .hero-content {
        padding: 0 0.5rem !important;
    }
    
    .section-title {
        padding: 0 0.5rem !important;
    }
    
    .numbered-features,
    .offers-grid,
    .gallery-grid,
    .scaleup-process,
    .breakthrough-stats {
        padding: 0 0.5rem !important;
    }
    
    /* Center footer logo on small mobile */
    .footer-logo {
        justify-content: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .footer-logo a {
        justify-content: center !important;
        text-align: center !important;
    }
}

/* Landscape mobile fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh !important;
        padding-top: 60px !important;
    }
    
    .hero-content {
        padding-top: 0.5rem !important;
    }
    
    .hero-stats {
        flex-direction: row !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    .stat-item {
        min-width: 120px !important;
        flex: 0 0 auto !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .cta-button,
    .book-call-btn,
    .hamburger {
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    .nav-menu .nav-link {
        padding: 1.2rem 2rem !important;
        color: #ffffff !important; /* Ensure white text for mobile menu */
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-menu.active {
        border: 2px solid var(--primary-accent) !important;
    }
    
    .cta-button {
        border: 2px solid var(--primary-white) !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .nav-menu {
        transition: none !important;
    }
    
    .hero-stats .stat-item:hover,
    .feature-item:hover,
    .offer-item:hover,
    .process-step:hover,
    .gallery-item:hover {
        transform: none !important;
    }
}

/* ===== MOBILE MENU TEXT COLOR FIXES ===== */
/* Ensure mobile navigation menu text is always white */
@media (max-width: 768px) {
    .nav-menu .nav-link {
        color: #ffffff !important; /* White text for mobile menu visibility */
    }
    
    .nav-menu .nav-link:hover {
        color: #ff8a65 !important; /* Lighter orange for hover state */
    }
}

/* ===== GLOBAL WORD BREAKING FIXES ===== */
/* Prevent mid-word breaking - words move to next line instead */
* {
    /* Apply to all elements as a fallback */
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
}

/* Specific fixes for common text elements */
h1, h2, h3, h4, h5, h6,
p, span, div, li, td, th,
.hero-title, .hero-subtitle, .section-title,
.feature-item h3, .offer-item h3, .process-step h3,
.feature-item p, .offer-item p, .process-step p,
.stat-label, .mission-stat-item p,
.tech-features li, .offer-benefits li,
.blog-card-title, .blog-card-excerpt,
.post-title, .post-excerpt, .post-content,
.nav-link, .cta-button, .book-call-btn {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    white-space: normal !important;
}

/* Ensure proper line breaking for long words */
@media (max-width: 768px) {
    * {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
        white-space: normal !important;
    }
}
