/* CSS Variables - Seattle Colors (Navy & Green) */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #001f3f;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent: #69BE28;
    --accent-hover: #5aa821;
    --accent-light: rgba(105, 190, 40, 0.1);
    --navy: #001f3f;
    --navy-light: #003366;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    /* Safe area support for notched phones */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Ensure tap targets are at least 44px for accessibility */
button,
.nav-links a,
.cta-button,
.service-link,
.footer-column a {
    min-height: 44px;
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    padding-top: calc(1rem + env(safe-area-inset-top));
    padding-left: calc(2rem + env(safe-area-inset-left));
    padding-right: calc(2rem + env(safe-area-inset-right));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: var(--shadow-md);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
}

.logo-subtext {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--navy) !important;
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition-base);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    gap: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
    flex-shrink: 1;
    min-width: 0;
}

/* Hero Side Logos */
.hero-side-logos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 130px;
    flex-shrink: 0;
}

.hero-logos-left {
    padding-right: 2rem;
}

.hero-logos-right {
    padding-left: 2rem;
}

.hero-side-logos .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.hero-side-logos .client-logo:hover {
    opacity: 0.85;
    filter: grayscale(0%);
}

.hero-side-logos .client-logo img {
    max-height: 30px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
}

.hero-side-logos .norwegian-logo img {
    max-height: 24px;
}

.hero-side-logos .text-logo {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--navy);
    white-space: nowrap;
}

/* Microsoft - Segoe-style clean look */
.hero-side-logos .microsoft-logo .text-logo {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Expedia - lowercase italic style */
.hero-side-logos .expedia-logo .text-logo {
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: lowercase;
}

/* Marriott - elegant serif */
.hero-side-logos .marriott-logo .text-logo {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Royal Caribbean - elegant with normal case */
.hero-side-logos .royal-logo .text-logo {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Norwegian - bold uppercase */
.hero-side-logos .norwegian-logo .text-logo {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* Prologis - clean corporate */
.hero-side-logos .prologis-logo .text-logo {
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Vigor - industrial bold */
.hero-side-logos .vigor-logo .text-logo {
    font-weight: 900;
    letter-spacing: 0.15em;
}

.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.hero-title .highlight {
    color: var(--accent);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.cta-button.primary {
    background: var(--navy);
    color: white;
    border: 2px solid var(--navy);
}

.cta-button.primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
}

.cta-button.secondary:hover {
    border-color: var(--navy);
    background: var(--bg-secondary);
}

.cta-icon {
    display: flex;
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: fit-content;
    margin: 0 auto;
}

.trust-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item strong {
    color: var(--navy);
    font-size: 1.25rem;
    display: block;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Text Logo (for brands without logo images) */
.text-logo {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--navy);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.35s ease;
    box-shadow: var(--shadow-sm);
    will-change: transform, box-shadow;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 25px 50px -12px rgba(0, 31, 63, 0.25),
                0 0 0 1px var(--accent),
                0 10px 30px rgba(105, 190, 40, 0.15);
}

.service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    background: var(--accent);
    color: white;
    border-radius: 20px;
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--accent);
    gap: 0.75rem;
}

.service-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    color: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-eyebrow {
    color: var(--accent);
}

.about-text .section-title {
    color: white;
}

.about-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-features svg {
    flex-shrink: 0;
    color: var(--accent);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    background: var(--navy);
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 350px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a,
.footer-column li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-eyebrow {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-description {
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-trust {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

/* Scroll Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-side-logos {
        gap: 1.5rem;
    }

    .hero-side-logos .client-logo img {
        max-height: 24px;
        max-width: 90px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        gap: 2rem;
        padding: 7rem 1.5rem 3rem;
    }

    .hero-side-logos {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 2rem;
        padding: 0;
        max-width: 500px;
    }

    .hero-logos-left {
        order: 2;
        padding-right: 0;
    }

    .hero-logos-right {
        order: 3;
        padding-left: 0;
    }

    .hero-content {
        order: 1;
        max-width: 600px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-trust {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        min-height: 48px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
        padding: 1rem 1.5rem !important;
    }

    .mobile-menu-btn {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 6rem 1.25rem 2rem;
        gap: 1.5rem;
        min-height: auto;
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .cta-button {
        justify-content: center;
        padding: 0.875rem 1.25rem;
        min-height: 48px;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-trust {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
    }

    .trust-item {
        text-align: center;
        font-size: 0.75rem;
    }

    .trust-item strong {
        font-size: 1rem;
        display: block;
    }

    .trust-divider {
        width: 1px;
        height: 30px;
    }

    /* Hide side logos on mobile - show simplified version below */
    .hero-side-logos {
        display: none;
    }

    .services,
    .cta-section {
        padding: 3rem 1rem;
    }

    .about {
        padding: 3rem 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .hero {
        padding: 5.5rem 0.75rem 1.5rem;
        gap: 1rem;
    }

    .hero-content {
        padding: 0;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .hero-cta {
        gap: 0.625rem;
    }

    .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .cta-button .cta-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-trust {
        padding: 0.75rem;
        gap: 0.5rem;
        border-radius: 10px;
    }

    .trust-item {
        font-size: 0.65rem;
    }

    .trust-item strong {
        font-size: 0.9rem;
    }

    .trust-divider {
        height: 24px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .services {
        padding: 2.5rem 0.75rem;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 1rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .service-link {
        padding: 0.5rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        font-size: 0.85rem;
    }

    .about {
        padding: 2.5rem 0.75rem;
    }

    .stat-card {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .cta-section {
        padding: 2.5rem 0.75rem;
    }

    .cta-title {
        font-size: 1.35rem;
    }

    .cta-description {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2.5rem 0.75rem 1.25rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column a {
        padding: 0.5rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .client-logo:hover {
        opacity: 0.5;
        filter: grayscale(100%);
    }

    .service-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .cta-button:hover {
        transform: none;
    }

    .cta-button:active {
        transform: scale(0.98);
    }

    .service-link:active {
        color: var(--accent);
    }

    .stat-card:hover {
        transform: none;
    }
}

/* Prevent horizontal overflow on all screen sizes */
html {
    overflow-x: hidden;
}
