/* FRWRD Marketing - Complete Static CSS
   1:1 Design Match with Next.js Source
   ========================================= */

/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Exact match from tailwind.css */
:root {
    --color-background: #030303;
    --color-foreground: #FFFFFF;
    --color-accent: #000000;
    --color-accent-foreground: #FFFFFF;
    --color-muted: #27272A;
    --color-muted-foreground: #A1A1AA;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-input: rgba(255, 255, 255, 0.05);
    --color-ring: rgba(255, 255, 255, 0.2);
    --color-card: #050505;
    --color-card-foreground: #FFFFFF;
    --color-popover: #18181B;
    --color-popover-foreground: #FFFFFF;
    --color-primary: #FFFFFF;
    --color-primary-foreground: #000000;
    --color-secondary: #27272A;
    --color-secondary-foreground: #FFFFFF;
    --color-zinc-300: #D4D4D8;
    --color-zinc-400: #A1A1AA;
    --color-zinc-500: #71717A;
    --color-zinc-600: #52525B;
    --color-zinc-700: #3F3F46;
    --color-zinc-800: #27272A;
    --color-zinc-900: #18181B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    cursor: default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

::selection {
    background: #ffffff;
    color: #000000;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.italic {
    font-style: italic;
}

.muted {
    color: var(--color-zinc-500);
    font-weight: 300;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-zinc-600);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===========================================
   HEADER - Mix Blend Difference Style
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    mix-blend-mode: difference;
}

.header-inner {
    width: 100%;
    padding: 0 1.5rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0 3rem;
    }
}

.header-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-logo:hover {
    opacity: 0.7;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-nav a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

.header-nav a:hover {
    color: #fff;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.75rem 2rem;
    text-decoration: none;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.header-cta:hover {
    background: #fff;
    color: #000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--color-background);
    padding-top: 6rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
}

.mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--color-zinc-400);
}

.mobile-menu .mobile-cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.75rem 2rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.mobile-menu .mobile-cta:hover {
    background: #fff;
    color: #000;
}

/* ===========================================
   FOOTER - Exact Match from Footer.tsx
   =========================================== */
.footer {
    background: var(--color-background);
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .footer {
        padding: 5rem 3rem;
    }
}

.footer-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
    }
}

.footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #fff;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-nav {
        gap: 2rem;
    }
}

.footer-nav a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-zinc-400);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    color: var(--color-zinc-500);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom span,
.footer-bottom a {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-700);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--color-zinc-500);
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */
.hero-title {
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
}

.tracking-ultra {
    letter-spacing: 0.3em;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--color-zinc-300);
}

.btn-secondary {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: 1px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* CTA Button (solid white style - matches source) */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: #fff;
    color: #000;
    border: none;
    padding: 1rem 3rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #e4e4e7;
    color: #000;
}

.btn-cta svg {
    transition: transform 0.3s;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

/* Arrow Link */
.arrow-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
    text-decoration: none;
    transition: border-color 0.3s;
}

.arrow-link:hover {
    border-color: #fff;
}

.arrow-link span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.arrow-link svg {
    width: 16px;
    height: 16px;
    color: #fff;
    transition: transform 0.3s;
}

.arrow-link:hover svg {
    transform: translate(4px, -4px);
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* ===========================================
   HOMEPAGE HERO
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 3rem 3rem;
    }
}

.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.2;
    display: none;
}

@media (min-width: 768px) {
    .hero-bg {
        display: block;
    }
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.25) brightness(0.5);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, rgba(3, 3, 3, 0.8) 50%, var(--color-background));
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: end;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 2fr 1fr;
    }
}

.hero-label-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-line {
    width: 3rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-400);
}

.hero-title span {
    display: block;
}

.hero-title .italic {
    font-style: italic;
    color: var(--color-zinc-500);
    font-weight: 300;
}

.hero-right {
    max-width: 320px;
}

.hero-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1rem;
    }
}

.hero-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Bottom Info */
.hero-bottom {
    position: absolute;
    bottom: 3rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    mix-blend-mode: difference;
    color: #fff;
}

@media (min-width: 768px) {
    .hero-bottom {
        left: 3rem;
        right: 3rem;
    }
}

.hero-bottom-label {
    display: none;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    .hero-bottom-label {
        display: block;
    }
}

.hero-scroll-indicator {
    animation: bounce 1s infinite;
}

.hero-scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===========================================
   MARQUEE / CLIENT LOGOS
   =========================================== */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.marquee-content {
    display: inline-flex;
    animation: scroll 25s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 3rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-zinc-600);
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================================
   FEATURED WORK SECTION
   =========================================== */
.featured-section {
    padding: 6rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .featured-section {
        padding: 8rem 3rem;
    }
}

.featured-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.featured-header {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .featured-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 3rem;
    }
}

.featured-desc {
    font-size: 1.125rem;
    color: var(--color-zinc-400);
    font-weight: 300;
    line-height: 1.7;
    max-width: 24rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-title .muted {
    color: var(--color-zinc-600);
    font-style: italic;
    font-weight: 300;
}

.section-title .italic {
    font-style: italic;
    font-weight: 300;
}

/* Featured Work Grid */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.featured-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 1s ease-out;
}

.featured-card:hover img {
    filter: grayscale(0%);
    opacity: 0.8;
    transform: scale(1.05);
}

.featured-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, transparent);
    pointer-events: none;
}

.featured-card-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.featured-card-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.featured-card-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-zinc-400);
    margin-top: 0.5rem;
}

/* ===========================================
   WORK CARDS
   =========================================== */
.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.work-card {
    border: 1px solid var(--color-border);
    transition: border-color 0.5s;
}

.work-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.work-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 1s;
}

.work-card:hover .work-card-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.work-card-content {
    padding: 3rem;
}

.work-card-category {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 1rem;
    display: block;
}

.work-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.work-card-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    margin-bottom: 2rem;
}

.work-card-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.work-card-result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.work-card-result-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
}

.work-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.work-card-link:hover {
    color: var(--color-zinc-400);
}

.work-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.work-card-link:hover svg {
    transform: translateX(4px);
}

/* ===========================================
   SERVICES SECTION
   =========================================== */
.services-section {
    border-bottom: 1px solid var(--color-border);
}

.services-header {
    padding: 6rem 1.5rem 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-header {
        padding: 8rem 3rem 4rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.services-grid-bottom {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .services-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 3rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition: background 0.5s;
    text-decoration: none;
}

.service-card:hover {
    background: rgba(24, 24, 27, 0.3);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-card-number {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-600);
}

.service-card-icon {
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-card-icon {
    opacity: 1;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
}

.service-card-content h3 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.service-card-content p {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-zinc-600);
    line-height: 1.7;
    max-width: 200px;
    margin-bottom: 2rem;
}

.service-card-line {
    width: 100%;
    height: 1px;
    background: var(--color-zinc-800);
    transition: background 0.3s;
}

.service-card:hover .service-card-line {
    background: rgba(255, 255, 255, 0.3);
}

/* ===========================================
   FOUNDER SECTION
   =========================================== */
.founder-section {
    padding: 6rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .founder-section {
        padding: 8rem 3rem;
    }
}

.founder-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .founder-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.founder-image-wrap {
    position: relative;
}

.founder-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}

.founder-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.founder-instagram {
    font-size: 0.75rem;
    color: var(--color-zinc-400);
    text-decoration: none;
    transition: color 0.3s;
}

.founder-instagram:hover {
    color: #fff;
}

.founder-role {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-top: 0.75rem;
}

.founder-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.founder-content h2 .muted {
    color: var(--color-zinc-600);
    font-style: italic;
    font-weight: 300;
}

.founder-bio {
    margin-bottom: 3rem;
}

.founder-bio p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-stats {
    display: flex;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.founder-stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.founder-stat-num sup {
    font-size: 1.5rem;
}

.founder-stat-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-600);
    margin-top: 0.5rem;
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */
.testimonials-section {
    padding: 6rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 8rem 3rem;
    }
}

.testimonials-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.testimonials-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-line {
    width: 2rem;
    height: 1px;
    background: #fff;
}

.testimonials-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #fff;
}

.testimonials-nav {
    display: flex;
    gap: 0.5rem;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-nav-btn:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.testimonials-slider {
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
    display: none;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.testimonial-card.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote-icon {
    color: var(--color-zinc-800);
    opacity: 0.2;
    width: 48px;
    height: 48px;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
}

.testimonial-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.testimonial-role {
    font-size: 10px;
    color: var(--color-zinc-500);
    margin-top: 0.5rem;
    font-weight: 500;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-zinc-700);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot:hover {
    background: var(--color-zinc-600);
}

.testimonial-dot.active {
    width: 2rem;
    border-radius: 4px;
    background: #fff;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
    padding: 6rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .cta-section {
        padding: 8rem 3rem;
    }
}

.cta-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-title .muted {
    color: var(--color-zinc-600);
    font-style: italic;
    font-weight: 300;
}

.cta-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===========================================
   PAGE HEROES
   =========================================== */
.page-hero {
    padding: 12rem 1.5rem 6rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .page-hero {
        padding: 12rem 3rem 6rem;
    }
}

.page-hero-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.page-hero-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 1.5rem;
}

.page-hero-title {
    font-size: 3.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.025em;
    margin-bottom: 3rem;
    overflow: visible;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 6rem;
    }
}

.page-hero-title .muted {
    color: var(--color-zinc-500);
    font-style: italic;
    font-weight: 300;
    display: inline-block;
    padding-top: 0.2em;
}

.page-hero-desc {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.625;
    max-width: 42rem;
}

.page-hero-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.7;
    max-width: 42rem;
}

/* ===========================================
   WORK PAGE
   =========================================== */
.work-section {
    padding: 4rem 1.5rem 8rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .work-section {
        padding: 4rem 3rem 8rem;
    }
}

.work-section-inner {
    max-width: 80rem;
    margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.filter-tab {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 0 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tab:hover {
    color: var(--color-zinc-400);
}

.filter-tab.active {
    color: #fff;
    border-bottom-color: #fff;
}

/* ===========================================
   CASE STUDY PAGE
   =========================================== */
.case-hero {
    padding: 12rem 1.5rem 6rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .case-hero {
        padding: 12rem 3rem 6rem;
    }
}

.case-hero-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.case-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .case-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.case-hero-category {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 1rem;
    display: block;
}

.case-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.case-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.case-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.case-meta-item label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    display: block;
    margin-bottom: 0.5rem;
}

.case-meta-item span {
    font-size: 1rem;
    color: #fff;
}

.case-hero-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.case-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Case Study Sections */
.case-section {
    padding: 6rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .case-section {
        padding: 6rem 3rem;
    }
}

.case-section-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.case-section-narrow {
    max-width: 56rem;
    margin: 0 auto;
}

.case-section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 1.5rem;
}

.case-section-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
}

.case-section-text-sm {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-zinc-300);
    line-height: 1.7;
}

/* Two Column Layout */
.case-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .case-two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Tags */
.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-tag {
    font-size: 0.875rem;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.result-card {
    border: 1px solid var(--color-border);
    padding: 2rem;
}

.result-value {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.result-metric {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 1rem;
}

.result-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Case CTA */
.case-cta {
    padding: 6rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .case-cta {
        padding: 6rem 3rem;
    }
}

.case-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.case-cta-desc {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    margin-bottom: 2rem;
}

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-hero {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .about-hero {
        padding: 8rem 3rem 4rem;
    }
}

.about-hero-inner {
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
}

.about-hero-title {
    font-size: 3.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 0.85;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-hero-title {
        font-size: 6rem;
    }
}

.about-hero-title .italic {
    font-style: italic;
    font-weight: 300;
}

.about-hero-title .muted {
    color: var(--color-zinc-500);
}

.about-hero-desc {
    font-size: 1.25rem;
    color: var(--color-zinc-400);
    font-weight: 300;
    line-height: 1.7;
    max-width: 42rem;
}

/* Founder Story Section */
.founder-story {
    padding: 8rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .founder-story {
        padding: 8rem 3rem;
    }
}

.founder-story-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .founder-story-inner {
        grid-template-columns: auto 5fr 6fr;
        gap: 3rem;
    }
}

.founder-num {
    display: none;
}

@media (min-width: 1024px) {
    .founder-num {
        display: block;
    }
}

.founder-num .section-num {
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0.1;
    color: #fff;
}

.founder-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.founder-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s;
}

.founder-image:hover img {
    filter: grayscale(0);
}

.founder-quote-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-quote {
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.8;
}

.founder-author {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
}

.founder-instagram {
    font-size: 0.875rem;
    color: var(--color-zinc-400);
    text-decoration: none;
    transition: color 0.3s;
}

.founder-instagram:hover {
    color: #fff;
}

.founder-right {
    padding-top: 3rem;
}

@media (min-width: 1024px) {
    .founder-right {
        padding-top: 0;
    }
}

.founder-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3rem;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .founder-title {
        font-size: 3.75rem;
    }
}

.founder-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

/* Stats Section */
.stats-section {
    padding: 8rem 1.5rem;
    background: var(--color-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .stats-section {
        padding: 8rem 3rem;
    }
}

.stats-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        border-left: none;
    }
}

.stat-item {
    text-align: center;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .stat-item {
        border-left: 1px solid var(--color-border);
    }

    .stat-item:first-child {
        border-left: none;
    }
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3.75rem;
    }
}

.stat-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
}

/* Values Section */
.values-section {
    padding: 8rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .values-section {
        padding: 8rem 3rem;
    }
}

.values-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.values-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .values-header {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.values-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 768px) {
    .values-title {
        font-size: 3.75rem;
    }
}

.values-title .italic {
    font-style: italic;
    font-weight: 300;
}

.values-title .muted {
    color: var(--color-zinc-600);
}

.values-intro {
    display: flex;
    align-items: flex-end;
}

.values-intro p {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    padding: 3rem;
    border: 1px solid var(--color-border);
    transition: border-color 0.5s;
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.value-icon {
    color: #fff;
    margin-bottom: 2rem;
    transition: transform 0.5s;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .timeline-section {
        padding: 8rem 3rem;
    }
}

.timeline-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.timeline-header {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.timeline-line {
    width: 2rem;
    height: 1px;
    background: #fff;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

@media (min-width: 768px) {
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 3rem;
        padding-left: 3rem;
    }
}

.timeline-year {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.timeline-desc {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.7;
    max-width: 42rem;
}

/* ===========================================
   SERVICES PAGE
   =========================================== */

/* Services List Section */
.services-list-section {
    padding: 8rem 1.5rem;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .services-list-section {
        padding: 8rem 3rem;
    }
}

.services-list-section .container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* Service Item - 12-column grid layout */
.service-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .service-item {
        grid-template-columns: auto 1fr 1fr;
        gap: 3rem;
    }
}

.service-num {
    display: flex;
    align-items: flex-start;
}

.service-num .section-num {
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0.1;
    color: #fff;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-icon {
    color: #fff;
}

.service-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.service-desc {
    font-size: 1.125rem;
    color: var(--color-zinc-400);
    font-weight: 300;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--color-zinc-300);
}

.service-link svg {
    transition: transform 0.3s;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Service Features (What's Included) */
.service-features {
    padding-left: 0;
    border-left: none;
}

@media (min-width: 1024px) {
    .service-features {
        padding-left: 2rem;
        border-left: 1px solid var(--color-border);
    }
}

.features-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-zinc-500);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #fff;
    font-size: 1rem;
}

.features-list li svg {
    color: var(--color-zinc-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.services-page-section {
    padding: 4rem 1.5rem 8rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .services-page-section {
        padding: 4rem 3rem 8rem;
    }
}

.services-page-inner {
    max-width: 80rem;
    margin: 0 auto;
}

/* Service Detail Page */
.service-detail-hero {
    padding: 12rem 1.5rem 6rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .service-detail-hero {
        padding: 12rem 3rem 6rem;
    }
}

.service-detail-inner {
    max-width: 80rem;
    margin: 0 auto;
}

/* Process Section */
.process-section {
    padding: 8rem 1.5rem;
    background-color: var(--color-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .process-section {
        padding: 8rem 3rem;
    }
}

.process-header {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-header-line {
    width: 2rem;
    height: 1px;
    background-color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.2;
}

.process-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.process-text {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-zinc-400);
    line-height: 1.7;
}

/* Industry Focus Section */
.industry-section {
    padding: 8rem 1.5rem;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .industry-section {
        padding: 8rem 3rem;
    }
}

.industry-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .industry-header {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.industry-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.industry-title .italic {
    font-style: italic;
    font-weight: 300;
}

.industry-title .muted {
    color: var(--color-zinc-500);
}

.industry-intro {
    font-size: 1.125rem;
    color: var(--color-zinc-400);
    font-weight: 300;
    line-height: 1.7;
    align-self: end;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.industry-card {
    border: 1px solid var(--color-border);
    padding: 3rem;
    transition: border-color 0.5s;
}

.industry-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.industry-icon {
    color: #fff;
    margin-bottom: 2rem;
    transition: transform 0.5s;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.industry-desc {
    font-size: 0.875rem;
    color: var(--color-zinc-400);
    font-weight: 300;
    line-height: 1.7;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
/* Old contact hero styles removed - using pixel perfect styles below */

/* Contact Info */
.contact-info {
    margin-top: 3rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-size: 1.125rem;
    color: #fff;
}

.contact-info-value a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-value a:hover {
    color: var(--color-zinc-400);
}

/* Contact Form */
.contact-form {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 0.75rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: var(--color-input);
    border: 1px solid var(--color-border);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-ring);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2371717A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-select option {
    background: var(--color-background);
    color: #fff;
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

.text-center {
    text-align: center;
}

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hide/Show */
.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: block;
    }
}

@media (min-width: 768px) {
    .hidden-desktop {
        display: none;
    }
}

/* ===========================================
   CONTACT PAGE - PIXEL PERFECT STYLES
   =========================================== */

/* Contact Hero */
.contact-hero {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    padding: 8rem 1.5rem 4rem;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    position: relative;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-hero {
        padding: 8rem 3rem 4rem;
    }
}

.contact-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
}

.hero-label-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.label-line {
    width: 3rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-label-text {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-400);
}

.contact-hero-title {
    font-size: 3.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 0.85;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-hero-title {
        font-size: 6rem;
    }
}

.contact-hero-title .italic {
    font-style: italic;
    font-weight: 300;
}

.contact-hero-title .muted {
    color: var(--color-zinc-500);
}

.contact-hero-desc {
    font-size: 1.25rem;
    color: var(--color-zinc-400);
    font-weight: 300;
    line-height: 1.7;
    max-width: 42rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 1.5rem;
    background: var(--color-background);
    position: relative;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 8rem 3rem;
    }
}

.contact-section-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 5rem;
}

@media (min-width: 1024px) {
    .contact-section-inner {
        grid-template-columns: 7fr 5fr;
    }
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    width: 100%;
}

.contact-form-border {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px;
    background: var(--color-card);
}

@media (min-width: 768px) {
    .contact-form-border {
        padding: 8px;
    }
}

.contact-form-inner {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-form-inner {
        padding: 3rem;
    }
}

/* Form Progress */
.form-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.progress-num {
    font-size: 10px;
    font-family: 'Space Mono', monospace;
    color: #fff;
}

.progress-num.muted {
    color: var(--color-zinc-600);
}

.progress-line {
    flex: 1;
    height: 1px;
    background: var(--color-zinc-800);
}

.progress-fill {
    width: 33%;
    height: 100%;
    background: #fff;
}

/* Form Sections */
.form-section {
    margin-bottom: 4rem;
}

.form-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 1.5rem;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.form-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-zinc-800);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: #fff;
    appearance: none;
    border-radius: 0;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-bottom-color: #fff;
}

.form-select option {
    background: var(--color-zinc-900);
    color: #fff;
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 0.75rem;
    width: 16px;
    height: 16px;
    color: var(--color-zinc-500);
    pointer-events: none;
}

/* Form Two Column */
.form-two-col {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .form-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.form-col {
    width: 100%;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-zinc-800);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: #fff;
    border-radius: 0;
}

.form-input::placeholder {
    color: var(--color-zinc-700);
}

.form-input:focus {
    outline: none;
    border-bottom-color: #fff;
}

.form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-zinc-800);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: #fff;
    border-radius: 0;
    resize: none;
    font-family: 'Inter', sans-serif;
}

.form-textarea::placeholder {
    color: var(--color-zinc-700);
}

.form-textarea:focus {
    outline: none;
    border-bottom-color: #fff;
}

/* Submit Section */
.form-submit-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-zinc-900);
    align-items: flex-start;
}

@media (min-width: 768px) {
    .form-submit-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.form-disclaimer {
    font-size: 10px;
    color: var(--color-zinc-600);
    max-width: 20rem;
    line-height: 1.6;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 3rem;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background 0.3s;
}

@media (min-width: 768px) {
    .form-submit-btn {
        width: auto;
    }
}

.form-submit-btn:hover {
    background: var(--color-zinc-200);
}

.form-submit-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.form-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info-block {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.contact-info-block:first-child {
    padding-top: 0;
    border-top: none;
}

.info-section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 2rem;
}

/* Info Items */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: var(--color-zinc-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-type {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-zinc-500);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-day {
    font-size: 0.875rem;
    color: var(--color-zinc-400);
}

.hours-time {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
}

/* Guarantee Box */
.guarantee-box {
    background: rgba(24, 24, 27, 0.5);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
}

.guarantee-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    margin-bottom: 1rem;
}

.guarantee-title {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-text {
    font-size: 12px;
    color: var(--color-zinc-400);
    font-weight: 300;
    line-height: 1.6;
}

/* Social Links List */
.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link-item:hover {
    color: var(--color-zinc-400);
}

.social-icon {
    width: 20px;
    height: 20px;
    color: var(--color-zinc-600);
    transition: color 0.3s;
}

.social-link-item:hover .social-icon {
    color: var(--color-zinc-400);
}

.social-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.social-handle {
    font-size: 12px;
    color: var(--color-zinc-500);
}

/* ===========================================
   PROJECT SHOWCASE / GALLERY SLIDER
   =========================================== */
.project-showcase {
    position: relative;
}

.showcase-container {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #000;
}

.showcase-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.showcase-slide.active {
    opacity: 1;
    z-index: 10;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation Arrows */
.showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .showcase-nav {
        width: 48px;
        height: 48px;
    }
}

.showcase-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

.showcase-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.showcase-nav svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .showcase-nav svg {
        width: 24px;
        height: 24px;
    }
}

.showcase-nav.prev {
    left: 0.5rem;
}

.showcase-nav.next {
    right: 0.5rem;
}

@media (min-width: 768px) {
    .showcase-nav.prev {
        left: 1rem;
    }
    .showcase-nav.next {
        right: 1rem;
    }
}

/* Slide Counter */
.showcase-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
}

/* Dot Indicators */
.showcase-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .showcase-dots {
        gap: 0.75rem;
        margin-top: 2rem;
    }
}

.showcase-dot {
    width: 6px;
    height: 6px;
    background: var(--color-zinc-600);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .showcase-dot {
        width: 8px;
        height: 8px;
    }
}

.showcase-dot:hover {
    background: var(--color-zinc-400);
}

.showcase-dot.active {
    width: 32px;
    height: 6px;
    background: #fff;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .showcase-dot.active {
        width: 48px;
        height: 8px;
    }
}

/* Fullscreen Button */
.showcase-fullscreen {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 20;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.showcase-fullscreen:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

.showcase-fullscreen svg {
    width: 16px;
    height: 16px;
}

/* ===========================================
   LEGAL PAGES (Privacy Policy & Terms of Service)
   =========================================== */
.legal-hero {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    padding: 10rem 1.5rem 4rem;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    position: relative;
    justify-content: center;
}

@media (min-width: 768px) {
    .legal-hero {
        padding: 10rem 3rem 4rem;
    }
}

.legal-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
}

.legal-hero-title {
    font-size: 3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .legal-hero-title {
        font-size: 4.5rem;
    }
}

.legal-hero-title .italic {
    font-style: italic;
    font-weight: 300;
}

.legal-hero-title .muted {
    color: var(--color-zinc-500);
}

.legal-hero-desc {
    font-size: 1rem;
    color: var(--color-zinc-500);
    font-weight: 400;
}

/* Legal Content */
.legal-content {
    padding: 4rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .legal-content {
        padding: 6rem 3rem;
    }
}

.legal-content-inner {
    max-width: 48rem;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1rem;
    color: var(--color-zinc-400);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--color-zinc-400);
    line-height: 1.7;
    font-weight: 300;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--color-zinc-600);
    border-radius: 50%;
}

.legal-section ul li strong {
    color: #fff;
    font-weight: 500;
}

.legal-section a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--color-zinc-400);
}

.legal-contact {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
}

.legal-contact p {
    margin-bottom: 0.5rem;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

/* ===========================================
   MOBILE-SPECIFIC FIXES
   =========================================== */

/* --- Case Study Page: Mobile Text & Layout --- */
@media (max-width: 767px) {
    .case-section-text {
        font-size: 1.125rem;
        line-height: 1.7;
    }

    .case-section-text-sm {
        font-size: 1rem;
    }

    .case-hero-subtitle {
        font-size: 1.05rem;
    }

    .case-section {
        padding: 4rem 1.5rem;
    }

    .case-hero {
        padding: 10rem 1.5rem 4rem;
    }

    .case-two-col {
        gap: 3rem;
    }
}

/* --- Project Showcase Gallery: Arrows & Counter on Mobile --- */
@media (max-width: 767px) {
    .showcase-nav {
        width: 48px;
        height: 48px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 0;
    }

    .showcase-nav svg {
        width: 24px;
        height: 24px;
    }

    .showcase-nav.prev {
        left: 1rem;
    }

    .showcase-nav.next {
        right: 1rem;
    }

    .showcase-counter {
        font-family: 'Space Mono', monospace;
        font-size: 14px;
        padding: 0.5rem 1rem;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        letter-spacing: 0.05em;
    }

    .showcase-dot {
        width: 8px;
        height: 8px;
    }

    .showcase-dot.active {
        width: 48px;
        height: 8px;
    }

    .showcase-dots {
        gap: 0.75rem;
        margin-top: 2rem;
    }
}

/* --- Homepage Testimonials: Single Card on Mobile --- */
@media (max-width: 767px) {
    .testimonials-track {
        grid-template-columns: 1fr;
    }

    /* Force only ONE testimonial card visible on mobile */
    .testimonial-card.active ~ .testimonial-card.active {
        display: none !important;
    }

    .testimonial-card {
        padding: 2rem;
        gap: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.125rem;
        line-height: 1.7;
    }

    .testimonial-quote-icon {
        width: 36px;
        height: 36px;
    }

    .testimonials-header {
        margin-bottom: 2rem;
    }

    .testimonials-dots {
        margin-top: 2rem;
    }
}


/* --- Services Page: Mobile Responsive Fixes --- */
@media (max-width: 767px) {
    /* Prevent horizontal overflow from large headings */
    .page-hero,
    .services-list-section,
    .process-section,
    .industry-section {
        overflow-x: hidden;
    }

    /* Hero title: scale down for mobile */
    .page-hero-title {
        font-size: clamp(2.5rem, 10vw, 3.75rem);
        word-break: break-word;
    }

    /* Hero section: less padding on mobile */
    .page-hero {
        padding: 8rem 1.5rem 3rem;
    }

    /* Hero description */
    .page-hero-desc {
        font-size: 1.05rem;
    }

    /* Service items: reduce gap and padding */
    .services-list-section {
        padding: 4rem 1.5rem;
    }

    .services-list-section .container {
        gap: 4rem;
    }

    .service-item {
        gap: 1.5rem;
    }

    .service-title {
        font-size: 1.75rem;
    }

    .service-desc {
        font-size: 1rem;
    }

    /* Service features on mobile: add top border instead of left */
    .service-features {
        padding-top: 1.5rem;
        border-top: 1px solid var(--color-border);
    }

    /* Process section */
    .process-section {
        padding: 4rem 1.5rem;
    }

    .process-header {
        margin-bottom: 2.5rem;
    }

    .process-grid {
        gap: 2rem;
    }

    .process-num {
        font-size: 2rem;
    }

    .process-title {
        font-size: 1.25rem;
    }

    /* Industry section */
    .industry-section {
        padding: 4rem 1.5rem;
    }

    .industry-header {
        margin-bottom: 3rem;
    }

    .industry-title {
        font-size: 2rem;
    }

    .industry-card {
        padding: 2rem;
    }

    .industry-name {
        font-size: 1.25rem;
    }
}
