/* =============================================================
   RGA Shah & Garg — Premium Redesign
   Inspired by Compound.com aesthetic
   ============================================================= */

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

:root {
  --navy:       #0A1628;
  --navy-mid:   #0F2040;
  --blue:       #1A56DB;
  --blue-light: #3B82F6;
  --blue-pale:  #EFF6FF;
  --white:      #FFFFFF;
  --off:        #F8FAFC;
  --border:     #E2E8F0;
  --border-mid: #CBD5E1;
  --txt:        #0F172A;
  --txt-2:      #475569;
  --txt-3:      #94A3B8;
  --radius:     14px;
  --radius-lg:  22px;
  --ease:       all .25s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; font-size:16px }
body {
  font-family:'Inter', -apple-system, sans-serif;
  color:var(--txt);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img { max-width:100%; display:block }
a  { text-decoration:none; color:inherit }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width:1120px; margin:0 auto; padding:0 28px }
.container-sm { max-width:760px; margin:0 auto; padding:0 28px }

/* ── Navbar ─────────────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:64px; background:transparent;
  border-bottom:1px solid transparent;
  transition:all .3s ease;
}
.nav.scrolled {
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-color:var(--border);
}
.nav.scrolled .nav-logo { color:var(--navy) }
.nav.scrolled .nav-center a { color:var(--txt-2) }
.nav.scrolled .nav-link { color:var(--txt-2) }
.nav.scrolled .hamburger span { background:var(--navy) }
/* nav on dark hero — white text */
.nav-logo { color:var(--white) }
.nav-center a { color:rgba(255,255,255,.75) }
.nav-center a:hover { color:var(--white); background:rgba(255,255,255,.1) }
.nav-link { color:rgba(255,255,255,.75) }
.nav-link:hover { color:var(--white); background:rgba(255,255,255,.1) }
.hamburger span { background:var(--white) }

.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:64px;
}

.nav-logo {
  font-size:1.1rem; font-weight:800; color:var(--white);
  letter-spacing:-.02em; display:flex; align-items:center; gap:8px;
}
.nav-logo-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--blue); display:inline-block;
}

.nav-center {
  display:flex; align-items:center; gap:2px;
  position:absolute; left:50%; transform:translateX(-50%);
}
.nav-center a {
  padding:7px 16px; border-radius:8px;
  font-size:.88rem; font-weight:500; color:rgba(255,255,255,.75);
  transition:var(--ease);
}
.nav-center a:hover { color:var(--white); background:rgba(255,255,255,.1) }

.nav-right { display:flex; align-items:center; gap:10px }
.nav-link {
  font-size:.88rem; font-weight:500; color:rgba(255,255,255,.75);
  padding:7px 14px; border-radius:8px; transition:var(--ease);
}
.nav-link:hover { color:var(--white); background:rgba(255,255,255,.1) }

.nav-btn {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--navy); color:var(--white);
  padding:8px 20px; border-radius:50px;
  font-size:.88rem; font-weight:600;
  transition:var(--ease); border:none; cursor:pointer;
}
.nav-btn:hover { background:var(--navy-mid); transform:translateY(-1px) }
.nav-btn svg { width:14px; height:14px; transition:var(--ease) }
.nav-btn:hover svg { transform:translateX(3px) }

.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:8px; border:none; background:none;
}
.hamburger span {
  display:block; width:22px; height:2px;
  background:var(--navy); border-radius:2px; transition:var(--ease);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding:100px 0 80px;
  background:var(--navy);
  overflow:hidden;
  position:relative;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 0%, rgba(59,130,246,.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(26,86,219,.15) 0%, transparent 60%);
  pointer-events:none;
}

.hero-inner {
  display:grid;
  grid-template-columns:1fr 420px;
  gap:60px;
  align-items:center;
}

.hero-title {
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(2.6rem, 5vw, 4.4rem);
  font-weight:800; color:var(--white);
  line-height:1.08; letter-spacing:-.02em;
  margin-bottom:22px;
}
.hero-title em {
  font-style:normal;
  background:linear-gradient(135deg,#60A5FA 0%,#93C5FD 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero-sub {
  font-size:1.05rem; color:rgba(255,255,255,.7);
  max-width:480px; line-height:1.75; margin-bottom:36px;
  font-weight:400;
}

.hero-actions { display:flex; gap:12px; flex-wrap:wrap }

.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue); color:var(--white);
  padding:13px 26px; border-radius:50px;
  font-size:.93rem; font-weight:600; border:none; cursor:pointer;
  transition:var(--ease); font-family:inherit;
}
.btn-primary:hover { background:var(--blue-light); transform:translateY(-2px); box-shadow:0 12px 32px rgba(26,86,219,.4) }

.btn-ghost-dark {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:rgba(255,255,255,.8);
  padding:13px 26px; border-radius:50px;
  font-size:.93rem; font-weight:500;
  border:1.5px solid rgba(255,255,255,.25); cursor:pointer;
  transition:var(--ease); font-family:inherit; text-decoration:none;
}
.btn-ghost-dark:hover { color:var(--white); border-color:rgba(255,255,255,.6); background:rgba(255,255,255,.08) }

/* hero stats grid */
.hero-stats-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.hero-stat {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius); padding:28px 24px;
  transition:var(--ease);
}
.hero-stat:hover { background:rgba(255,255,255,.13) }
.hs-num {
  font-size:2.6rem; font-weight:800; color:var(--white);
  line-height:1; margin-bottom:8px; letter-spacing:-.03em;
}
.hs-plus { color:#60A5FA; font-size:2rem }
.hs-label { font-size:.82rem; color:rgba(255,255,255,.55); font-weight:500; letter-spacing:.01em }

/* ── Features Strip ─────────────────────────────────────── */
.features-strip {
  background:var(--off);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:28px 0;
}
.features-row {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:16px;
}
.feat-item {
  display:flex; align-items:center; gap:10px;
  font-size:.88rem; font-weight:600; color:var(--navy);
}
.feat-icon {
  width:36px; height:36px; border-radius:10px;
  background:var(--blue-pale); display:flex; align-items:center; justify-content:center;
  flex-shrink:0; border:1px solid rgba(59,130,246,.2);
}
.feat-icon svg { width:16px; height:16px; stroke:var(--blue); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round }

/* ── About Section ──────────────────────────────────────── */
.about-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.about-card {
  background:var(--navy); border-radius:20px;
  padding:44px; position:relative; overflow:hidden;
}
.about-card::after {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 80% 20%, rgba(59,130,246,.15) 0%, transparent 60%);
  border-radius:20px; pointer-events:none;
}
.about-year {
  position:absolute; bottom:-20px; right:-10px;
  font-size:9rem; font-weight:900; color:rgba(255,255,255,.06);
  line-height:1; pointer-events:none; user-select:none;
  letter-spacing:-.05em;
}
.about-card h3 {
  font-size:1.4rem; font-weight:700; color:var(--white);
  margin-bottom:16px; line-height:1.3; position:relative;
}
.about-card p {
  font-size:.93rem; color:rgba(255,255,255,.65);
  line-height:1.75; position:relative;
}
.about-float-cards {
  display:flex; gap:14px; margin-top:32px; position:relative;
}
.afc {
  background:var(--white); border-radius:12px;
  padding:14px 18px; display:flex; align-items:center; gap:12px;
  flex:1; min-width:0;
}
.afc svg { width:20px; height:20px; stroke:var(--blue); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0 }
.afc-num { font-size:1.3rem; font-weight:800; color:var(--navy); line-height:1 }
.afc-lab { font-size:.73rem; color:var(--txt-2); font-weight:500; margin-top:2px }

.eyebrow-badge {
  display:inline-block; font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--blue);
  background:var(--blue-pale); padding:5px 12px; border-radius:50px;
  margin-bottom:18px; border:1px solid rgba(59,130,246,.2);
}

.about-points { display:flex; flex-direction:column; gap:24px }
.about-point { display:flex; gap:16px; align-items:flex-start }
.abp-icon {
  width:42px; height:42px; border-radius:10px;
  background:var(--blue-pale); border:1px solid rgba(59,130,246,.2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.abp-icon svg { width:18px; height:18px; stroke:var(--blue); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round }
.abp-title { font-size:.95rem; font-weight:700; color:var(--navy); margin-bottom:4px }
.abp-desc { font-size:.85rem; color:var(--txt-2); line-height:1.6 }

/* (btn-primary and btn-ghost-dark defined in hero block above) */


/* ── Marquee ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,black 8%,black 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,black 8%,black 92%,transparent);
}

.marquee-track {
  display:inline-flex; align-items:center; gap:0;
  white-space:nowrap;
  animation:marquee 35s linear infinite;
}
.marquee-track.marquee-reverse {
  animation:marquee-rev 40s linear infinite;
}

.marquee-track span {
  font-size:.95rem; font-weight:600; color:var(--txt-2);
  padding:0 18px; letter-spacing:.01em;
}
.marquee-track .sep {
  color:var(--border-mid); font-size:1rem; padding:0;
}

.clients-marquee { margin-top:48px }
.clients-marquee .marquee-track span { font-size:.95rem; color:var(--txt-2) }

@keyframes marquee {
  0%   { transform:translateX(0) }
  100% { transform:translateX(-50%) }
}
@keyframes marquee-rev {
  0%   { transform:translateX(-50%) }
  100% { transform:translateX(0) }
}

.marquee-wrap:hover .marquee-track { animation-play-state:paused }

/* ── Section utility ─────────────────────────────────────── */
.section { padding:100px 0 }
.section-alt { background:#F0F5FF }


.section-title {
  font-size:clamp(2rem, 4vw, 3rem); font-weight:800;
  color:var(--navy); line-height:1.15; letter-spacing:-.03em;
}
.section-title em {
  font-style:normal; color:var(--blue);
}
.section-desc {
  font-size:1rem; color:var(--txt-2); line-height:1.75;
  max-width:520px; margin-top:14px;
}

/* ── Services ────────────────────────────────────────────── */
.services-header {
  display:grid; grid-template-columns:1fr 1fr;
  gap:40px; align-items:end; margin-bottom:56px;
}

.svc-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--border); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
}
.svc-card {
  background:var(--white); padding:32px 28px;
  transition:var(--ease); cursor:default; position:relative;
}
.svc-card:hover { background:var(--off) }

.svc-icon {
  width:44px; height:44px; border-radius:10px;
  background:var(--blue-pale); display:flex;
  align-items:center; justify-content:center; margin-bottom:20px;
  transition:var(--ease);
}
.svc-icon svg {
  width:21px; height:21px; stroke:var(--blue);
  fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}
.svc-card:hover .svc-icon { background:var(--blue) }
.svc-card:hover .svc-icon svg { stroke:var(--white) }

.svc-card h3 {
  font-size:.97rem; font-weight:700; color:var(--navy);
  margin-bottom:8px; line-height:1.35;
}
.svc-card p {
  font-size:.85rem; color:var(--txt-2); line-height:1.65;
}

/* ── Stats band ──────────────────────────────────────────── */
.stats-band {
  background:var(--navy); padding:72px 0;
  position:relative; overflow:hidden;
}
.stats-band::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 70% at 50% 50%, rgba(59,130,246,.2) 0%, transparent 70%);
  pointer-events:none;
}
.stats-row {
  display:grid; grid-template-columns:repeat(4,1fr);
  divide-x:1px solid rgba(255,255,255,.08);
  position:relative; z-index:1;
}
.stat-item {
  text-align:center; padding:0 24px;
  border-right:1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right:none }
.stat-num {
  font-size:3rem; font-weight:800; color:var(--white);
  line-height:1; margin-bottom:6px; letter-spacing:-.04em;
}
.stat-plus { color:var(--blue-light) }
.stat-label {
  font-size:.82rem; color:rgba(255,255,255,.45);
  font-weight:500; letter-spacing:.04em; text-transform:uppercase;
}

/* ── Process ─────────────────────────────────────────────── */
.process-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  margin-top:60px; position:relative;
}
.process-grid::before {
  content:''; position:absolute; top:26px; left:12%;
  right:12%; height:1px; background:var(--border); z-index:0;
}
.process-step { position:relative; z-index:1; text-align:center; padding:0 16px }

.step-circle {
  width:52px; height:52px; border-radius:50%;
  background:var(--blue-pale); border:1.5px solid rgba(59,130,246,.35);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; font-size:.88rem; font-weight:700;
  color:var(--blue); transition:var(--ease);
}
.process-step:hover .step-circle {
  background:var(--navy); border-color:var(--navy); color:var(--white);
}
.process-step h4 {
  font-size:.92rem; font-weight:700; color:var(--navy); margin-bottom:6px;
}
.process-step p { font-size:.82rem; color:var(--txt-2); line-height:1.6 }

/* ── Why choose us ───────────────────────────────────────── */
.why-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
  align-items:center; margin-top:60px;
}
.why-visual {
  background:var(--off); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
}
.why-vis-top {
  background:var(--navy); padding:24px 28px;
  display:flex; align-items:center; gap:10px;
}
.why-vis-top h4 { font-size:.9rem; font-weight:700; color:var(--white) }
.why-vis-body { padding:24px 28px }
.why-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; border-bottom:1px solid var(--border);
}
.why-row:last-child { border-bottom:none }
.why-row-left { display:flex; align-items:center; gap:10px }
.why-dot {
  width:8px; height:8px; border-radius:50%; flex-shrink:0;
}
.why-row-name { font-size:.84rem; font-weight:600; color:var(--txt) }
.why-row-sub { font-size:.75rem; color:var(--txt-3) }
.why-bar-wrap { flex:1; margin:0 16px; height:4px; background:var(--border); border-radius:2px; overflow:hidden }
.why-bar { height:100%; border-radius:2px; background:var(--blue) }
.why-pct { font-size:.78rem; font-weight:700; color:var(--navy); min-width:36px; text-align:right }

.why-points { display:flex; flex-direction:column; gap:24px }
.why-point { display:flex; gap:16px; align-items:flex-start }
.wp-icon {
  width:40px; height:40px; border-radius:10px;
  background:var(--blue-pale); display:flex; align-items:center;
  justify-content:center; flex-shrink:0;
}
.wp-icon svg {
  width:18px; height:18px; stroke:var(--blue);
  fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}
.wp-title { font-size:.93rem; font-weight:700; color:var(--navy); margin-bottom:4px }
.wp-desc { font-size:.84rem; color:var(--txt-2); line-height:1.65 }

/* ── Clients ─────────────────────────────────────────────── */
.clients-grid {
  display:grid; grid-template-columns:repeat(5,1fr); gap:10px;
  margin-top:48px;
}
.cli {
  border:1.5px solid var(--border); border-radius:10px;
  padding:14px 12px; text-align:center; font-size:.82rem;
  font-weight:600; color:var(--txt-2); transition:var(--ease);
  background:var(--white);
}
.cli:hover {
  color:var(--navy); border-color:var(--navy);
  background:var(--blue-pale); transform:translateY(-2px);
}
.clients-note {
  text-align:center; margin-top:24px;
  font-size:.84rem; color:var(--txt-3);
}

/* ── Team ────────────────────────────────────────────────── */
.team-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-top:48px;
}
.team-card {
  border:1.5px solid var(--border); border-radius:var(--radius-lg);
  overflow:hidden; transition:var(--ease); background:var(--white);
}
.team-card:hover { border-color:var(--border-mid); box-shadow:0 8px 32px rgba(15,22,40,.08); transform:translateY(-4px) }

.tc-top {
  padding:32px 28px; background:var(--navy); position:relative; overflow:hidden;
}
.tc-top::before {
  content:''; position:absolute; top:-40px; right:-40px;
  width:120px; height:120px; border-radius:50%;
  background:rgba(255,255,255,.04);
}
.tc-avatar {
  width:64px; height:64px; border-radius:50%;
  background:rgba(255,255,255,.12); border:2px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; position:relative; z-index:1;
}
.tc-avatar svg {
  width:30px; height:30px; stroke:rgba(255,255,255,.7);
  fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round;
}
.tc-name { font-size:1.1rem; font-weight:700; color:var(--white); margin-bottom:3px; position:relative; z-index:1 }
.tc-role { font-size:.78rem; color:rgba(255,255,255,.5); position:relative; z-index:1 }

.tc-body { padding:22px 28px }
.tc-bio { font-size:.84rem; color:var(--txt-2); line-height:1.7; margin-bottom:18px }
.tc-links { display:flex; flex-direction:column; gap:7px }
.tc-link { display:flex; align-items:center; gap:8px; font-size:.81rem; color:var(--txt-2) }
.tc-link svg { width:14px; height:14px; stroke:var(--txt-3); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0 }
.tc-link a { color:var(--blue); font-weight:500 }
.tc-link a:hover { text-decoration:underline }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-band {
  background:var(--navy); padding:100px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,86,219,.25) 0%, transparent 70%);
}
.cta-band h2 {
  font-size:clamp(2rem, 4vw, 3.2rem); font-weight:800;
  color:var(--white); letter-spacing:-.03em; line-height:1.15;
  margin-bottom:14px; position:relative; z-index:1;
}
.cta-band p {
  font-size:1rem; color:rgba(255,255,255,.55);
  margin-bottom:36px; position:relative; z-index:1;
}
.cta-band-btns { display:flex; justify-content:center; gap:12px; position:relative; z-index:1 }

.btn-white {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); color:var(--navy);
  padding:13px 28px; border-radius:50px;
  font-size:.93rem; font-weight:700; border:none; cursor:pointer;
  transition:var(--ease); font-family:inherit;
}
.btn-white:hover { background:var(--off); transform:translateY(-2px) }

.btn-outline-white {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:rgba(255,255,255,.8);
  padding:13px 28px; border-radius:50px;
  font-size:.93rem; font-weight:600;
  border:1.5px solid rgba(255,255,255,.2); cursor:pointer;
  transition:var(--ease); font-family:inherit;
}
.btn-outline-white:hover { border-color:rgba(255,255,255,.6); color:var(--white) }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
  align-items:start; margin-top:56px;
}
.contact-cards { display:flex; flex-direction:column; gap:14px }
.cc {
  display:flex; gap:14px; align-items:flex-start;
  padding:18px; border:1.5px solid var(--border);
  border-radius:var(--radius); background:var(--white); transition:var(--ease);
}
.cc:hover { border-color:var(--border-mid); box-shadow:0 4px 16px rgba(15,22,40,.06) }
.cc-icon {
  width:40px; height:40px; border-radius:9px; background:var(--blue-pale);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cc-icon svg { width:18px; height:18px; stroke:var(--blue); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round }
.cc h4 { font-size:.82rem; font-weight:700; color:var(--navy); margin-bottom:4px }
.cc p, .cc a { font-size:.85rem; color:var(--txt-2); display:block; line-height:1.6 }
.cc a { color:var(--blue); font-weight:500 }
.cc a:hover { text-decoration:underline }

.form-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-lg); padding:36px;
}
.form-card h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:22px }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px }
.fg { margin-bottom:12px; display:flex; flex-direction:column }
.fg label { font-size:.78rem; font-weight:600; color:var(--txt); margin-bottom:5px }
.fg input, .fg textarea, .fg select {
  padding:11px 14px; border:1.5px solid var(--border);
  border-radius:9px; font-size:.88rem; color:var(--txt);
  background:var(--white); transition:var(--ease);
  font-family:inherit; outline:none; resize:vertical;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color:var(--blue); box-shadow:0 0 0 3px rgba(26,86,219,.1);
}
.fg textarea { min-height:92px }
.form-submit {
  width:100%; background:var(--navy); color:var(--white);
  padding:13px; border:none; border-radius:9px;
  font-size:.93rem; font-weight:700; cursor:pointer;
  transition:var(--ease); font-family:inherit; margin-top:4px;
}
.form-submit:hover { background:var(--blue); transform:translateY(-1px) }
.form-note { font-size:.75rem; color:var(--txt-3); text-align:center; margin-top:10px }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background:var(--navy); padding:64px 0 0;
  color:rgba(255,255,255,.65);
}
.foot-grid {
  display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08);
}
.foot-logo-mark {
  font-size:1.1rem; font-weight:800; color:var(--white);
  letter-spacing:-.02em; display:flex; align-items:center; gap:7px;
  margin-bottom:12px;
}
.foot-logo-dot { width:7px; height:7px; border-radius:50%; background:var(--blue-light) }
.foot-desc {
  font-size:.84rem; line-height:1.75; color:rgba(255,255,255,.45);
  max-width:260px; margin-bottom:24px;
}
.foot-col h5 {
  font-size:.76rem; font-weight:700; color:var(--white);
  letter-spacing:.09em; text-transform:uppercase; margin-bottom:14px;
}
.foot-links { display:flex; flex-direction:column; gap:9px }
.foot-links a { font-size:.84rem; color:rgba(255,255,255,.45); transition:var(--ease) }
.foot-links a:hover { color:rgba(255,255,255,.9); padding-left:4px }
.foot-contact { display:flex; flex-direction:column; gap:9px }
.fci { display:flex; gap:8px; align-items:flex-start; font-size:.82rem }
.fci svg { width:14px; height:14px; stroke:var(--blue-light); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; margin-top:3px }
.fci a { color:rgba(255,255,255,.55); transition:var(--ease) }
.fci a:hover { color:rgba(255,255,255,.9) }
.foot-bottom {
  padding:20px 0; display:flex; align-items:center;
  justify-content:space-between; font-size:.78rem;
  color:rgba(255,255,255,.28);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:48px }
  .hero-stats-grid { grid-template-columns:repeat(4,1fr); gap:12px }
  .hero-stat { padding:20px 16px }
  .hs-num { font-size:2rem }
  .about-grid { grid-template-columns:1fr; gap:48px }
  .stats-row { grid-template-columns:repeat(2,1fr) }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.1); padding:24px }
  .stat-item:nth-child(even) { border-bottom:none }
  .foot-grid { grid-template-columns:1fr 1fr; gap:32px }
  .features-row { gap:12px }
}
@media(max-width:768px) {
  .nav-center { display:none }
  .hamburger { display:flex }
  .nav-right .nav-link { display:none }
  .hero { padding:88px 0 60px }
  .hero-title { font-size:2.4rem }
  .hero-stats-grid { grid-template-columns:1fr 1fr }
  .features-row { flex-wrap:wrap; justify-content:flex-start }
  .feat-item { width:calc(50% - 8px) }
  .about-float-cards { flex-direction:column }
  .services-header { grid-template-columns:1fr }
  .svc-grid { grid-template-columns:1fr 1fr }
  .process-grid { grid-template-columns:1fr 1fr; gap:32px }
  .process-grid::before { display:none }
  .why-grid { grid-template-columns:1fr }
  .team-grid { grid-template-columns:1fr }
  .contact-grid { grid-template-columns:1fr }
  .foot-grid { grid-template-columns:1fr }
  .foot-bottom { flex-direction:column; gap:6px; text-align:center }
  .form-row { grid-template-columns:1fr }

  .nav-mobile-menu {
    display:none; flex-direction:column; gap:4px;
    position:fixed; top:64px; left:0; right:0;
    background:var(--white); border-bottom:1px solid var(--border);
    padding:12px 24px 20px; z-index:99;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
  }
  .nav-mobile-menu.open { display:flex }
  .nav-mobile-menu a {
    padding:10px 14px; border-radius:8px;
    font-size:.9rem; font-weight:500; color:var(--txt-2);
  }
  .nav-mobile-menu a:hover { background:var(--off); color:var(--navy) }
}
@media(max-width:480px) {
  .hero-stats-grid { grid-template-columns:1fr 1fr }
  .svc-grid { grid-template-columns:1fr }
  .process-grid { grid-template-columns:1fr }
  .stats-row { grid-template-columns:1fr }
  .stat-item { border-bottom:1px solid rgba(255,255,255,.1) }
  .stat-item:last-child { border-bottom:none }
  .feat-item { width:100% }
}
