  :root {
    --red: #C8102E;
    --red-dark: #8B0000;
    --navy: #1A1F2E;
    --navy-light: #252B3B;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --gray-mid: #E8E8E8;
    --text: #0D0D0D;
    --muted: #6B7280;
    --font-display: 'Bebas Neue', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-serif: 'Source Serif 4', serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    font-size: 18px; /* Increased from 16px */
  }

  /* ============ SCROLLBAR ============ */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--red); }

  /* ============ NAV ============ */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--red);
    transition: box-shadow 0.3s;
  }
  #navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
  }
  .nav-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(10% 0%, 90% 0%, 100% 15%, 100% 85%, 90% 100%, 10% 100%, 0% 85%, 0% 15%);
  }
  .nav-logo-icon span {
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1px;
  }
  .nav-logo-text { line-height: 1.1; }
  .nav-logo-text .brand { font-family: var(--font-display); font-size: 20px; color: var(--navy); letter-spacing: 1px; }
  .nav-logo-text .sub { font-family: var(--font-condensed); font-size: 11px; color: var(--red); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 6px; }
  .nav-link {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 15px; /* Increased from 13px */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding: 6px 12px;
    position: relative;
    cursor: pointer;
    transition: color 0.2s;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 12px;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.25s ease;
  }
  .nav-link:hover { color: var(--red); }
  .nav-link:hover::after { width: calc(100% - 24px); }
  .nav-link.active { color: var(--red); }
  .nav-link.active::after { width: calc(100% - 24px); }
  .nav-cta {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 15px; /* Increased from 13px */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--red-dark); }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile Nav */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 75px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav-link {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 280px;
    text-align: center;
  }
  .mobile-nav-link:hover { color: var(--red); }

  /* ============ PAGES ============ */
  .page { display: none; padding-top: 72px; min-height: 100vh; }
  .page.active { display: block; }

  /* ============ ANIMATIONS ============ */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ============ UTILITIES ============ */
  .eyebrow {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 14px; /* Increased from 12px */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 64px);
    color: var(--navy);
    line-height: 1;
    letter-spacing: 1px;
  }
  .section-title.white { color: var(--white); }
  .body-text {
    font-family: var(--font-serif);
    font-size: 18px; /* Increased from 16px */
    line-height: 1.7;
    color: #333;
  }
  .body-text.white { color: rgba(255,255,255,0.8); }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 96px 0; }
  .section-sm { padding: 64px 0; }

  /* Red divider */
  .red-rule { width: 60px; height: 4px; background: var(--red); margin: 20px 0; }
  .red-rule.center { margin: 20px auto; }

  /* ============ BUTTON ============ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .btn-red { background: var(--red); color: var(--white); }
  .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
  }
  .btn-outline:hover { background: var(--navy); color: var(--white); }
  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  .btn-outline-white:hover { background: var(--white); color: var(--navy); }
  .btn-white { background: var(--white); color: var(--red); }
  .btn-white:hover { background: var(--gray); }

  /* ============ INNER HERO (shared) ============ */
  .inner-hero {
    background: var(--navy);
    padding: 100px 0 72px;
    position: relative;
    overflow: hidden;
  }
  .inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 300px;
    height: 100%;
    background: var(--red);
    clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.15;
  }
  .inner-hero .section-title { 
    color: var(--white); 
    margin-bottom: 16px;
  }
  .inner-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 8px;
  }
  .breadcrumb {
    font-family: var(--font-condensed);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    margin-top: 16px;
  }
  .breadcrumb span { color: var(--red); }

  /* ============ CTA BANNER ============ */
  .cta-banner {
    background: var(--red);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .cta-banner .container { position: relative; text-align: center; }
  .cta-banner .section-title.white { margin-bottom: 16px; }

  /* ============ FLOATING CTA ============ */
  #floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 998;
    background: var(--red);
    color: white;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 22px;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 24px rgba(200,16,46,0.5);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
  }
  #floating-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #floating-cta:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(200,16,46,0.5); }
  #floating-cta svg { width: 16px; height: 16px; }

  /* ========================================================
     PAGE 1: HOME
     ======================================================== */

  /* Hero */
  .hero {
    --hero-nav: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: calc(100vh - var(--hero-nav));
    min-height: calc(100dvh - var(--hero-nav));
    min-height: calc(100svh - var(--hero-nav));
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: var(--navy);
  }
  .hero-left {
    background:
      radial-gradient(120% 80% at 0% 50%, rgba(200, 16, 46, 0.06) 0%, transparent 55%),
      linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 88px) clamp(40px, 5vw, 80px) clamp(48px, 7vw, 88px) clamp(32px, 4vw, 80px);
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 0;
  }
  .hero-left-glow {
    position: absolute;
    top: -20%;
    right: -30%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-left::after {
    content: '';
    position: absolute;
    top: 0; right: -60px;
    width: 120px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    transform: skewX(-4deg);
    z-index: 1;
    box-shadow: 8px 0 40px rgba(26, 31, 46, 0.06);
  }
  .hero-eyebrow {
    margin-left: 16px;
    position: relative;
    z-index: 2;
  }
  .hero-right {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    min-height: 0;
    border-radius: 0 0 0 clamp(20px, 3.5vw, 48px);
  }
  .hero-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.06);
    transition: transform 12s ease-out;
  }
  @media (hover: hover) and (pointer: fine) {
    .hero:hover .hero-img {
      transform: scale(1.06);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-img { transition: none; }
    .hero:hover .hero-img { transform: scale(1.03); }
  }
  .hero-right-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(105deg, rgba(26, 31, 46, 0.88) 0%, rgba(26, 31, 46, 0.35) 42%, rgba(26, 31, 46, 0.12) 100%),
      linear-gradient(0deg, rgba(26, 31, 46, 0.55) 0%, transparent 42%);
    pointer-events: none;
  }
  .hero-corner-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(40%, 280px);
    height: 4px;
    background: linear-gradient(90deg, var(--red), transparent);
    z-index: 4;
    pointer-events: none;
  }
  .hero-pulse {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 88px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.45);
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; height: 88px; }
    50% { opacity: 0.55; height: 48px; }
  }
  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 5.5vw + 0.5rem, 92px);
    line-height: 0.9;
    color: var(--navy);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    text-wrap: balance;
  }
  .hero-h1 em {
    color: var(--red);
    font-style: normal;
    display: block;
    text-shadow: 0 0 40px rgba(200, 16, 46, 0.15);
  }
  .hero-sub {
    font-family: var(--font-serif);
    font-size: clamp(17px, 1.3vw + 0.7rem, 20px); /* Increased from 15-17px */
    line-height: 1.7;
    color: #4a4f5a;
    margin: clamp(18px, 2.5vw, 28px) 0 clamp(28px, 3vw, 40px);
    max-width: 36rem;
    position: relative;
    z-index: 2;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
  .hero-badge {
    position: absolute;
    bottom: clamp(20px, 4vw, 40px);
    right: clamp(20px, 4vw, 52px);
    background: rgba(200, 16, 46, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 18px;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }

  /* Stats strip */
  .stats-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-mid);
    border-bottom: 1px solid var(--gray-mid);
    padding: 40px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    padding: 20px 24px;
    border-right: 1px solid var(--gray-mid);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--red);
    line-height: 1;
    letter-spacing: 2px;
  }
  .stat-label {
    font-family: var(--font-condensed);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-top: 8px;
    font-weight: 600;
  }

  /* Services Overview */
  .services-overview { background: var(--navy); }
  .services-overview .section-title.white { margin-bottom: 8px; }
  .services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .service-card {
    background: var(--navy-light);
    padding: 44px 36px;
    border-top: 4px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
  }
  .service-card:hover { border-top-color: var(--red); transform: translateY(-4px); }
  .service-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,16,46,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .service-card-icon svg { width: 28px; height: 28px; color: var(--red); fill: var(--red); }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .service-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
  }
  .service-card ul {
    list-style: none;
    margin-bottom: 28px;
  }
  .service-card ul li {
    font-family: var(--font-condensed);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
  }
  .service-card ul li::before { content: '—'; color: var(--red); font-size: 12px; }
  .service-link {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 14px; }

  /* Why GGS Teaser */
  .why-teaser { background: var(--white); overflow: hidden; }
  .why-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .why-teaser-text .big-num {
    font-family: var(--font-display);
    font-size: 200px;
    color: var(--gray);
    line-height: 0.8;
    position: absolute;
    top: -20px;
    left: -30px;
    z-index: 0;
    user-select: none;
  }
  .why-teaser-text { position: relative; z-index: 1; }
  .why-teaser-img-wrap {
    position: relative;
    height: 520px;
  }
  .why-teaser-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .why-teaser-img-wrap::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--red);
    z-index: -1;
  }

  /* Why teaser vector illustration */
  .why-teaser-vector {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26,31,46,0.04) 0%, rgba(200,16,46,0.03) 100%);
    border: 1px solid rgba(200,16,46,0.1);
  }
  .why-teaser-vector svg {
    width: 70%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(200,16,46,0.15));
    animation: shieldFloat 4s ease-in-out infinite;
  }
  @keyframes shieldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* Clients Marquee */
  .clients-strip {
    background: var(--gray);
    padding: 40px 0;
    overflow: hidden;
  }
  .clients-strip-label {
    text-align: center;
    font-family: var(--font-condensed);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .marquee-wrap { overflow: hidden; }
  .marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .marquee-item {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .marquee-item::after { content: '●'; color: var(--red); font-size: 8px; }

  /* CEO + Team */
  .ceo-section { background: var(--gray); }
  .ceo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }
  .ceo-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.12);
  }
  .ceo-message { max-width: 680px; }
  .ceo-sign { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.08); }
  .ceo-name {
    font-family: var(--font-condensed);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    font-size: 13px;
  }
  .ceo-title { color: var(--muted); font-size: 13px; margin-top: 6px; }

  .team-section { background: var(--white); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .team-card {
    background: var(--gray);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 18px 18px 20px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  }
  .team-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
  }
  .team-avatar {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
  }
  .team-name {
    margin-top: 14px;
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
  }
  .team-role {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
  }

  .regional-mini {
    margin-top: 22px;
    padding: 18px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .regional-mini-title {
    font-family: var(--font-condensed);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
  }
  .regional-mini-items { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.7; }
  .regional-mini-items strong { color: rgba(255,255,255,0.9); }

  /* ========================================================
     PAGE 2: ABOUT
     ======================================================== */
  .about-intro-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    align-items: center;
  }
  .highlight-box {
    border-left: 4px solid var(--red);
    background: var(--gray);
    padding: 20px 24px;
    margin-top: 28px;
  }
  .highlight-box p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.7;
  }
  .about-img-stack {
    position: relative;
    height: 500px;
  }
  .about-img-main {
    width: 80%;
    height: 380px;
    object-fit: cover;
    position: absolute;
    top: 0; right: 0;
  }
  .about-img-secondary {
    width: 55%;
    height: 240px;
    object-fit: cover;
    position: absolute;
    bottom: 0; left: 0;
    border: 6px solid white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  }
  .red-square {
    position: absolute;
    top: 30px; left: 10px;
    width: 80px; height: 80px;
    background: var(--red);
    z-index: -1;
  }

  /* Vision Objectives */
  .vision-section { background: var(--gray); }
  .vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .vision-card {
    background: var(--white);
    padding: 44px 40px;
    border-top: 4px solid var(--red);
  }
  .vision-icon {
    width: 56px;
    height: 56px;
    background: rgba(200,16,46,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .vision-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--navy);
    letter-spacing: 1px;
    margin-bottom: 14px;
  }

  /* Values */
  .values-section { background: var(--navy); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .value-card {
    background: var(--navy-light);
    padding: 36px 28px;
    transition: background 0.3s;
  }
  .value-card:hover { background: rgba(200,16,46,0.1); }
  .value-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: rgba(200,16,46,0.3);
    margin-bottom: 8px;
  }
  .value-card h4 {
    font-family: var(--font-condensed);
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(200,16,46,0.3);
    padding-bottom: 12px;
  }
  .value-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
  }

  /* Operation Steps */
  .ops-section { background: var(--white); }
  .ops-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 56px;
    position: relative;
  }
  .ops-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 28px;
    width: calc(100% - 56px);
    height: 2px;
    background: var(--red);
    z-index: 0;
  }
  .ops-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .ops-step-num {
    width: 56px;
    height: 56px;
    background: var(--red);
    color: white;
    font-family: var(--font-display);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
  }
  .ops-step h4 {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
  }

  /* ========================================================
     PAGE 3: SERVICES
     ======================================================== */
  .services-detail { background: var(--white); }
  .services-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
  }
  .services-sidebar {
    position: sticky;
    top: 96px;
    background: var(--gray);
    padding: 32px 0;
  }
  .sidebar-item {
    display: block;
    padding: 14px 28px;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
  }
  .sidebar-item:hover, .sidebar-item.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(200,16,46,0.05);
  }
  .service-section-block { margin-bottom: 72px; }
  .service-section-block h2 {
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--navy);
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
  }
  .service-item {
    background: var(--gray);
    padding: 28px 24px;
    border-top: 3px solid transparent;
    transition: all 0.25s;
  }
  .service-item:hover { border-top-color: var(--red); background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .service-item-icon {
    width: 44px; height: 44px;
    background: rgba(200,16,46,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .service-item h4 {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .service-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  .tech-section { background: var(--gray); }
  .tech-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 48px;
  }
  .tech-card {
    background: white;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.25s;
    border-bottom: 3px solid transparent;
  }
  .tech-card:hover { border-bottom-color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .tech-card svg { width: 36px; height: 36px; color: var(--red); margin-bottom: 16px; }
  .tech-card h4 {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
  }

  .weapons-section { background: var(--navy); }
  .weapons-table { width: 100%; margin-top: 40px; border-collapse: collapse; }
  .weapons-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .weapons-table tr:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
  .weapons-table td {
    padding: 18px 20px;
    font-family: var(--font-condensed);
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
  }
  .weapons-table td:first-child {
    color: var(--red);
    font-weight: 700;
    width: 220px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .weapons-note {
    margin-top: 24px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-condensed);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ========================================================
     PAGE 4: WHY US
     ======================================================== */
  .differentiator {
    padding: 80px 0;
    overflow: hidden;
  }
  .differentiator:nth-child(even) { background: var(--gray); }
  .diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .diff-grid.reverse { direction: rtl; }
  .diff-grid.reverse > * { direction: ltr; }
  .diff-img {
    height: 420px;
    width: 100%;
    object-fit: cover;
    display: block;
  }
  .diff-vector-wrap {
    height: 420px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .diff-vector-svg {
    width: 100%;
    height: 100%;
  }
  .diff-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    color: var(--navy);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .recruitment-section { background: var(--navy); }
  .recruitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .recruit-card {
    background: var(--navy-light);
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
  }
  .recruit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: var(--red);
    transition: height 0.35s;
  }
  .recruit-card:hover::before { height: 100%; }
  .recruit-card-num {
    font-family: var(--font-display);
    font-size: 72px;
    color: rgba(200,16,46,0.15);
    line-height: 1;
    margin-bottom: 16px;
  }
  .recruit-card h4 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .recruit-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

  .monitoring-section { background: var(--white); }
  .monitoring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .monitoring-steps { list-style: none; }
  .monitoring-step {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-mid);
  }
  .monitoring-step:last-child { border-bottom: none; }
  .m-step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--red);
    color: white;
    font-family: var(--font-display);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .m-step-content h5 {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .m-step-content p { font-size: 14px; color: var(--muted); line-height: 1.6; }

  /* ========================================================
     PAGE 5: CLIENTS
     ======================================================== */
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .client-card {
    background: white;
    border: 1px solid var(--gray-mid);
    padding: 28px 24px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .client-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: var(--red);
    transition: width 0.35s;
  }
  .client-card:hover { border-color: transparent; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
  .client-card:hover::before { width: 100%; }
  .client-tag {
    display: inline-block;
    background: rgba(200,16,46,0.08);
    color: var(--red);
    font-family: var(--font-condensed);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 12px;
  }
  .client-card h4 {
    font-family: var(--font-condensed);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
  }

  .foreign-clients { background: var(--navy); }
  .foreign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .foreign-card {
    background: var(--navy-light);
    padding: 28px 28px 28px 40px;
    border-left: 3px solid var(--red);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.25s;
  }
  .foreign-card:hover { background: rgba(200,16,46,0.08); }
  .foreign-icon { font-size: 28px; }
  .foreign-card-text {}
  .foreign-card h4 {
    font-family: var(--font-condensed);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }
  .foreign-card span {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-condensed);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .noc-section { background: var(--gray); }
  .noc-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  .noc-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 3px solid var(--red);
    padding: 40px 60px;
    margin: 48px 0 32px;
  }
  .noc-badge-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--navy);
    letter-spacing: 2px;
  }
  .noc-badge-items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .noc-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .noc-badge-item::before { content: '✓'; }

  /* ========================================================
     PAGE 6: CONTACT
     ======================================================== */
  .contact-section {
    background: var(--gray);
    padding: 120px 0;
  }
  .contact-card {
    display: grid;
    grid-template-columns: 460px 1fr;
    background: white;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.15);
    min-height: 800px;
    border-radius: 8px;
    overflow: hidden;
  }
  .contact-left {
    background: var(--navy);
    padding: 80px 56px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .contact-left::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(200,16,46,0.05) 0%, transparent 100%);
    pointer-events: none;
  }
  .contact-left .section-title.white { 
    margin-bottom: 48px; 
    font-size: 42px; 
    border-bottom: 3px solid var(--red);
    display: inline-block;
    padding-bottom: 12px;
  }
  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
  }
  .contact-detail:last-of-type { border-bottom: none; }
  .contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(200,16,46,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .contact-detail:hover .contact-detail-icon { background: var(--red); }
  .contact-detail-icon svg { width: 22px; height: 22px; color: var(--red); transition: color 0.3s; }
  .contact-detail:hover .contact-detail-icon svg { color: white; }
  
  .contact-detail-label {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
  }
  .contact-detail-value {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
  }
  .contact-detail-value small {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }
  .contact-detail-value a { color: white; text-decoration: none; transition: color 0.2s; }
  .contact-detail-value a:hover { color: var(--red); }

  .contact-right {
    background: white;
    padding: 80px 80px;
  }
  .contact-right h2 {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--navy);
    letter-spacing: 1px;
    margin-bottom: 48px;
    position: relative;
  }
  .contact-right h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--red);
  }
  .form-group { margin-bottom: 22px; }
  .form-label {
    display: block;
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-mid);
    background: var(--gray);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--red);
    background: white;
  }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .form-submit {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: white;
    border: none;
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--red-dark); }
  .form-note { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }

  .emergency-banner { background: var(--red); padding: 72px 0; text-align: center; }
  .emergency-banner .section-title.white { margin-bottom: 12px; }
  .emergency-phone {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 80px);
    color: white;
    letter-spacing: 4px;
    margin: 24px 0;
    display: block;
  }

  .office-section { background: var(--navy); padding: 64px 0; }
  .office-card {
    border: 2px solid var(--red);
    padding: 36px;
    display: inline-block;
  }
  .office-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .office-card p {
    font-family: var(--font-condensed);
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--navy);
    border-top: 3px solid var(--red);
    padding: 72px 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand { }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .footer-logo-icon {
    width: 44px; height: 44px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(10% 0%, 90% 0%, 100% 15%, 100% 85%, 90% 100%, 10% 100%, 0% 85%, 0% 15%);
  }
  .footer-logo-icon span { color: white; font-family: var(--font-display); font-size: 18px; }
  .footer-logo-name { font-family: var(--font-display); font-size: 20px; color: white; letter-spacing: 1px; }
  .footer-tagline { font-family: var(--font-condensed); font-size: 11px; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
  .footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
  .footer-nav h4, .footer-contact h4 {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200,16,46,0.3);
  }
  .footer-link {
    display: block;
    font-family: var(--font-condensed);
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    cursor: pointer;
    padding: 7px 0;
    transition: color 0.2s;
    letter-spacing: 0.5px;
  }
  .footer-link:hover { color: var(--red); }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-contact-item:last-child { border-bottom: none; }
  .footer-contact-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
  .footer-contact-item span { font-family: var(--font-condensed); font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
  .footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
  .footer-contact-item a:hover { color: var(--red); }
  .footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy {
    font-family: var(--font-condensed);
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
  }
  .footer-badges {
    display: flex;
    gap: 16px;
  }
  .footer-badge {
    font-family: var(--font-condensed);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 4px 10px;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .hero {
      grid-template-columns: 1fr;
      min-height: calc(100vh - var(--hero-nav));
      min-height: calc(100dvh - var(--hero-nav));
      min-height: calc(100svh - var(--hero-nav));
      max-height: none;
      align-items: stretch;
    }
    .hero-left {
      padding: clamp(32px, 6vw, 52px) clamp(24px, 5vw, 40px);
      order: 2;
    }
    .hero-left::after { display: none; }
    .hero-right {
      order: 1;
      height: clamp(240px, 38svh, 400px);
      min-height: 220px;
      max-height: 44vh;
      border-radius: 0;
    }
    .hero-img { object-position: 50% 30%; }
    .hero-badge {
      bottom: 16px;
      right: 16px;
      left: auto;
    }
    .hero:hover .hero-img { transform: scale(1.03); }
    .services-cards { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-cards { grid-template-columns: repeat(2, 1fr); }
    .recruitment-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .services-layout { grid-template-columns: 1fr; }
    .services-sidebar { display: none; }
    .contact-split { grid-template-columns: 1fr; }
    .about-intro-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; gap: 40px; }
    .diff-grid.reverse { direction: ltr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .vision-grid { grid-template-columns: 1fr; }
    .monitoring-grid { grid-template-columns: 1fr; }
    .why-teaser-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .foreign-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .ceo-grid { grid-template-columns: 1fr; gap: 28px; }
    .ceo-photo img { height: 360px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .section { padding: 64px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--gray-mid); }
    .values-grid { grid-template-columns: 1fr; }
    .recruitment-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .ops-steps { flex-direction: column; align-items: stretch; }
    .ops-steps::before { display: none; }
    .ops-step-num { margin: 0 0 12px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-left { padding: 48px 24px; }
    .contact-left, .contact-right { padding: 48px 28px; }
    .clients-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .tech-cards { grid-template-columns: repeat(2, 1fr); }
    .noc-badge { padding: 28px 24px; }
    .noc-badge-items { flex-direction: column; }
    .team-grid { grid-template-columns: 1fr; }
    .team-avatar { height: 240px; }
  }
