/* Vulpine Industries - Premium Website Styles */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --navy-dark: #0a1628;
    --navy: #152238;
    --navy-light: #1e3a5f;

    /* Accent Colors */
    --accent-gold: #00D4FF;
    --accent-teal: #2dd4bf;
    --accent-blue: #3b82f6;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-primary);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.text-small {
    font-size: 0.875rem;
}

.text-accent {
    color: #0088A8; /* Darkened from --accent-gold for 4.5:1 contrast on white */
}

.text-white {
    color: var(--white);
}

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-sm {
    padding: var(--space-3xl) 0;
}

.section-dark {
    background-color: var(--navy-dark);
    color: var(--white);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--white);
}

.section-gray {
    background-color: var(--gray-50);
}

/* Grid */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

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

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Flex utilities */
.flex {
    display: flex;
}

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

.flex-between {
    align-items: center;
    justify-content: space-between;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-fast);
}

.header.scrolled .logo {
    color: var(--navy-dark);
}

.logo span {
    color: var(--accent-gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.header.scrolled .nav-link {
    color: var(--gray-700);
}

.header.scrolled .nav-link:hover {
    color: var(--navy-dark);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--navy-dark);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-4xl) var(--space-xl);
        background: var(--navy-dark);
        transition: right var(--transition-base);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        color: var(--white);
        font-size: 1.125rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: #33ddff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-dark);
}

.btn-outline {
    background: transparent;
    color: var(--navy-dark);
    border: 2px solid var(--navy-dark);
}

.btn-outline:hover {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-dark {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ===== Parallax Backgrounds ===== */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.65) 0%, rgba(21, 34, 56, 0.55) 50%, rgba(30, 58, 95, 0.5) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero .parallax-bg::after {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(21, 34, 56, 0.6) 50%, rgba(30, 58, 95, 0.5) 100%);
}

.hero::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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: var(--space-lg);
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-xs);
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.card-dark {
    background: var(--navy);
    color: var(--white);
}

.card-dark h3, .card-dark h4 {
    color: var(--white);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 14px;
    margin-bottom: var(--space-lg);
    color: var(--accent-gold);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card h4 {
    margin-bottom: var(--space-sm);
}

.card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.card-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* Trusted By Section */
.trusted-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: var(--space-3xl) 0;
}

.trusted-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
}

/* Logo Grid - Trusted By Section */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-xl) var(--space-lg);
    text-align: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.logo-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.logo-category {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: capitalize;
}

/* Deprecated - use .logo-category */
.logo-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: capitalize;
}

@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* Service Cards */
.service-card {
    position: relative;
    padding: var(--space-2xl);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.service-card:hover {
    border-color: var(--accent-gold);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gold);
    transition: height var(--transition-base);
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.service-card h3 {
    margin-bottom: var(--space-md);
}

.service-card ul {
    margin-top: var(--space-md);
}

.service-card li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--gray-600);
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.section-header-left {
    text-align: left;
    margin: 0 0 var(--space-2xl);
}

/* ===== Proof Points / Stats ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    padding: var(--space-xl);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Testimonials ===== */
.testimonial {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    font-family: Georgia, serif;
    color: var(--accent-gold);
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: var(--space-sm);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--navy-dark);
}

.testimonial-name {
    font-weight: 600;
    color: var(--navy-dark);
}

.testimonial-title {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== About / Bio ===== */
.bio-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.bio-image {
    position: relative;
}

.bio-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.bio-image::after {
    content: '';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    right: calc(var(--space-lg) * -1);
    bottom: calc(var(--space-lg) * -1);
    border: 3px solid var(--accent-gold);
    border-radius: 12px;
    z-index: -1;
}

.bio-content h2 {
    margin-bottom: var(--space-sm);
}

.bio-role {
    font-size: 1.125rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.bio-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-600);
    border-left: 4px solid var(--accent-gold);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.bio-highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.bio-highlight-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    border-radius: 50%;
    font-size: 0.75rem;
    color: var(--navy-dark);
}

@media (max-width: 768px) {
    .bio-section {
        grid-template-columns: 1fr;
    }

    .bio-highlights {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    text-align: center;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-section .parallax-bg::after {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.65) 0%, rgba(21, 34, 56, 0.55) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== Page Headers ===== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-4xl);
    text-align: center;
    overflow: hidden;
}

.page-header .parallax-bg::after {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.65) 0%, rgba(21, 34, 56, 0.55) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Utilities ===== */
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

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

.hidden { display: none; }

@media (max-width: 768px) {
    .hidden-mobile { display: none; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Icon placeholders ===== */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
}


/* ===== Focus Indicators (Accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===== Mobile Responsive Fixes (max-width: 480px) ===== */
@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    h3 {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
    .lead {
        font-size: 1rem;
    }
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-stats {
        gap: var(--space-lg);
    }
    .hero-stat-value {
        font-size: 1.75rem;
    }
    .service-number {
        font-size: 2rem !important;
    }
    .stat-value {
        font-size: 2rem;
    }
    .section {
        padding: var(--space-2xl) 0;
    }
    .section-lg {
        padding: var(--space-3xl) 0;
    }
    .testimonial {
        padding: var(--space-lg);
    }
    .testimonial-quote {
        font-size: 1rem;
    }
    blockquote {
        font-size: 1.125rem !important;
    }
    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
}

/* ===== Tablet Responsive Fixes (max-width: 768px) ===== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    .hero-stats {
        gap: var(--space-xl);
    }
    .service-number {
        font-size: 2.5rem !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}
