@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

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

:root {
  --accent:   #4da8ff;
  --dark:     #050a14;
  --dark2:    #0a1424;
  --light:    #f4f7fc;
  --muted:    #5a6478;
  --border:   rgba(77,168,255,0.16);
  --nav-h:    68px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0a1220;
  background: #fff;
}

/* ─── SHARED ────────────────────────────────── */

.a-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.a-eyebrow--light { color: rgba(77,168,255,.75); }

.a-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77,168,255,.35);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.a-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.a-btn:hover { opacity: .88; transform: translateY(-1px); }

.a-btn--accent  { background: var(--accent); color: var(--dark); }
.a-btn--dark    { background: var(--dark);   color: #fff; }
.a-btn--light    { background: var(--light);   color: black; }
.a-btn--ghost   { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.4); }
.a-btn--ghost:hover { border-color: rgba(255,255,255,.8); color: #fff; }

/* ─── NAV ───────────────────────────────────── */

.a-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5,10,20,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow .3s;
}

.a-nav--scrolled { box-shadow: 0 6px 28px rgba(0,0,0,.3); }

.a-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.a-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.a-nav__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(77,168,255,.6);
  flex-shrink: 0;
}

.a-nav__name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.a-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.a-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}

.a-nav__link:hover { color: #fff; background: rgba(255,255,255,.07); }

.a-nav__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 4px;
  margin-left: 8px;
  transition: opacity .2s;
}

.a-nav__cta:hover { opacity: .9; }

.a-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
}

.a-nav__mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  background: rgba(5,10,20,.98);
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 80px 32px 40px;
}

.a-nav__mobile.is-open { display: flex; }

.a-nav__mobile a {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  transition: color .2s, background .2s;
}

.a-nav__mobile a:hover { color: #fff; background: rgba(255,255,255,.06); }

.a-nav__close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 20px;
  cursor: pointer;
}

/* ─── HERO ──────────────────────────────────── */

.a-hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 40px 100px;
  overflow: hidden;
}

.a-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.a-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: 300px;
}

.a-hero__content .a-tag { margin-bottom: 20px; }

.a-hero__content h1 {
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}

.a-hero__content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-bottom: 36px;
}

.a-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── FOCUS STRIP ───────────────────────────── */

.a-strip {
  background: var(--light);
  border-bottom: 1px solid rgba(77,168,255,.1);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.a-strip__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.a-strip__pills { display: flex; flex-wrap: wrap; gap: 8px; }

.a-pill {
  font-size: 12px;
  font-weight: 500;
  color: #1a2438;
  background: #fff;
  border: 1px solid rgba(77,168,255,.2);
  border-radius: 3px;
  padding: 5px 12px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.a-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ─── ABOUT SECTION ─────────────────────────── */

.a-split { background: var(--dark); padding: 100px 0; }

.a-split__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}



.a-split__left h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 16px;
}

.a-split__left p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 28px;
}

.a-insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(77,168,255,.1);
  border: 1px solid var(--accent);
  border-radius: 10px;
}

.a-insight-card {
  padding: 28px;
  border-top: 3px solid transparent;
  transition: border-color .2s;
}

.a-insight-card:hover { border-top-color: var(--accent); }

.a-insight-card .a-tag { margin-bottom: 10px; }

.a-insight-card h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: white;
}

/* ─── BANNER ────────────────────────────────── */

.a-banner {
  background: var(--dark);
  background-image:
    radial-gradient(circle at 15% 50%, rgba(77,168,255,.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(77,168,255,.08) 0%, transparent 45%);
  padding: 72px 40px;
}

.a-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.a-banner__inner h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}

/* ─── FEATURED ──────────────────────────────── */

.a-featured { background: #fff; padding: 80px 0; }

.a-featured__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.a-featured__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}

.a-featured__inner h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: #0a1220;
  max-width: 700px;
  margin-bottom: 24px;
}

.a-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap .2s;
}

.a-link-arrow:hover { gap: 12px; }

/* ─── PRACTICE AREA CARDS ───────────────────── */

.a-cards-section { background: #fff; padding: 100px 0; }

.a-cards-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.a-cards-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(77,168,255,.14);
  padding-bottom: 28px;
}

.a-cards-section__header h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0a1220;
  flex-shrink: 0;
}

.a-cards-section__header p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 420px;
}

.a-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.a-card {
  background: #fff;
  border: 1px solid rgba(77,168,255,.12);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.a-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(77,168,255,.1);
  border-color: rgba(77,168,255,.3);
}

.a-card__top {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--accent);
}

.a-card__top--1 { background: linear-gradient(135deg, #050a14 0%, #0d1a30 100%); }
.a-card__top--2 { background: linear-gradient(135deg, #061020 0%, #102040 100%); }
.a-card__top--3 { background: linear-gradient(135deg, #040e1c 0%, #0a1828 100%); }
.a-card__top--4 { background: linear-gradient(135deg, #060c1a 0%, #0c1832 100%); }

.a-card__body { padding: 24px; }

.a-card__body .a-tag { margin-bottom: 10px; }

.a-card__body h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #0a1220;
  margin-bottom: 10px;
}

.a-card__body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── INDUSTRIES ────────────────────────────── */

.a-industries { background: #fff; padding: 100px 0; }

.a-industries__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.a-industries__header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(77,168,255,.14);
  padding-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
}

.a-industries__header h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0a1220;
  flex-shrink: 0;
}

.a-industries__header p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 380px;
}

.a-industries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.a-ind-card {
  position: relative;
  height: 220px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.a-ind-card--1 { background: linear-gradient(145deg, #061428 0%, #0e2448 100%); }
.a-ind-card--2 { background: linear-gradient(145deg, #080e1e 0%, #141a2e 100%); }
.a-ind-card--3 { background: linear-gradient(145deg, #041020 0%, #0a2030 100%); }
.a-ind-card--4 { background: linear-gradient(145deg, #050e22 0%, #0c1c3a 100%); }
.a-ind-card--5 { background: linear-gradient(145deg, #070a18 0%, #10122a 100%); }

/* Subtle grid overlay */
.a-ind-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,168,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,168,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.a-ind-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(5,10,20,.85) 0%, transparent 60%);
  transition: background .25s;
}

.a-ind-card:hover .a-ind-card__overlay {
  background: linear-gradient(to top, rgba(5,10,20,.95) 0%, rgba(77,168,255,.06) 100%);
}

.a-ind-card__overlay h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* Accent dot on hover */
.a-ind-card::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity .25s;
}

.a-ind-card:hover::after { opacity: 1; }

/* ─── THREE PILLARS ─────────────────────────── */

.a-pillars { background: var(--light); padding: 100px 0; }

.a-pillars__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.a-pillars__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.a-pillars__left h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: #0a1220;
  margin-bottom: 14px;
}

.a-pillars__left p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

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

.a-pillar {
  background: var(--dark);
  background-image: radial-gradient(circle at 50% 0%, rgba(77,168,255,.14) 0%, transparent 65%);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.a-pillar__letter {
  display: block;
  font-size: 80px;
  font-weight: 700;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(77,168,255,.28);
  letter-spacing: -.04em;
  margin-bottom: 20px;
  user-select: none;
}

.a-pillar h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.a-pillar p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}

/* ─── SERVICES GRID ─────────────────────────── */

.a-services { background: var(--light); padding: 100px 0; }

.a-services__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.a-services__header {
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(77,168,255,.14);
  padding-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
}

.a-services__header h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0a1220;
  flex-shrink: 0;
}

.a-services__header p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 380px;
}

.a-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(77,168,255,.1);
  border: 1px solid rgba(77,168,255,.1);
}

.a-svc-card {
  background: #fff;
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
  
}

.a-svc-card h2{
  margin-bottom: 30px;
}

.a-svc-card:hover { background: var(--light); }

.a-svc-card__bg {
  display: block;
  font-size: 80px;
  font-weight: 700;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(77,168,255,.15);
  letter-spacing: -.04em;
  margin-bottom: 16px;
  user-select: none;
}

.a-svc-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0a1220;
  margin-bottom: 8px;
}

.a-svc-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── STATS ─────────────────────────────────── */

.a-stats {
  background: var(--dark);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(77,168,255,.14) 0%, transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(77,168,255,.08) 0%, transparent 40%),
    linear-gradient(180deg, #060d18 0%, #0a1424 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.a-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,168,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,168,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.3), transparent 80%);
  pointer-events: none;
}

.a-stats__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.a-stats__left h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.a-stats__left p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
}

.a-stats__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.a-stat__num {
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.a-stat__label {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
}

/* ─── BIO ───────────────────────────────────── */

.a-bio { background: var(--dark); padding: 100px 0; }

.a-bio__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}

.a-bio__frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.a-bio__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 28%;
}

.a-bio__caption {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--light);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.a-bio__caption span {
  font-size: 12px;
  font-weight: 400;
  color: var(--light);
}

.a-bio__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.a-bio__text-col h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--light);
  margin-bottom: 18px;
}

.a-bio__text-col p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--light);
  margin-bottom: 28px;
}

.a-bio__list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.a-bio__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--light);
}

.a-bio__list i { color: var(--accent); font-size: 6px; }

/* ─── CONTACT ───────────────────────────────── */

.a-contact {
  background: var(--light);
  padding: 100px 0;
}

.a-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.a-contact__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.a-contact__left h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: #0a1220;
  margin-bottom: 16px;
}

.a-contact__left p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

.a-contact__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.a-contact__details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a2438;
  margin: 0;
}

.a-contact__details i { color: var(--accent); width: 16px; }

.a-form { display: flex; flex-direction: column; gap: 16px; }

.a-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.a-form__field { display: flex; flex-direction: column; gap: 6px; }

.a-form__field label {
  font-size: 12px;
  font-weight: 600;
  color: #1a2438;
  letter-spacing: .04em;
}

.a-form__field label span { color: var(--accent); }

.a-form__field input,
.a-form__field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #d8dee8;
  border-radius: 3px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0a1220;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.a-form__field input:focus,
.a-form__field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77,168,255,.12);
}

.a-form__field textarea { resize: vertical; min-height: 130px; }

/* ─── FOOTER ────────────────────────────────── */

.a-footer {
  background: var(--dark);
  background-image: linear-gradient(180deg, #060d18 0%, #0a1424 100%);
  border-top: 1px solid var(--border);
}

.a-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.a-footer__brand .a-nav__brand { margin-bottom: 16px; }

.a-footer__brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  max-width: 260px;
  margin-bottom: 20px;
}

.a-footer__social { display: flex; gap: 10px; }

.a-footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}

.a-footer__social a:hover { color: var(--accent); border-color: rgba(77,168,255,.45); }

.a-footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}

.a-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.a-footer__col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}

.a-footer__col ul a:hover { color: var(--accent); }

.a-footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.a-footer__bottom p {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}

/* ─── RESPONSIVE ────────────────────────────── */

@media (max-width: 1024px) {
  .a-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .a-services__grid { grid-template-columns: repeat(2, 1fr); }
  .a-industries__grid { grid-template-columns: repeat(3, 1fr); }
  .a-footer__inner { grid-template-columns: 1fr 1fr; }
  .a-pillars__right { grid-template-columns: 1fr; }
  .a-pillars__inner { grid-template-columns: 1fr; gap: 40px; }
  .a-pillars__left { position: static; }
  .a-pillars__right { grid-template-columns: repeat(3, 1fr); }
  .a-hero__content{
    margin-left: 10%;
  }
}

@media (max-width: 768px) {

  .a-hero__content{
    margin-left: 10%;
  }

  .a-nav__links { display: none; }
  .a-nav__toggle { display: flex; }
  .a-nav__inner { padding: 0 24px; }

  .a-hero { padding-left: 24px; padding-right: 24px; min-height: 90vh; }

  .a-strip { padding: 12px 24px; }

  .a-split__inner,
  .a-pillars__inner,
  .a-stats__inner,
  .a-bio__inner,
  .a-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .a-insight-grid { grid-template-columns: 1fr; }

  .a-banner { padding: 48px 24px; }
  .a-banner__inner { flex-direction: column; align-items: flex-start; }

  .a-featured__inner,
  .a-cards-section__inner,
  .a-industries__inner,
  .a-services__inner,
  .a-footer__inner { padding: 0 24px; }

  .a-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .a-footer__bottom { padding: 20px 24px; }

  .a-cards-section__header,
  .a-industries__header,
  .a-services__header { flex-direction: column; gap: 12px; }

  .a-cards-grid { grid-template-columns: 1fr 1fr; }

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

  .a-services__grid { grid-template-columns: 1fr 1fr; }

  .a-stats__right { grid-template-columns: 1fr 1fr; gap: 28px; }

  .a-bio__inner { grid-template-columns: 1fr; }
  .a-bio__image-col { max-width: 300px; }

  .a-pillars__right { grid-template-columns: 1fr; }

  .a-form__row { grid-template-columns: 1fr; }

  .a-split, .a-featured, .a-cards-section, .a-industries,
  .a-pillars, .a-services, .a-stats, .a-bio, .a-contact { padding: 72px 0; }
}

@media (max-width: 480px) {
  .a-cards-grid,
  .a-services__grid { grid-template-columns: 1fr; }
  .a-industries__grid { grid-template-columns: 1fr 1fr; }
  .a-stats__right { grid-template-columns: 1fr; }
}
