/* ═══════════════════════════════════════════════════════════════
   LLG Technologies — Commercial Division
   Shared Stylesheet  |  commercial.llgtech.com
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --black:       #0D0D0D;
  --charcoal:    #111827;
  --gray-900:    #1F2937;
  --gray-700:    #374151;
  --gray-500:    #6B7280;
  --gray-300:    #D1D5DB;
  --gray-100:    #F3F4F6;
  --gray-50:     #F9FAFB;
  --accent:      #e6af23;
  --accent-mid:  #e6af23;
  --accent-hover:#c9961e;
  --accent-light:#fef9ec;
  --accent-line: #f5e4a8;
  --border:      #E5E7EB;

  --font-body:   'Inter', sans-serif;
  --font-head:   'Plus Jakarta Sans', sans-serif;

  --nav-h:       175px;
  --section-pad: 96px 0;
  --container:   1280px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Image slot — fills any container; replace gradient placeholders with this */
.img-slot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
  align-self: stretch;
  min-height: 0;
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-pad); }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--charcoal); }
.section--accent-light { background: var(--accent-light); }
.border-t { border-top: 1px solid var(--border); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 14px;
}
.label--dark { color: var(--gray-500); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; }
.h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 800; letter-spacing: -.03em; }
.h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -.025em; }
.h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; letter-spacing: -.02em; }
.h4 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; }

.subhead {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.65;
  max-width: 640px;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0 28px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

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

.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--gray-300); }
.btn--outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline-white:hover { background: var(--white); color: var(--accent); border-color: var(--white); }

.btn--gold { background: var(--accent); color: var(--charcoal); font-weight: 700; }
.btn--gold:hover { background: var(--accent-hover); color: var(--white); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
}

/* ─── HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img { height: 154px; width: auto; display: block; }
.logo-divider { width: 1px; height: 28px; background: var(--gray-300); display: block; }
.logo-sub { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); }

.nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: var(--accent-light); }
.nav-link svg { flex-shrink: 0; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.dropdown-link:hover { background: var(--accent-light); color: var(--accent); }

.dropdown-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ─── HOME HERO ─────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--gray-50);
  border-left: 1px solid var(--border);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--accent); }
.hero-eyebrow-text { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: clamp(15px, 1.6vw, 18px); color: var(--gray-500); line-height: 1.7; max-width: 520px; }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #C8D8E8 0%, #B0C4D8 40%, #8FAFC8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(15,76,117,.5);
  font-weight: 500;
  letter-spacing: .04em;
}
.hero-stat {
  position: static;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: none;
}
.hero-stat-value { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.75); margin-top: 4px; white-space: nowrap; }

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--gray-50);
  border-left: 1px solid var(--border);
  z-index: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  max-width: 760px;
  padding-left: 40px;
}
.page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.page-hero-line { width: 28px; height: 1px; background: var(--accent); }
.page-hero-tag { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.035em;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── CREDIBILITY STRIP ─────────────────────────────────────── */
.cred-strip { background: var(--charcoal); padding: 40px 0; }
.cred-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.cred-item:first-child { padding-left: 0; }
.cred-item:last-child { border-right: none; }
.cred-icon {
  width: 36px; height: 36px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cred-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; }
.cred-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.cred-desc { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ─── SECTOR CARDS ──────────────────────────────────────────── */
.sectors-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.sectors-header-right { flex-shrink: 0; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
  cursor: pointer;
}
.sector-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sector-card--wide { grid-column: span 2; }
.sector-img { aspect-ratio: 16/7; background: var(--gray-100); overflow: hidden; }
.sector-card--wide .sector-img { aspect-ratio: 21/7; }
.sector-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; letter-spacing: .04em; color: rgba(0,0,0,.25);
}
.sector-img-placeholder.hosp { background: linear-gradient(135deg, #C4D8E8, #A8C0D4); }
.sector-img-placeholder.work { background: linear-gradient(135deg, #D0DAE8, #B8C8D8); }
.sector-img-placeholder.rest { background: linear-gradient(135deg, #E4D4C4, #D0C0A8); }
.sector-img-placeholder.conf { background: linear-gradient(135deg, #C8D8C8, #B0C4B0); }
.sector-img-placeholder.mdu  { background: linear-gradient(135deg, #D4CCE4, #C0B4D0); }
.sector-body { padding: 28px 28px 32px; }
.sector-tag { font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-mid); margin-bottom: 10px; }
.sector-card h3 { font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.25; }
.sector-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.sector-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--accent); transition: gap .2s; }
.sector-link:hover { gap: 10px; }

/* ─── SOLUTIONS GRID ────────────────────────────────────────── */
.solutions-header { max-width: 640px; margin-bottom: 56px; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sol-item { background: var(--white); padding: 32px 28px; transition: background .2s; }
.sol-item:hover { background: var(--accent-light); }
.sol-icon {
  width: 44px; height: 44px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background .2s;
}
.sol-item:hover .sol-icon { background: var(--accent-line); }
.sol-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.sol-item h4 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.sol-item p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ─── FULL SOLUTION SECTIONS (solutions page) ───────────────── */
.sol-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.sol-section:last-child { border-bottom: none; }
.sol-section--flip .sol-section-visual { order: -1; }
.sol-section-visual {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sol-section-visual-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; letter-spacing: .04em; color: rgba(0,0,0,.2);
}
.sol-features { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.sol-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-700); line-height: 1.5;
}
.sol-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── PROCESS ───────────────────────────────────────────────── */
.process-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.process-steps { margin-top: 40px; display: flex; flex-direction: column; }
.process-step {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding .2s;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.process-step:hover { padding-left: 4px; }
.step-num { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--accent); width: 28px; flex-shrink: 0; padding-top: 2px; }
.step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.step-desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }
.step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.step-tag { display: inline-block; padding: 3px 10px; background: var(--accent-light); color: var(--accent); border-radius: 20px; font-size: 11px; font-weight: 600; }
.process-visual { background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 48px; }
.process-diagram { display: flex; flex-direction: column; }
.diag-phase { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.diag-phase:last-child { border-bottom: none; }
.diag-pill { width: 80px; text-align: center; padding: 6px 0; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; flex-shrink: 0; }
.diag-pill--design { background: var(--accent-light); color: var(--accent); }
.diag-pill--build  { background: #EFF6FF; color: #2563EB; }
.diag-pill--support{ background: #F0FDF4; color: #16A34A; }
.diag-items { display: flex; flex-wrap: wrap; gap: 6px; }
.diag-item { padding: 4px 12px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--gray-700); font-weight: 500; }

/* ─── FULL PROCESS STEPS (process page) ────────────────────── */
.full-process { display: flex; flex-direction: column; gap: 0; }
.full-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.full-step:last-child { border-bottom: none; }
.full-step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-line);
  line-height: 1;
  text-align: right;
}
.full-step-body h3 { font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.full-step-body p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }
.full-step-body .step-tags { margin-top: 16px; }

/* ─── WHY LLG PILLARS ───────────────────────────────────────── */
.why-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-num { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--accent-line); line-height: 1; margin-bottom: 20px; }
.why-item h4 { font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; line-height: 1.25; }
.why-item p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }

/* ─── FEATURE LIST / CHECKLIST ──────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.feature-card h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }

/* ─── TWO-COLUMN CONTENT ────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col--wide { grid-template-columns: 1.2fr 1fr; }
.two-col-visual {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; font-weight: 500; letter-spacing: .04em; color: rgba(0,0,0,.2);
  overflow: hidden;
}
.two-col-visual.hosp { background: linear-gradient(135deg, #C4D8E8, #A8C0D4); }
.two-col-visual.work { background: linear-gradient(135deg, #D0DAE8, #B8C8D8); }
.two-col-visual.rest { background: linear-gradient(135deg, #E4D4C4, #D0C0A8); }
.two-col-visual.conf { background: linear-gradient(135deg, #C8D8C8, #B0C4B0); }
.two-col-visual.mdu  { background: linear-gradient(135deg, #D4CCE4, #C0B4D0); }
.two-col-visual.dark { background: linear-gradient(135deg, #1F2937, #374151); }

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-value { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--accent-mid); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; }

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info {}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-info-icon {
  width: 44px; height: 44px; background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.contact-info-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--charcoal); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }

/* ─── TEAM / ABOUT ──────────────────────────────────────────── */
.about-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.value-item {
  padding: 28px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.value-item h4 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.value-item p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: var(--charcoal);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 500px; height: 500px; background: rgba(255,255,255,.03); border-radius: 50%;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -30%; right: -5%;
  width: 400px; height: 400px; background: rgba(255,255,255,.03); border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 40px; }
.cta-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-section p { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 0; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: #0d0d0e; padding: 72px 0 40px; color: var(--white); }
.footer-grid {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-logo-sub { font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--container); margin: 48px auto 0; padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.25); font-style: italic; }

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cred-item { border-right: none; padding: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .sol-section { grid-template-columns: 1fr; gap: 40px; }
  .sol-section--flip .sol-section-visual { order: 0; }
}

@media (max-width: 860px) {
  :root { --section-pad: 64px 0; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .page-hero::after { display: none; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-card--wide { grid-column: auto; }
  .process-wrap { grid-template-columns: 1fr; }
  .sectors-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--wide { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .full-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .full-step-num { font-size: 32px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .cred-inner { padding: 0 20px; grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero-inner { padding: 0 20px; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .value-grid { grid-template-columns: 1fr; }
}
