@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --white: #FFFFFF;
  --off-white: #F9F8F5;
  --light: #F2F0EB;
  --rule: #E4E1D9;
  --rule-dark: #C8C4B8;
  --black: #0C0C0C;
  --black-soft: #1C1C1C;
  --text: #1C1C1C;
  --text-mid: #4A4A44;
  --text-light: #8A8880;
  --gold: #B8982A;
  --gold-bright: #D4AE3C;
  --gold-light: #E8D078;
  --gold-bg: #FBF7EC;
  --gold-rule: rgba(184,152,42,0.22);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --tr: 0.26s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 76px;
  --max: 1320px;
  --pad: 0 80px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--sans); font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::selection { background: var(--gold); color: var(--white); }

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

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--tr);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 34px; width: auto; object-fit: contain; }
.nav-name { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: 0.08em; color: var(--black); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--text-mid);
  position: relative; transition: color var(--tr);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--white); background: var(--black);
  padding: 11px 26px; border: none;
  transition: background var(--tr), transform var(--tr);
}
.nav-cta:hover { background: var(--gold); }
.nav-mobile { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-mobile span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: var(--tr); }
.nav-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--rule);
  padding: 28px 24px; z-index: 999; flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; color: var(--text-mid); padding: 14px 0;
  border-bottom: 1px solid var(--rule); transition: color var(--tr);
}
.nav-drawer a:hover { color: var(--black); }
.nav-drawer .nav-cta { margin-top: 18px; text-align: center; display: block; border-bottom: none; }

/* ── TYPOGRAPHY COMPONENTS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.section-h { font-family: var(--serif); font-size: clamp(30px, 4.5vw, 54px); font-weight: 400; line-height: 1.1; color: var(--black); }
.section-h em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 15.5px; line-height: 1.85; color: var(--text-mid); font-weight: 300; max-width: 560px; }
.gold-rule { width: 48px; height: 1.5px; background: var(--gold); margin: 22px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  padding: 15px 36px; border: none; cursor: pointer;
  transition: all var(--tr);
}
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--gold); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--black); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(12,12,12,0.87) 0%, rgba(12,12,12,0.65) 55%, rgba(12,12,12,0.40) 100%);
}
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px; z-index: 2;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 80px 88px; max-width: 820px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-eyebrow-line { width: 40px; height: 1.5px; background: var(--gold-light); }
.hero-eyebrow-text { font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 600; }
.hero-h1 {
  font-family: var(--serif); font-weight: 400; line-height: 1.04;
  font-size: clamp(44px, 7vw, 92px); color: var(--white); margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 16px; line-height: 1.78; color: rgba(255,255,255,0.62); font-weight: 300; max-width: 540px; margin-bottom: 44px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; right: 80px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(184,152,42,0.8), transparent);
  animation: scrollline 2.2s ease-in-out infinite;
}
@keyframes scrollline { 0%,100% { opacity:1; height:60px; } 50% { opacity:0.3; height:38px; } }
.hero-scroll-label { font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.35); writing-mode: vertical-rl; }

/* ── SECTIONS ── */
section { padding: 104px 80px; }
section.dark { background: var(--black); }
section.off { background: var(--off-white); }
section.light { background: var(--light); }

/* ── STATS BAR ── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 0 80px; }
.stat { padding: 40px 24px; border-right: 1px solid var(--rule); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: clamp(30px,4vw,46px); font-weight: 400; color: var(--black); display: block; margin-bottom: 6px; line-height: 1; }
.stat-lbl { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); font-weight: 500; }

/* ── PILLARS ── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); }
.pillar {
  background: var(--white); padding: 52px 42px;
  position: relative; overflow: hidden;
  transition: box-shadow var(--tr);
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.42s ease;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { box-shadow: 0 6px 40px rgba(0,0,0,0.07); }
.pillar-num { font-family: var(--serif); font-size: 52px; font-weight: 400; color: rgba(184,152,42,0.08); line-height: 1; margin-bottom: 20px; }
.pillar-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--black); margin-bottom: 13px; }
.pillar-body { font-size: 14px; line-height: 1.82; color: var(--text-mid); font-weight: 300; margin-bottom: 24px; }
.pillar-link { font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 7px; transition: gap var(--tr); }
.pillar:hover .pillar-link { gap: 13px; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.two-col.rev { direction: rtl; }
.two-col.rev > * { direction: ltr; }
.two-col-text { display: flex; flex-direction: column; gap: 0; }
.two-col-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--light);
  overflow: hidden;
}
.two-col-visual img { width: 100%; height: 100%; object-fit: cover; }
.two-col-visual-frame {
  position: absolute; top: 20px; right: -20px; bottom: -20px; left: 20px;
  border: 1px solid var(--gold-rule); z-index: -1;
}
.two-col-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--gold); color: var(--white);
  padding: 18px 24px; text-align: center;
}
.two-col-badge strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1; margin-bottom: 3px; }
.two-col-badge span { font-size: 10px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; }

/* ── INFO BLOCKS ── */
.info-blocks { display: flex; flex-direction: column; gap: 2px; margin-top: 36px; }
.info-block { background: var(--off-white); border: 1px solid var(--rule); padding: 28px 30px; }
.info-block-label { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.info-block-text { font-size: 13.5px; line-height: 1.78; color: var(--text-mid); font-weight: 300; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); margin-top: 60px; }
.why-card { background: var(--white); padding: 44px 34px; transition: background var(--tr); }
.why-card:hover { background: var(--off-white); }
.why-card-icon { width: 44px; height: 44px; border: 1.5px solid var(--rule); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.why-card-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-card-title { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--black); margin-bottom: 11px; }
.why-card-body { font-size: 13.5px; line-height: 1.82; color: var(--text-mid); font-weight: 300; }

/* ── SERVICES LIST ── */
.services-list { display: flex; flex-direction: column; gap: 2px; background: var(--rule); margin-top: 56px; }
.service-item {
  background: var(--white); padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  gap: 40px; align-items: center;
  transition: background var(--tr);
  cursor: default;
}
.service-item:hover { background: var(--gold-bg); }
.service-item-num { font-family: var(--serif); font-size: 38px; font-weight: 400; color: rgba(184,152,42,0.15); line-height: 1; }
.service-item-body {}
.service-item-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--black); margin-bottom: 9px; }
.service-item-text { font-size: 13.5px; line-height: 1.78; color: var(--text-mid); font-weight: 300; }
.service-item-tags { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; }
.service-tag { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--text-light); background: var(--light); padding: 5px 12px; }

/* ── INFRA GRID ── */
.infra-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--rule); margin-top: 60px; }
.infra-card {
  background: var(--black-soft); overflow: hidden;
  position: relative; aspect-ratio: 16/9;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
}
.infra-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; transition: opacity var(--tr); }
.infra-card:hover img { opacity: 0.50; }
.infra-card-content { position: relative; z-index: 1; }
.infra-card-tag { font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 10px; }
.infra-card-title { font-family: var(--serif); font-size: clamp(18px,2vw,26px); font-weight: 400; color: var(--white); margin-bottom: 10px; }
.infra-card-body { font-size: 13px; line-height: 1.72; color: rgba(255,255,255,0.60); font-weight: 300; max-width: 380px; }

/* ── INSIGHTS ── */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); margin-top: 60px; }
.insight-card { background: var(--white); padding: 0; overflow: hidden; display: block; transition: box-shadow var(--tr); }
.insight-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.09); }
.insight-card:hover .insight-arrow { transform: translateX(6px); }
.insight-card-img { height: 200px; overflow: hidden; background: var(--light); }
.insight-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insight-card:hover .insight-card-img img { transform: scale(1.04); }
.insight-card-body { padding: 30px 30px 34px; }
.insight-tag { font-size: 8px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.insight-title { font-family: var(--serif); font-size: clamp(16px,2vw,22px); font-weight: 400; color: var(--black); margin-bottom: 11px; line-height: 1.25; }
.insight-excerpt { font-size: 13px; line-height: 1.78; color: var(--text-mid); font-weight: 300; margin-bottom: 20px; }
.insight-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--rule); }
.insight-date { font-size: 10px; color: var(--text-light); }
.insight-arrow { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--black); display: flex; align-items: center; gap: 6px; transition: transform var(--tr); }

/* ── ARTICLE PAGE ── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 88px 80px 100px; }
.article-header { margin-bottom: 48px; padding-bottom: 36px; border-bottom: 1px solid var(--rule); }
.article-h1 { font-family: var(--serif); font-size: clamp(28px,4vw,48px); font-weight: 400; line-height: 1.1; color: var(--black); margin-bottom: 18px; }
.article-meta { display: flex; gap: 20px; font-size: 11px; color: var(--text-light); flex-wrap: wrap; }
.article-body { font-size: 15.5px; line-height: 1.90; color: var(--text-mid); font-weight: 300; }
.article-body h2 { font-family: var(--serif); font-size: clamp(20px,2.5vw,30px); font-weight: 400; color: var(--black); margin: 44px 0 16px; }
.article-body p { margin-bottom: 20px; }
.article-body strong { color: var(--black); font-weight: 600; }
.article-pullquote { border-left: 2.5px solid var(--gold); padding: 18px 26px; margin: 36px 0; font-family: var(--serif); font-size: 19px; color: var(--black); line-height: 1.65; background: var(--gold-bg); }
.article-cta { background: var(--black); padding: 44px; margin-top: 60px; text-align: center; }
.article-cta h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.article-cta p { font-size: 13.5px; color: rgba(255,255,255,0.55); margin-bottom: 24px; line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--black); padding: 100px 80px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(30px,4vw,52px); font-weight: 400; color: var(--white); line-height: 1.1; }
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 440px; margin-top: 14px; line-height: 1.75; }

/* ── CONSULTATION FORM ── */
.consult-section { padding: 104px 80px; background: var(--off-white); }
.consult-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 96px; align-items: start; }
.consult-info { display: flex; flex-direction: column; gap: 0; }
.ci { padding: 24px 0; border-bottom: 1px solid var(--rule); }
.ci:first-child { padding-top: 0; }
.ci-label { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 8px; }
.ci-val { font-size: 14px; color: var(--text); font-weight: 400; }
.ci-val a { color: var(--black); border-bottom: 1px solid var(--rule); transition: border-color var(--tr), color var(--tr); }
.ci-val a:hover { color: var(--gold); border-color: var(--gold); }
.form-box { background: var(--white); border: 1px solid var(--rule); padding: 52px 48px; }
.form-box h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--black); margin-bottom: 6px; }
.form-box p { font-size: 13px; color: var(--text-mid); margin-bottom: 32px; line-height: 1.7; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mid); font-weight: 600; }
.form-input, .form-select, .form-textarea {
  background: var(--white); border: 1.5px solid var(--rule);
  color: var(--text); padding: 13px 16px;
  font-size: 13.5px; font-family: var(--sans); font-weight: 300;
  outline: none; width: 100%;
  transition: border-color var(--tr);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238A8880' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-note { font-size: 10px; color: var(--text-light); margin-top: 10px; line-height: 1.6; text-align: center; }
.form-success { display: none; background: var(--gold-bg); border: 1.5px solid var(--gold-rule); padding: 20px 24px; margin-top: 14px; text-align: center; font-size: 13.5px; color: var(--gold); font-weight: 500; }

/* ── ABOUT PAGE ── */
.about-hero { padding: 148px 80px 88px; background: var(--off-white); border-bottom: 1px solid var(--rule); }
.leadership-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); margin-top: 56px; }
.leader-card { background: var(--white); padding: 40px 34px; transition: background var(--tr); }
.leader-card:hover { background: var(--gold-bg); }
.leader-title { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--black); margin-bottom: 10px; }
.leader-desc { font-size: 13px; line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.leader-rule { width: 30px; height: 1.5px; background: var(--gold); margin: 16px 0; }

/* ── INFRA PAGE ── */
.infra-hero-img { width: 100%; height: 500px; object-fit: cover; object-position: center; filter: brightness(0.45) contrast(1.1); }
.capability-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--rule); margin-top: 56px; }
.capability { background: var(--white); padding: 44px 38px; transition: background var(--tr); }
.capability:hover { background: var(--off-white); }
.capability-icon { width: 48px; height: 48px; border: 1.5px solid var(--rule); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.capability-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.capability-title { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--black); margin-bottom: 12px; }
.capability-body { font-size: 13.5px; line-height: 1.82; color: var(--text-mid); font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--black); padding: 52px 80px; display: flex; flex-direction: column; align-items: center; gap: 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { height: 32px; width: auto; object-fit: contain; opacity: 0.9; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.40); transition: all var(--tr); }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,152,42,0.08); }
.footer-socials a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-copy { font-size: 10.5px; color: rgba(255,255,255,0.18); font-weight: 300; letter-spacing: 0.06em; }

/* ── WA FLOAT ── */
#wa-float { position: fixed; bottom: 30px; left: 30px; z-index: 998; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.38); transition: transform var(--tr), box-shadow var(--tr); }
#wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.48); }
#wa-float svg { width: 24px; height: 24px; fill: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.au { animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.d1{animation-delay:0.08s;} .d2{animation-delay:0.18s;} .d3{animation-delay:0.28s;} .d4{animation-delay:0.40s;}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  :root{--pad:0 40px;}
  .nav{padding:0 40px;}
  section{padding:80px 40px;}
  .stats-bar{padding:0 40px;}
  .hero-content{padding:0 40px 72px;}
  .hero-scroll{right:40px;}
  .pillars{grid-template-columns:1fr;}
  .two-col{grid-template-columns:1fr;gap:48px;}
  .two-col.rev{direction:ltr;}
  .why-grid{grid-template-columns:1fr 1fr;}
  .services-list .service-item{grid-template-columns:1fr;gap:12px;}
  .service-item-tags{align-items:flex-start;}
  .infra-grid{grid-template-columns:1fr;}
  .insights-grid{grid-template-columns:1fr 1fr;}
  .cta-banner{padding:80px 40px;grid-template-columns:1fr;}
  .consult-section{padding:80px 40px;}
  .consult-inner{grid-template-columns:1fr;gap:52px;}
  .leadership-grid{grid-template-columns:1fr;}
  .capability-grid{grid-template-columns:1fr;}
  .about-hero{padding:128px 40px 72px;}
  footer{padding:40px;}
  .stats-bar{grid-template-columns:repeat(2,1fr);}
  .stat:nth-child(2){border-right:none;}
  .article-wrap{padding:72px 40px 80px;}
}
@media(max-width:768px){
  :root{--pad:0 20px;}
  .nav{padding:0 20px;}
  .nav-links,.nav-cta{display:none;}
  .nav-mobile{display:flex;}
  section{padding:64px 20px;}
  .stats-bar{padding:0 20px;grid-template-columns:1fr 1fr;}
  .hero-content{padding:0 20px 56px;}
  .hero-scroll{display:none;}
  .hero-btns{flex-direction:column;align-items:flex-start;}
  .why-grid{grid-template-columns:1fr;}
  .insights-grid{grid-template-columns:1fr;}
  .cta-banner{padding:60px 20px;}
  .consult-section{padding:64px 20px;}
  .form-box{padding:32px 22px;}
  .about-hero{padding:112px 20px 60px;}
  footer{padding:32px 20px;}
  .article-wrap{padding:60px 20px 72px;}
  .leadership-grid{grid-template-columns:1fr;}
}

.home-grid-stretch{margin:0 80px;}
@media(max-width:1100px){.home-grid-stretch{margin:0 40px;}}
@media(max-width:768px){.home-grid-stretch{margin:0 20px;}}
.services-list .service-item,.leadership-grid,.capability-grid{
  /* already using margin via parent section */
}
