/* ================================
   Sew Corporate
   Premium Corporate Apparel Manufacturing
   ================================ */

:root {
    /* Primary Colors */
    --navy: #0f1d2f;
    --navy-light: #1a2d45;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    --off-white: #fafafa;
    --cream: #f5f3f0;

    /* Accent Colors */
    --copper: #c17f59;
    --copper-light: #d4956f;
    --copper-dark: #a66b48;
    --sage: #7d8c7a;

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

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

ul, ol {
    list-style: none;
}

/* ================================
   Typography
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

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

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.8;
}

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

.text-muted {
    color: var(--gray-500);
}

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

/* ================================
   Layout
   ================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1440px;
}

section {
    position: relative;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s var(--ease);
}

.navbar.scrolled {
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.logo-img {
    height: 32px;
    width: auto;
}

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

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s var(--ease);
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-links a.active {
    color: var(--charcoal);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s var(--ease);
}

.nav-cta:hover {
    background: var(--navy);
    transform: translateY(-1px);
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-flex;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease);
    border-radius: 1px;
}

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

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

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

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.mobile-menu-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--ease);
}

.mobile-menu.active .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-links a:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-links a:hover {
    color: var(--charcoal);
}

.mobile-cta {
    margin-top: 16px;
    padding: 16px 40px;
    background: var(--charcoal);
    color: var(--white) !important;
    border-radius: 6px;
    font-size: 1rem !important;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s var(--ease);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--charcoal);
    background: var(--gray-50);
}

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

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

.btn-text {
    padding: 0;
    background: none;
    color: var(--charcoal);
    font-weight: 500;
}

.btn-text:hover {
    color: var(--copper);
}

.btn-text .arrow {
    transition: transform 0.2s var(--ease);
}

.btn-text:hover .arrow {
    transform: translateX(4px);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.2s var(--ease);
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* ================================
   Section Headers
   ================================ */
.section-header {
    margin-bottom: 64px;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--copper);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 640px;
}

.section-header.center p {
    margin: 0 auto;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    padding: 160px 0 var(--section-padding);
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper);
    margin-bottom: 24px;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--copper);
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

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

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.hero-image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.hero-badge-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

@media (max-width: 1023px) {
    .hero-image {
        display: none;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-stat-value {
        font-size: 2rem;
    }
}

/* ================================
   Clients/Logos Section
   ================================ */
.clients-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.clients-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.client-logo {
    opacity: 0.4;
    transition: opacity 0.2s var(--ease);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
}

.client-logo:hover {
    opacity: 0.7;
}

/* ================================
   Services Section
   ================================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

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

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

.service-card {
    position: relative;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.3s var(--ease);
    overflow: hidden;
}

.service-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--gray-200);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.spec-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.service-card-price {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.service-card-price strong {
    color: var(--charcoal);
}

.service-card-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--copper);
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-card-link:hover {
    color: var(--copper-dark);
}

/* ================================
   Process Section
   ================================ */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--navy);
    color: var(--white);
}

.process-section .section-label {
    color: var(--copper-light);
}

.process-section .section-label::before {
    background: var(--copper-light);
}

.process-section h2 {
    color: var(--white);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-badge svg {
    width: 16px;
    height: 16px;
}

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

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

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

.process-step {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s var(--ease);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--copper);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
}

.process-step h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.process-step-details {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.process-step-detail:last-child {
    margin-bottom: 0;
}

.process-step-detail svg {
    width: 14px;
    height: 14px;
    color: var(--copper-light);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ================================
   Portfolio/Work Section
   ================================ */
.work-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

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

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

.work-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.work-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.work-card-image {
    aspect-ratio: 4/3;
    background: var(--gray-100);
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.work-card:hover .work-card-image img {
    transform: scale(1.05);
}

.work-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    color: var(--gray-400);
    font-size: 0.875rem;
}

.work-card-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.work-card-content {
    padding: 28px;
}

.work-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--copper);
    margin-bottom: 8px;
}

.work-card h3 {
    margin-bottom: 8px;
}

.work-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.work-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.work-card-scope {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.work-card-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 4px;
}

.work-card-link:hover {
    color: var(--copper);
}

/* Featured Work Card */
.work-card.featured {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .work-card.featured {
        grid-column: span 2;
    }

    .work-card.featured .work-card-image {
        aspect-ratio: 21/9;
    }
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 32px;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-200);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

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

/* ================================
   About Section
   ================================ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

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

.about-content h2 {
    margin-bottom: 24px;
}

.about-content .text-large {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 10px;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--copper);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   FAQ Section
   ================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

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

.faq-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-category {
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.faq-category:hover {
    background: var(--white);
    color: var(--charcoal);
}

.faq-category.active {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s var(--ease);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s var(--ease);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s var(--ease);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--gray-500);
    transition: transform 0.2s var(--ease);
}

.faq-item.active .faq-icon {
    background: var(--charcoal);
}

.faq-item.active .faq-icon svg {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px;
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
    text-align: center;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-contact {
    margin-top: 40px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

.cta-contact a {
    color: var(--copper-light);
}

.cta-contact a:hover {
    color: var(--copper);
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--copper);
}

.contact-detail h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-detail p {
    color: var(--charcoal);
}

.contact-detail a {
    color: var(--charcoal);
}

.contact-detail a:hover {
    color: var(--copper);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    color: var(--charcoal);
    transition: all 0.2s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--charcoal);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-submit {
    margin-top: 8px;
}

.form-submit .btn {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ================================
   Footer
   ================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--charcoal);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 28px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color 0.2s var(--ease);
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-400);
    transition: all 0.2s var(--ease);
}

.footer-social a:hover {
    background: var(--copper);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--copper-light);
}

.footer-bottom a:hover {
    color: var(--copper);
}

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

.footer-legal a {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ================================
   Page Headers
   ================================ */
.page-header {
    padding: 160px 0 80px;
    background: var(--cream);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Animations
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }
.fade-in[data-delay="4"] { transition-delay: 0.4s; }
.fade-in[data-delay="5"] { transition-delay: 0.5s; }
.fade-in[data-delay="6"] { transition-delay: 0.6s; }
.fade-in[data-delay="7"] { transition-delay: 0.7s; }

/* ================================
   Page Header (Interior Pages)
   ================================ */
.page-header {
    padding: 160px 0 80px;
    background: var(--cream);
    text-align: center;
}

.page-header h1 {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.page-header-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.page-header-subtitle a {
    color: var(--copper);
}

/* ================================
   Services Detail Page
   ================================ */
.services-detail-section {
    padding: var(--section-padding) 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image .service-card-placeholder.large {
    height: 400px;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-detail-content .text-large {
    margin-bottom: 2rem;
}

.service-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 2rem;
}

.service-spec h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.service-spec ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-spec li {
    font-size: 0.875rem;
    color: var(--gray-500);
    padding: 0.25rem 0;
}

/* Comparison Section */
.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

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

.comparison-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.comparison-card.highlight h3 {
    color: var(--white);
}

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

.comparison-list li {
    padding: 0.75rem 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9375rem;
}

.comparison-list.negative li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--gray-400);
}

.comparison-list.positive li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--copper);
}

/* ================================
   Process Detail Page
   ================================ */
.process-detail-section {
    padding: var(--section-padding) 0;
}

.process-detail-step {
    display: flex;
    gap: 48px;
    padding-bottom: 80px;
    margin-bottom: 80px;
    border-bottom: 1px solid var(--gray-200);
}

.process-detail-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.process-detail-number {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-detail-number span {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.process-detail-line {
    width: 2px;
    flex: 1;
    background: var(--gray-200);
    margin-top: 24px;
}

.process-detail-content {
    flex: 1;
}

.process-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.process-detail-header h2 {
    margin-bottom: 0;
}

.process-detail-time {
    background: var(--cream);
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.process-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 2rem 0;
}

.process-detail-card {
    background: var(--cream);
    padding: 24px;
    border-radius: 8px;
}

.process-detail-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.process-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-detail-card li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    padding: 0.375rem 0;
    padding-left: 20px;
    position: relative;
}

.process-detail-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--copper);
}

.process-detail-image {
    margin-top: 2rem;
}

.process-detail-image .service-card-placeholder.large {
    height: 300px;
}

/* Timeline Summary */
.timeline-summary-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.timeline-visual {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
}

.timeline-visual::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--gray-300);
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-week {
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

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

.timeline-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* FAQ Link Section */
.faq-link-section {
    padding: 60px 0;
}

.faq-link-card {
    background: var(--cream);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-link-card h3 {
    margin-bottom: 0.5rem;
}

.faq-link-card p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ================================
   Work/Portfolio Page
   ================================ */
.featured-project-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.featured-project {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.featured-project-image .work-card-placeholder.large {
    height: 500px;
}

.featured-project-content .work-card-category {
    margin-bottom: 1rem;
}

.featured-project-content h2 {
    margin-bottom: 1rem;
}

.featured-project-content .text-large {
    margin-bottom: 2rem;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.project-detail {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
}

.project-detail h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.project-detail p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

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

.project-detail li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    padding: 0.25rem 0;
}

/* Projects Grid */
.projects-grid-section {
    padding: var(--section-padding) 0;
}

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

.project-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.project-card-image {
    height: 240px;
}

.project-card-image .work-card-placeholder {
    height: 100%;
    border-radius: 0;
}

.project-card-content {
    padding: 24px;
}

.project-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.project-card-content p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.project-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.work-card-products {
    color: var(--copper);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonials-grid .testimonial-card {
    max-width: none;
}

/* ================================
   About Page
   ================================ */
.about-story-section {
    padding: var(--section-padding) 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-content h2 {
    margin-bottom: 1.5rem;
}

.about-story-content p {
    margin-bottom: 1.25rem;
    color: var(--gray-600);
}

.about-story-content .text-large {
    font-size: 1.125rem;
    color: var(--charcoal);
}

.about-story-image .hero-image-placeholder {
    height: 400px;
}

/* Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: var(--navy);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

.about-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

/* Difference Section */
.about-difference-section {
    padding: var(--section-padding) 0;
}

.about-difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.about-difference-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
}

.about-difference-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-difference-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.about-difference-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.about-difference-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: 0;
}

/* Stitched Section */
.about-stitched-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.about-stitched-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
}

.about-stitched-content h2 {
    margin-bottom: 1rem;
}

.about-stitched-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.about-stitched-image .hero-image-placeholder {
    height: 300px;
}

/* Industries Section */
.about-industries-section {
    padding: var(--section-padding) 0;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.industry-tag {
    background: var(--cream);
    color: var(--charcoal);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ================================
   FAQ Page
   ================================ */
.faq-page-section {
    padding: var(--section-padding) 0;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--navy);
}

.faq-page-section .faq-answer-content ul {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.faq-page-section .faq-answer-content li {
    margin-bottom: 0.5rem;
}

/* FAQ Contact Section */
.faq-contact-section {
    padding: 60px 0 var(--section-padding);
}

.faq-contact-card {
    background: var(--navy);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.faq-contact-card h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.faq-contact-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.faq-contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.faq-contact-buttons .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.faq-contact-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ================================
   Contact Page
   ================================ */
.contact-page-section {
    padding: 160px 0 var(--section-padding);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-page-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-page-info .text-large {
    margin-bottom: 2.5rem;
}

.contact-page-details {
    margin-bottom: 2.5rem;
}

.contact-page-details .contact-detail {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-page-details .contact-detail:first-child {
    padding-top: 0;
}

.contact-page-details .contact-detail:last-child {
    border-bottom: none;
}

.contact-expect {
    background: var(--cream);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.contact-expect h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-expect ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-expect li {
    padding: 0.5rem 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.contact-expect li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--copper);
}

.contact-faq-link {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.contact-faq-link a {
    color: var(--copper);
}

.contact-page-form {
    background: var(--cream);
    padding: 48px;
    border-radius: 16px;
}

.contact-page-form .form-group {
    margin-bottom: 24px;
}

.contact-page-form input,
.contact-page-form textarea {
    background: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Alternative Contact */
.contact-alt-section {
    padding: 0 0 var(--section-padding);
}

.contact-alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-alt-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-alt-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-alt-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ================================
   Responsive - Interior Pages
   ================================ */
@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .featured-project {
        grid-template-columns: 1fr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stitched-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .service-specs-grid {
        grid-template-columns: 1fr;
    }

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

    .process-detail-step {
        flex-direction: column;
        gap: 24px;
    }

    .process-detail-number {
        flex-direction: row;
        gap: 16px;
    }

    .process-detail-line {
        width: auto;
        height: 2px;
        flex: 1;
        margin-top: 0;
    }

    .process-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .process-detail-grid {
        grid-template-columns: 1fr;
    }

    .timeline-visual {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-visual::before {
        display: none;
    }

    .timeline-item {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

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

    .project-details-grid {
        grid-template-columns: 1fr;
    }

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

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .about-difference-grid {
        grid-template-columns: 1fr;
    }

    .faq-contact-buttons {
        flex-direction: column;
    }

    .contact-page-section {
        padding: 120px 0 60px;
    }

    .contact-page-form {
        padding: 32px;
    }

    .contact-alt-grid {
        grid-template-columns: 1fr;
    }
}

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

/* ================================
   Responsive
   ================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .section-header {
        margin-bottom: 48px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* ================================
   Reduced Motion
   ================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
