/* ==========================================================================
   Ganjalwa Global Investment Ltd — Design System
   ========================================================================== */

:root {
  /* Brand colors (from logo) */
  --navy-950: #060f24;
  --navy-900: #0b1d3a;
  --navy-800: #0e2a52;
  --navy-700: #123b7a;
  --blue-600: #1e56b5;
  --blue-500: #2e6fd9;
  --blue-400: #5b8fe6;
  --red-600: #c41230;
  --red-500: #e0233f;
  --red-400: #ff5a5f;
  --gold-500: #d4a94e;

  --ink: #101828;
  --ink-soft: #475467;
  --ink-faint: #8a94a6;
  --paper: #ffffff;
  --paper-soft: #f6f8fc;
  --paper-tint: #eef2fa;
  --border: #e3e8f2;

  --shadow-sm: 0 1px 2px rgba(9, 20, 47, 0.06), 0 1px 3px rgba(9, 20, 47, 0.08);
  --shadow-md: 0 8px 24px rgba(9, 20, 47, 0.10);
  --shadow-lg: 0 20px 48px rgba(9, 20, 47, 0.16);
  --shadow-glow: 0 0 0 1px rgba(46, 111, 217, 0.12), 0 12px 32px rgba(18, 59, 122, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1180px;
  --header-h: 82px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.15; color: var(--navy-900); font-weight: 600; }
::selection { background: var(--blue-400); color: #fff; }

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

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-600);
  background: rgba(196, 18, 48, 0.08);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { max-width: 680px; margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 14px; letter-spacing: -0.01em; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-400), var(--red-600));
  color: #fff;
  box-shadow: 0 10px 24px rgba(196, 18, 48, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(196, 18, 48, 0.36); }

.btn-navy {
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 29, 58, 0.3);
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11, 29, 58, 0.4); }

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy-800); background: var(--paper-soft); }

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }

.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.btn-primary:hover svg, .btn-navy:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(9, 20, 47, 0.06);
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
  letter-spacing: 0.01em;
}
.brand-text .rc {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--red-600);
  letter-spacing: 0.03em;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--navy-900); background: var(--paper-tint); }
.main-nav a.active { color: var(--navy-900); font-weight: 600; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--red-500);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
}
.header-actions .phone-link svg { width: 18px; height: 18px; color: var(--red-500); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1200;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 88px;
  overflow: hidden;
  background: radial-gradient(1100px 620px at 82% -10%, rgba(46, 111, 217, 0.18), transparent 60%), var(--navy-950);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 35, 63, 0.28), transparent 65%);
  top: -220px; right: -160px;
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { background: rgba(255,255,255,0.08); color: #ffc9d1; }
.hero-copy .eyebrow::before { background: var(--red-400); }
.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-copy h1 span { color: var(--red-400); }
.hero-copy p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stats .stat b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #fff;
}
.hero-stats .stat span { font-size: 0.84rem; color: rgba(255,255,255,0.6); }

/* Hero visual: stacked cards */
.hero-visual { position: relative; height: 460px; }
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: #fff;
  padding: 22px;
}
.hero-card.card-main {
  width: 320px;
  inset: 40px 20px auto auto;
  z-index: 3;
}
.hero-card.card-main .row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hero-card.card-main .badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins'; font-weight: 700; font-size: 0.85rem;
}
.hero-card.card-main .growth { color: #7cf5b0; font-weight: 700; font-size: 0.85rem; }
.hero-card.card-main .amount { font-family: 'Poppins'; font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.hero-card.card-main .label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.hero-card .bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.hero-card .bars span { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--red-400), var(--red-600)); }

.hero-card.card-mini {
  width: 200px;
  left: 0; bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card.card-mini .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(224, 35, 63, 0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card.card-mini .icon svg { width: 22px; height: 22px; color: var(--red-400); }
.hero-card.card-mini b { display: block; font-size: 0.95rem; }
.hero-card.card-mini span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.hero-orb {
  position: absolute;
  width: 300px; height: 300px;
  right: -30px; bottom: -20px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--blue-500), var(--navy-700), var(--red-500), var(--blue-500));
  opacity: 0.35;
  filter: blur(50px);
}

/* Trust bar */
.trust-bar {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-bar .item { display: flex; align-items: center; gap: 9px; }
.trust-bar svg { width: 18px; height: 18px; color: var(--red-500); flex-shrink: 0; }

/* ==========================================================================
   Cards / Services
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.service-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--red-500), var(--blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(18, 59, 122, 0.28);
}
.service-card .icon-wrap svg { width: 26px; height: 26px; color: #fff; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .learn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--red-600);
}
.service-card .learn svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.service-card:hover .learn svg { transform: translateX(4px); }

/* Why choose us */
.feature-row { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 30px; }
.feature-row .icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 13px;
  background: rgba(196, 18, 48, 0.08);
  display: flex; align-items: center; justify-content: center;
}
.feature-row .icon-wrap svg { width: 24px; height: 24px; color: var(--red-600); }
.feature-row h4 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-row p { color: var(--ink-soft); font-size: 0.94rem; }

.why-panel {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-panel::after {
  content: "";
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,111,217,0.35), transparent 70%);
  right: -100px; bottom: -120px;
}
.why-panel h3 { color: #fff; font-size: 1.5rem; margin-bottom: 14px; position: relative; }
.why-panel p { color: rgba(255,255,255,0.68); margin-bottom: 28px; position: relative; }
.why-list { display: flex; flex-direction: column; gap: 16px; position: relative; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.why-list li svg { width: 20px; height: 20px; color: var(--red-400); flex-shrink: 0; }

/* Process / steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num {
  font-family: 'Poppins'; font-weight: 700; font-size: 2.4rem;
  background: linear-gradient(135deg, var(--blue-500), var(--red-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px; display: block;
}
.step h4 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-950) 60%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 260px at 90% 10%, rgba(224,35,63,0.28), transparent 70%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; position: relative; max-width: 480px; }
.cta-band p { color: rgba(255,255,255,0.68); position: relative; }
.cta-band .cta-actions { display: flex; gap: 14px; position: relative; flex-wrap: wrap; }

/* ==========================================================================
   About page
   ========================================================================== */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 64px;
  background: radial-gradient(900px 500px at 15% 0%, rgba(46,111,217,0.2), transparent 60%), var(--navy-950);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 20% 20%, black, transparent 70%);
}
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  margin-bottom: 18px; position: relative;
}
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); max-width: 640px; position: relative; letter-spacing: -0.01em; }
.page-hero p.lead { color: rgba(255,255,255,0.7); max-width: 600px; margin-top: 16px; font-size: 1.08rem; position: relative; }

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.story-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-visual .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}
.story-visual .ring.r1 { width: 340px; height: 340px; }
.story-visual .ring.r2 { width: 240px; height: 240px; }
.story-visual .mark { width: 120px; height: 120px; position: relative; filter: drop-shadow(0 16px 30px rgba(0,0,0,0.35)); }
.story-visual .rc-chip {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  white-space: nowrap;
}
.story-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.story-copy p { color: var(--ink-soft); margin-bottom: 16px; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.mv-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.mv-card.mission { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #fff; border: none; }
.mv-card.vision { background: var(--paper-soft); }
.mv-card .icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.mv-card.mission .icon-wrap { background: rgba(224,35,63,0.18); }
.mv-card.mission .icon-wrap svg { color: var(--red-400); }
.mv-card.vision .icon-wrap { background: rgba(18,59,122,0.1); }
.mv-card.vision .icon-wrap svg { color: var(--navy-700); }
.mv-card .icon-wrap svg { width: 24px; height: 24px; }
.mv-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.mv-card.mission h3 { color: #fff; }
.mv-card p { color: var(--ink-soft); font-size: 0.98rem; }
.mv-card.mission p { color: rgba(255,255,255,0.72); }

.value-card {
  text-align: center;
  padding: 30px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .icon-wrap {
  width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  display: flex; align-items: center; justify-content: center;
}
.value-card .icon-wrap svg { width: 24px; height: 24px; color: #fff; }
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 0.88rem; }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}
.stats-strip .stat-item {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-strip .stat-item:last-child { border-right: none; }
.stats-strip .stat-item b {
  display: block; font-family: 'Poppins'; font-size: 1.9rem; font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--blue-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
}
.stats-strip .stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-info-card {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: "";
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,111,217,0.3), transparent 70%);
  top: -140px; right: -120px;
}
.contact-info-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; position: relative; }
.contact-info-card > p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 0.95rem; position: relative; }

.contact-method {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.contact-method:first-of-type { border-top: none; }
.contact-method .icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: rgba(224,35,63,0.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-method .icon-wrap svg { width: 21px; height: 21px; color: var(--red-400); }
.contact-method .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-method a, .contact-method span.value { font-weight: 600; font-size: 1rem; color: #fff; word-break: break-word; }
.contact-method a:hover { color: var(--red-400); }

.social-row { display: flex; gap: 10px; margin-top: 32px; position: relative; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.social-row a:hover { background: var(--red-500); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; color: #fff; }

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--ink-soft); margin-bottom: 28px; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy-900); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--paper-soft);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46,111,217,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { display: none; color: var(--red-600); font-size: 0.8rem; margin-top: 6px; }
.field.invalid input, .field.invalid textarea { border-color: var(--red-500); }
.field.invalid .error-msg { display: block; }

.form-note { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-faint); margin-top: 16px; }
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(46, 179, 111, 0.1);
  border: 1px solid rgba(46, 179, 111, 0.3);
  color: #1c7a4c;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 340px;
  position: relative;
  background: var(--paper-soft);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; color: var(--navy-900); font-size: 1rem;
}
.faq-q svg { width: 20px; height: 20px; color: var(--red-500); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; color: var(--ink-soft); font-size: 0.94rem;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); max-width: 280px; margin-bottom: 20px; }
.footer-col h5 {
  color: #fff; font-family: 'Poppins'; font-size: 0.92rem;
  margin-bottom: 18px; letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.footer-col .contact-line svg { width: 17px; height: 17px; color: var(--red-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}
.footer-bottom .social-row a { width: 36px; height: 36px; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* Back to top */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; max-width: 460px; margin-inline: auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { min-height: 320px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 860px) {
  .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    display: flex;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--paper-tint); border-radius: 0; }
  .main-nav a.active::after { display: none; }
  .main-nav .nav-cta { margin-top: 10px; }
}

@media (max-width: 720px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card.card-main { width: 100%; position: static; margin-bottom: 16px; }
  .hero-card.card-mini { width: 100%; position: static; }
  .hero-visual { height: auto; display: flex; flex-direction: column; }
  .hero-orb { display: none; }
}
