/* ============================================
   ENGICARE TECHNOLOGY - Modern Engineering Design System
   ============================================ */

@font-face {
  font-family: 'Geist';
  src: url('images/fonts/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-dark: #0a1128;
  --navy: #0f172a;
  --navy-light: #1e293b;
  
  --blue: #d72d36;
  --blue-dark: #ad1f27;
  --blue-light: #ef646b;
  --blue-50: #fff1f1;

  --red: #e11d48;
  --red-dark: #be123c;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --font-heading: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.12), 0 4px 6px -2px rgba(0,0,0,0.04);

  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 10px;
  --container: 1240px;
  --section-py: clamp(60px, 8vw, 90px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main { flex: 1; }

a { color: var(--blue); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Container Queries context */
.card-wrapper {
  container-type: inline-size;
}

/* --- Section Headers --- */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.section-desc {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--gray-600);
  max-width: 660px;
  line-height: 1.8;
  text-wrap: pretty;
}

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

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

.section-header.center .section-eyebrow::before { display: none; }
.section-header.center .section-desc { margin: 0 auto; }

/* ============================================
   TOP BAR & HEADER
   ============================================ */
.top-bar {
  background: var(--navy-dark);
  color: var(--gray-300);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-info span, .top-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-weight: 500;
}

.top-info a:hover { color: var(--white); }

.top-info svg {
  width: 15px; height: 15px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 2;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
}

/* Main Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.logo-name small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 6px 0;
  position: relative;
}

.nav a:hover, .nav a.active {
  color: var(--navy-dark);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--navy-dark);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-dark); color: white !important; transform: translateY(-1px); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

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

.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   INNER PAGE BANNERS
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 70px 0;
  border-bottom: 4px solid var(--blue);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.page-banner-desc {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 640px;
  line-height: 1.7;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 18px;
  font-weight: 500;
}

.breadcrumbs a { color: var(--gray-300); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: var(--blue-light); font-weight: 600; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy-dark);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--blue-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: var(--white);
  color: var(--navy-dark);
  border: 1.5px solid var(--gray-300);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: var(--blue-50);
  transform: translateY(-2px);
}

/* ============================================
   HOME HERO SECTION
   ============================================ */
.hero {
  padding: 85px 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, #edf7fd 100%);
  border-bottom: 1px solid var(--gray-200);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 3.4rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1px;
  text-wrap: balance;
}

.hero h1 span { color: var(--blue); }

.hero-desc {
  font-size: 1.12rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.84rem;
  color: var(--gray-500);
  font-weight: 600;
}

.hero-visual {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hero-visual:hover {
  transform: translateY(-4px);
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.hero-list-item svg {
  width: 18px; height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
}

/* ============================================
   SECTIONS & CARDS
   ============================================ */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
  transform: translateY(-4px);
}

.card img {
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card-icon {
  width: 50px; height: 50px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   ABB PARTNER BANNER
   ============================================ */
.partner-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.partner-box h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.partner-box p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.partner-badge-wrapper {
  background: white;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.partner-abb-text {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.partner-abb-sub {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-dark);
}

/* ============================================
   CONTACT CARDS & FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
}

.contact-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 18px;
  transition: border-color 0.2s ease;
}

.contact-card:hover {
  border-color: var(--blue);
}

.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 22px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--gray-900);
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

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

.form-success {
  display: none;
  padding: 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  color: #065f46;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 70px 0 30px;
}

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

.footer-about .logo-mark { background: rgba(255,255,255,0.12); }
.footer-about .logo-name { color: var(--white); }
.footer-about .logo-name small { color: var(--blue-light); }

.footer-about p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin: 18px 0 22px;
  line-height: 1.75;
}

.footer-col h4,
.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--gray-400);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s ease;
}

.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .partner-box { grid-template-columns: 1fr; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .top-info span:not(:first-child) { display: none; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100dvh;
    background: white;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .nav.active { right: 0; }
  .menu-btn { display: flex; z-index: 1001; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ============================================
   ENGICARE 2026 BRAND LAYER
   Technical editorial system: graphite, paper, signal red
   ============================================ */

body {
  background: #f3f4f2;
  color: #24282d;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--navy-dark);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-bar {
  padding: 8px 0;
  background: #171a1e;
  border: 0;
}

.top-info {
  gap: clamp(14px, 2.4vw, 30px);
}

.top-info a,
.top-info span {
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.top-badge {
  background: transparent;
  color: #b8bdc4;
  padding: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.header {
  padding: 12px 0;
  background: rgba(243, 244, 242, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo {
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: #171a1e;
  border: 1px solid #171a1e;
  box-shadow: none;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 10px;
  height: 10px;
  background: var(--blue);
}

.logo-name {
  font-size: 1.16rem;
  letter-spacing: -0.035em;
}

.logo-name small {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: #68707a;
}

.nav {
  gap: clamp(17px, 2.3vw, 30px);
}

.nav a {
  font-size: 0.84rem;
  letter-spacing: -0.01em;
}

.nav a.active::after {
  height: 2px;
  border-radius: 0;
}

.nav-cta,
.btn {
  border-radius: var(--radius-sm);
}

.nav-cta {
  background: #171a1e;
  padding: 11px 18px !important;
}

.nav-cta:hover {
  background: var(--blue-dark);
}

.hero-v2 {
  min-height: calc(100dvh - 104px);
  display: flex;
  align-items: stretch;
  padding: clamp(28px, 4vw, 56px) 0;
  background:
    linear-gradient(90deg, rgba(215, 45, 54, 0.08) 1px, transparent 1px) 0 0 / 96px 96px,
    #f3f4f2;
  border-bottom: 1px solid #d8dadd;
}

.hero-v2-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-v2-copy {
  padding: 22px 0;
}

.hero-kicker {
  margin-bottom: 24px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.hero-v2 h1 {
  max-width: 690px;
  margin: 0;
  color: #171a1e;
  font-family: var(--font-heading);
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.068em;
  font-weight: 760;
}

.hero-v2 h1 span {
  color: var(--blue);
}

.hero-v2 .hero-desc {
  max-width: 520px;
  margin: 30px 0 0;
  color: #505760;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.62;
}

.hero-v2 .hero-btns {
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 720;
  letter-spacing: -0.01em;
  box-shadow: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-secondary {
  background: transparent;
  color: #171a1e;
  border-color: #979da4;
}

.btn-secondary:hover {
  background: #171a1e;
  border-color: #171a1e;
  color: white;
}

.btn:active,
.nav-cta:active {
  transform: translateY(1px);
}

.hero-v2-media {
  height: min(69vh, 690px);
  min-height: 500px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #171a1e;
}

.hero-v2-media picture,
.hero-v2-media img {
  width: 100%;
  height: 100%;
}

.hero-v2-media img {
  object-fit: cover;
}

.hero-v2-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}

.hero-v2-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 13px 16px;
  color: #f8f9fa;
  background: rgba(18, 20, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
}

.hero-v2-media figcaption strong {
  font-size: 0.8rem;
  font-weight: 720;
}

.hero-v2-media figcaption span {
  color: #bbc0c7;
  font-size: 0.7rem;
}

.proof-rail {
  background: #eceeeb;
  border-bottom: 1px solid #d8dadd;
}

.proof-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-rail-grid > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px clamp(12px, 2vw, 28px);
  border-right: 1px solid #d2d5d7;
}

.proof-rail-grid > div:first-child {
  border-left: 1px solid #d2d5d7;
}

.proof-rail-grid strong {
  color: #171a1e;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.proof-rail-grid span {
  margin-top: 5px;
  color: #555d65;
  font-size: 0.75rem;
}

.home-page .section {
  background: #f3f4f2;
  border: 0;
}

.home-page .section-title {
  max-width: 770px;
  color: #171a1e;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 710;
}

.home-page .section-desc {
  max-width: 570px;
  color: #5a616a;
  line-height: 1.65;
}

.home-page .section-header {
  max-width: 800px;
  margin-bottom: 48px;
}

.capability-section {
  padding-top: clamp(76px, 10vw, 148px);
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 255px 255px;
  gap: 12px;
}

.capability-feature,
.capability-item {
  color: #171a1e;
  position: relative;
  overflow: hidden;
  border: 1px solid #d2d5d7;
  border-radius: var(--radius);
  background: #e8eae7;
  transition: transform 220ms ease, border-color 220ms ease;
}

.capability-feature:hover,
.capability-item:hover {
  color: #171a1e;
  transform: translateY(-3px);
  border-color: #9da2a8;
}

.capability-feature {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.capability-feature img {
  width: 100%;
  height: 64%;
  object-fit: cover;
}

.capability-feature > div {
  padding: 24px;
}

.capability-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-grid h3 {
  color: inherit;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.capability-grid p {
  margin-top: 12px;
  color: #626a73;
  font-size: 0.9rem;
  line-height: 1.55;
}

.capability-item {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.capability-item-dark {
  color: #f4f5f6;
  background: #1b1f24;
  border-color: #1b1f24;
}

.capability-item-dark:hover {
  color: white;
  border-color: #1b1f24;
}

.capability-item-dark span {
  color: #f17b81;
}

.capability-item-image {
  padding: 0;
}

.capability-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-item-image > div {
  position: absolute;
  inset: auto 0 0;
  padding: 26px 24px;
  color: white;
  background: linear-gradient(transparent, rgba(16, 18, 21, 0.92));
}

.capability-item-image span {
  color: #ffc0c3;
}

.procurement-section {
  padding-top: 24px;
}

.procurement-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.procurement-intro {
  position: sticky;
  top: 116px;
}

.section-eyebrow {
  color: var(--blue-dark);
}

.section-eyebrow::before {
  background: var(--blue);
}

.procurement-steps {
  list-style: none;
  counter-reset: none;
}

.procurement-steps li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #cfd2d4;
}

.procurement-steps li:first-child {
  border-top: 1px solid #cfd2d4;
}

.procurement-steps > li > span {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.procurement-steps h3 {
  margin-bottom: 7px;
  color: #171a1e;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.procurement-steps p {
  color: #626a73;
  font-size: 0.9rem;
}

.certificate-section {
  padding-top: clamp(80px, 10vw, 140px);
}

.certificate-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.certificate-preview {
  width: min(100%, 450px);
  justify-self: center;
  position: relative;
  display: block;
  padding: 12px;
  background: #dfe1df;
  border: 1px solid #c9ccce;
  border-radius: var(--radius);
}

.certificate-preview::before {
  content: 'ARCHIVE';
  position: absolute;
  top: 24px;
  left: -10px;
  z-index: 2;
  padding: 6px 10px;
  color: white;
  background: var(--blue);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.certificate-preview img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.certificate-copy > p {
  max-width: 650px;
  margin: 22px 0;
  color: #555d66;
}

.certificate-copy dl {
  max-width: 650px;
  margin: 32px 0 24px;
  border-top: 1px solid #cfd2d4;
}

.certificate-copy dl {
  display: grid;
  grid-template-columns: 155px 1fr;
}

.certificate-copy dt {
  padding: 14px 0;
  border-bottom: 1px solid #cfd2d4;
  color: #5b626a;
  font-size: 0.78rem;
}

.certificate-copy dd {
  padding: 14px 0;
  border-bottom: 1px solid #cfd2d4;
  color: #202429;
  font-size: 0.9rem;
  font-weight: 650;
}

.certificate-copy .certificate-note {
  max-width: 620px;
  padding: 14px 16px;
  color: #6b3135;
  background: #feecee;
  border-left: 3px solid var(--blue);
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1f2429;
  font-size: 0.88rem;
  font-weight: 740;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--blue-dark);
}

.client-section {
  padding-top: clamp(82px, 10vw, 145px);
}

.client-heading {
  margin-bottom: 40px;
}

.client-heading p {
  max-width: 540px;
  color: #656d76;
}

.client-directory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 30px;
  border-top: 1px solid #c9cccf;
  border-left: 1px solid #c9cccf;
}

.client-directory span {
  min-height: 108px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #2b3036;
  background: #eceeeb;
  border-right: 1px solid #c9cccf;
  border-bottom: 1px solid #c9cccf;
  font-weight: 660;
  line-height: 1.2;
}

.client-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 30px;
  border-top: 1px solid #c9cccf;
  border-left: 1px solid #c9cccf;
}

.client-logo-wall > div {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 3vw, 38px);
  background: #eceeeb;
  border-right: 1px solid #c9cccf;
  border-bottom: 1px solid #c9cccf;
}

.client-logo-wall img {
  width: 100%;
  max-width: 180px;
  max-height: 52px;
  object-fit: contain;
}

.final-cta-section {
  padding-bottom: clamp(80px, 9vw, 130px);
}

.final-cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  padding: clamp(34px, 5vw, 68px);
  color: white;
  background: #1a1e22;
  border-radius: var(--radius);
}

.final-cta h2 {
  max-width: 650px;
  color: white;
  font-size: clamp(2.2rem, 4.7vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.final-cta p {
  max-width: 600px;
  margin-top: 18px;
  color: #b8bec5;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.final-cta .text-link {
  color: #f0f2f4;
}

.footer {
  background: #171a1e;
}

.footer-about .logo-name small {
  color: #aab0b7;
}

.wa-float {
  width: 52px;
  height: 52px;
  right: 22px;
  bottom: 22px;
  border-radius: 50%;
  color: #08391f;
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.wa-float:hover {
  color: #08391f;
}

.top-info svg,
.card-icon,
.contact-card-icon,
.wa-float svg {
  display: none;
}

.wa-float:not(:has(span))::after {
  content: 'WA';
  color: #08391f;
  font-size: 0.66rem;
  font-weight: 820;
}

/* Interior page refinements */
.page-banner {
  background: #f3f4f2;
  color: #171a1e;
  border-bottom: 1px solid #d2d5d7;
  padding: clamp(58px, 8vw, 100px) 0;
}

.page-banner-title {
  color: #171a1e;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-banner-desc {
  max-width: 660px;
  color: #5e656e;
}

.breadcrumbs,
.breadcrumbs a {
  color: #737a82;
}

.section-alt {
  background: #eceeeb;
}

.card {
  border-color: #d1d4d6;
  box-shadow: none;
}

.card:hover {
  border-color: #a8adb2;
  box-shadow: none;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #ffffff;
  border-color: #aeb4ba;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.form-status.is-visible {
  display: block;
}

.form-status[data-state='success'] {
  color: #155c36;
  background: #e9f8ef;
  border: 1px solid #9bd5b2;
}

.form-status[data-state='error'] {
  color: #7b2026;
  background: #fff0f1;
  border: 1px solid #e5a7ac;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 1100px) {
  .hero-v2-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero-v2 h1 {
    font-size: clamp(3rem, 6.4vw, 5rem);
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 230px 230px;
  }

  .capability-feature {
    grid-column: 1 / 3;
    grid-row: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .capability-feature img {
    height: 100%;
  }

  .capability-feature > div {
    align-self: end;
  }

  .client-directory {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .top-info span,
  .top-info a:nth-child(2) {
    display: none;
  }

  .hero-v2 {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-v2 h1 {
    font-size: clamp(3.35rem, 14vw, 5.5rem);
  }

  .hero-v2-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-v2-media img {
    object-position: 62% center;
  }

  .proof-rail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-rail-grid > div:nth-child(3) {
    border-left: 1px solid #d2d5d7;
  }

  .capability-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .capability-feature {
    grid-column: auto;
    display: flex;
  }

  .capability-feature img {
    height: 270px;
  }

  .capability-item {
    min-height: 190px;
  }

  .procurement-layout,
  .certificate-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .procurement-intro {
    position: static;
  }

  .certificate-preview {
    width: min(88%, 430px);
  }
}

@media (max-width: 560px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-v2 {
    padding-top: 24px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero-v2 h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-v2 .hero-desc {
    margin-top: 22px;
  }

  .hero-v2 .hero-btns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-v2 .btn {
    width: 100%;
  }

  .hero-v2-media figcaption {
    width: auto;
  }

  .proof-rail-grid > div {
    min-height: 96px;
  }

  .proof-rail-grid strong {
    font-size: 1rem;
  }

  .home-page .section-title {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .procurement-steps li {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }

  .certificate-copy dl {
    grid-template-columns: 1fr;
  }

  .certificate-copy dt {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .certificate-copy dd {
    padding-top: 2px;
  }

  .client-directory {
    grid-template-columns: 1fr;
  }

  .client-directory span {
    min-height: 82px;
  }

  .client-logo-wall > div {
    min-height: 110px;
  }

  .final-cta {
    padding: 30px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
