/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #dc2626;
  --red2: #b91c1c;
  --red3: #ef4444;
  --red-light: rgba(220,38,38,0.12);
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --gray: #374151;
  --gray2: #6b7280;
  --gray3: #9ca3af;
  --gray4: #d1d5db;
  --gray5: #f3f4f6;
  --white: #ffffff;
  --grad: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  --r: 12px;
  --sh: 0 4px 24px rgba(220,38,38,0.2);
  --sh-dark: 0 8px 32px rgba(0,0,0,0.4);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--white); background: var(--black); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-weight: 900; line-height: 1.1; letter-spacing: -0.5px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .25s; text-decoration: none; border: none; font-family: inherit; letter-spacing: -0.2px; white-space: nowrap; }
.btn-red { background: var(--grad); color: #fff; box-shadow: 0 4px 20px rgba(220,38,38,0.4); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,38,38,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.btn-dark { background: var(--dark3); color: var(--white); border: 1.5px solid rgba(255,255,255,0.1); }
.btn-dark:hover { background: var(--gray); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-xl { padding: 18px 44px; font-size: 17px; border-radius: 12px; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── HEADER ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 500; background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.07); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.hdr-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 70px; display: flex; align-items: center; gap: 24px; }
.hdr-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.hdr-logo-mark { width: 38px; height: 38px; background: var(--grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hdr-logo-mark svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 2.5; }
.hdr-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.hdr-logo-name { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.hdr-logo-sub { font-size: 10px; font-weight: 500; color: var(--gray3); text-transform: uppercase; letter-spacing: 1.5px; }
.hdr-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.hdr-nav a { text-decoration: none; color: var(--gray3); font-size: 14px; font-weight: 500; padding: 7px 13px; border-radius: 7px; transition: all .2s; white-space: nowrap; }
.hdr-nav a:hover, .hdr-nav a.active { color: #fff; background: rgba(255,255,255,0.08); }
.hdr-nav .nav-services { position: relative; }
.hdr-nav .nav-services > a { display: flex; align-items: center; gap: 5px; }
.hdr-nav .nav-services > a svg { width: 13px; height: 13px; transition: transform .2s; }
.hdr-nav .nav-services:hover > a svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--dark2); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 8px; min-width: 240px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all .2s; box-shadow: var(--sh-dark); z-index: 100; }
.hdr-nav .nav-services:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; color: var(--gray3) !important; font-size: 13.5px; padding: 9px 12px; border-radius: 7px; background: transparent !important; transition: all .2s; }
.dropdown a:hover { color: #fff !important; background: rgba(255,255,255,0.06) !important; }
.dropdown a svg { width: 15px; height: 15px; stroke: var(--red); flex-shrink: 0; }
.hdr-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.hdr-phone { display: flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.3px; padding: 8px 14px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 8px; transition: all .2s; }
.hdr-phone:hover { border-color: var(--red); color: var(--red); }
.hdr-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.hdr-phone-text {}
.mob-menu-btn { display: none; width: 40px; height: 40px; background: var(--dark3); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 8px; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.mob-menu-btn svg { width: 20px; height: 20px; stroke: #fff; }

/* ── PAGE HERO ── */
.page-hero { min-height: 520px; position: relative; display: flex; align-items: flex-end; overflow: hidden; padding-top: 70px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 60%, rgba(220,38,38,0.15) 100%); }
.page-hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 60px 24px 64px; width: 100%; }
.page-hero-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray3); margin-bottom: 20px; }
.page-hero-breadcrumb a { color: var(--gray3); text-decoration: none; transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--red); }
.page-hero-breadcrumb span { color: var(--gray); }
.page-hero-label { display: inline-flex; align-items: center; gap: 7px; background: var(--red-light); border: 1px solid rgba(220,38,38,0.3); color: var(--red3); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 5px 13px; border-radius: 100px; margin-bottom: 16px; }
.page-hero-label svg { width: 13px; height: 13px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 60px); color: #fff; margin-bottom: 16px; max-width: 760px; }
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 580px; margin-bottom: 32px; }
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SECTION COMMON ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--red3); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--red); border-radius: 1px; }
.section-title { font-size: clamp(26px, 3vw, 42px); color: #fff; margin-bottom: 16px; }
.section-title span { color: var(--red3); }
.section-desc { font-size: 16px; color: var(--gray3); line-height: 1.75; max-width: 600px; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 36px 24px; }
.stats-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 42px; font-weight: 900; color: var(--red3); letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 13px; color: var(--gray3); font-weight: 500; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.srv-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.srv-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.srv-card:hover img { transform: scale(1.06); }
.srv-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; transition: all .3s; }
.srv-card:hover .srv-overlay { background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(220,38,38,0.15) 60%, transparent 100%); }
.srv-tag { font-size: 11px; font-weight: 700; color: var(--red3); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.srv-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.srv-desc-short { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 14px; opacity: 0; transform: translateY(8px); transition: all .3s; }
.srv-card:hover .srv-desc-short { opacity: 1; transform: translateY(0); }
.srv-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red3); font-size: 13px; font-weight: 700; text-decoration: none; transition: gap .2s; }
.srv-link:hover { gap: 10px; }
.srv-link svg { width: 14px; height: 14px; }

/* ── SERVICE PAGE: DETAILS ── */
.service-intro { background: var(--dark2); }
.si-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.si-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.si-img img { width: 100%; height: 100%; object-fit: cover; }
.si-content .eyebrow { margin-bottom: 12px; }
.si-title { font-size: clamp(24px, 2.5vw, 36px); margin-bottom: 16px; }
.si-text { font-size: 15px; color: var(--gray3); line-height: 1.8; margin-bottom: 24px; }
.si-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.si-feat { display: flex; align-items: flex-start; gap: 10px; padding: 14px; background: var(--dark3); border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); }
.si-feat svg { width: 16px; height: 16px; stroke: var(--red3); flex-shrink: 0; margin-top: 2px; }
.si-feat-text { font-size: 13px; color: var(--gray4); font-weight: 500; line-height: 1.5; }

/* ── CAPABILITIES ── */
.caps-section { background: var(--black); }
.caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.cap-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 28px; transition: all .3s; }
.cap-card:hover { border-color: var(--red); background: var(--dark3); }
.cap-icon { width: 52px; height: 52px; background: var(--red-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cap-icon svg { width: 26px; height: 26px; stroke: var(--red3); stroke-width: 1.8; }
.cap-title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.cap-desc { font-size: 13.5px; color: var(--gray3); line-height: 1.65; }

/* ── PROCESS ── */
.process-section { background: var(--dark2); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, var(--red), rgba(220,38,38,0.1)); }
.proc { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.proc-num { width: 60px; height: 60px; background: var(--grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; color: #fff; margin: 0 auto 18px; border: 3px solid var(--black); }
.proc-title { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.proc-desc { font-size: 13px; color: var(--gray3); line-height: 1.6; }

/* ── EQUIPMENT TABLE ── */
.equip-section { background: var(--black); }
.equip-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.equip-table th { background: var(--red); color: #fff; padding: 14px 18px; text-align: left; font-size: 13.5px; font-weight: 700; }
.equip-table th:first-child { border-radius: 8px 0 0 0; }
.equip-table th:last-child { border-radius: 0 8px 0 0; }
.equip-table td { padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; color: var(--gray4); background: var(--dark2); }
.equip-table tr:hover td { background: var(--dark3); }
.equip-table td:first-child { font-weight: 700; color: #fff; }

/* ── CTA BLOCK ── */
.cta-block { background: linear-gradient(135deg, #1a0505 0%, #2d0808 50%, #1a0505 100%); position: relative; overflow: hidden; padding: 80px 24px; text-align: center; }
.cta-block::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(220,38,38,0.2) 0%, transparent 70%); pointer-events: none; }
.cta-block-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-block h2 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 14px; }
.cta-block p { font-size: 16px; color: var(--gray3); margin-bottom: 36px; line-height: 1.7; }
.cta-form-row { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.cta-input { flex: 1; padding: 14px 18px; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 10px; font-size: 15px; font-family: inherit; color: #fff; outline: none; transition: border-color .2s; }
.cta-input:focus { border-color: var(--red); background: rgba(255,255,255,0.09); }
.cta-input::placeholder { color: var(--gray2); }
.cta-note { font-size: 12px; color: var(--gray2); margin-top: 12px; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 24px 28px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .hdr-logo { margin-bottom: 14px; }
.footer-tagline { font-size: 13.5px; color: var(--gray3); line-height: 1.7; margin-bottom: 20px; }
.footer-cert { display: inline-flex; align-items: center; gap: 7px; background: var(--red-light); border: 1px solid rgba(220,38,38,0.25); padding: 6px 12px; border-radius: 6px; font-size: 12px; color: var(--red3); font-weight: 600; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray2); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--gray3); text-decoration: none; font-size: 13.5px; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--red3); }
.footer-contacts .fc-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-contacts .fc-item:last-child { border-bottom: none; }
.footer-contacts .fc-item svg { width: 15px; height: 15px; stroke: var(--red3); flex-shrink: 0; margin-top: 2px; }
.footer-contacts .fc-text { font-size: 13.5px; color: var(--gray3); line-height: 1.5; }
.footer-contacts .fc-text a { display: inline; color: var(--gray3); text-decoration: none; }
.footer-contacts .fc-text a:hover { color: var(--red3); }
.footer-bottom { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--gray2); }
.footer-bottom a { color: var(--gray2); text-decoration: none; }
.footer-bottom a:hover { color: var(--gray3); }

/* ── ABOUT PAGE ── */
.about-story { background: var(--black); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-img { border-radius: 16px; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.story-text h2 { font-size: clamp(26px, 2.5vw, 38px); margin-bottom: 20px; }
.story-text p { font-size: 15px; color: var(--gray3); line-height: 1.8; margin-bottom: 16px; }
.timeline { margin-top: 48px; }
.tl-item { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: rgba(255,255,255,0.06); }
.tl-item:last-child::before { display: none; }
.tl-dot { width: 40px; height: 40px; background: var(--red-light); border: 2px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; font-weight: 800; color: var(--red3); }
.tl-content h4 { font-size: 15px; font-weight: 800; margin-bottom: 5px; }
.tl-content p { font-size: 13.5px; color: var(--gray3); line-height: 1.6; }
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.cert-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 20px; text-align: center; }
.cert-icon { font-size: 32px; margin-bottom: 10px; }
.cert-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.cert-sub { font-size: 12px; color: var(--gray3); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .caps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .si-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
}
/* ── MOBILE NAV PANEL ──────────────────────────────────── */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 499;
  backdrop-filter: blur(2px);
}
.mob-overlay.open { display: block; }
.mob-nav {
  display: flex; flex-direction: column;
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--dark2); z-index: 500;
  box-shadow: -4px 0 32px rgba(0,0,0,.5);
  transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mob-nav.open { right: 0; }
.mob-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: var(--dark3);
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.mob-nav-brand { font-size: 1rem; font-weight: 900; color: #fff; letter-spacing: -.3px; }
.mob-nav-brand span { color: var(--red); }
.mob-nav-x {
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .15s;
}
.mob-nav-x:hover { background: rgba(220,38,38,.3); }
.mob-nav-x i { width: 17px; height: 17px; }
.mob-nav-body { flex: 1; padding: 8px 0; }
.mob-nav-body > a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; font-size: .95rem; font-weight: 600;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
}
.mob-nav-body > a:hover, .mob-nav-body > a.active {
  background: rgba(255,255,255,.06); color: #fff;
}
.mob-nav-body > a i { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.mob-nav-group { border-bottom: 1px solid rgba(255,255,255,.05); }
.mob-nav-group-label {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  font-size: .75rem; font-weight: 700; color: var(--gray3);
  text-transform: uppercase; letter-spacing: .8px;
}
.mob-nav-group-label i { width: 14px; height: 14px; color: var(--red); }
.mob-nav-group a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px 10px 36px;
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: background .15s, color .15s;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.mob-nav-group a:hover, .mob-nav-group a.active {
  background: rgba(255,255,255,.05); color: #fff;
}
.mob-nav-group a i { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
.mob-nav-foot {
  padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 10px;
  background: var(--dark3); flex-shrink: 0;
}
.mob-nav-phone {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: #fff;
  padding: 12px 16px; border-radius: 10px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.mob-nav-phone:hover { background: #b91c1c; }
.mob-nav-phone i { width: 18px; height: 18px; flex-shrink: 0; }
.mob-nav-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.65);
  border: 1.5px solid rgba(255,255,255,.15);
  padding: 10px 16px; border-radius: 10px;
  font-size: .88rem; font-weight: 600; text-decoration: none;
  transition: all .2s;
}
.mob-nav-cta:hover { border-color: var(--red); color: #fff; }
.mob-nav-cta i { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .hdr-phone-text { display: none; }
  .hdr-phone { padding: 9px 11px; }
  .hdr-actions .btn-red { display: none; }
  .hdr-inner { padding: 0 16px; gap: 0; justify-content: space-between; }
  .mob-menu-btn { display: flex; margin-left: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .caps-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .si-features { grid-template-columns: 1fr; }
  .cta-form-row { flex-direction: column; }
  section { padding: 56px 16px; }
  .page-hero-content { padding: 40px 16px 48px; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}
