/* ============================================================
   TAHV Group — Main Stylesheet
   Colors: Standard Chartered Bank palette
   Style: Tata Group corporate layout language
   ============================================================ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Standard Chartered palette */
  --blue:        #0072AA;
  --blue-dark:   #005580;
  --blue-deep:   #003d5e;
  --blue-light:  #78ADD2;
  --blue-tint:   #e8f3fa;
  --green:       #21AA47;
  --green-dark:  #19923d;
  --green-light: #A4D0A0;
  --green-tint:  #eaf7ee;

  /* Neutrals */
  --navy:   #0a1628;
  --slate:  #3d4f63;
  --mid:    #6b8399;
  --light:  #a8bccc;
  --mist:   #f0f5f9;
  --border: #dce8f0;
  --white:  #ffffff;

  /* Typography */
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Spacing */
  --container: 1280px;
  --section-v: 6rem;
  --gap:       1.5rem;
  --radius:    4px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,50,90,0.06);
  --shadow-md: 0 8px 32px rgba(0,50,90,0.10);
  --shadow-lg: 0 20px 60px rgba(0,50,90,0.14);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* ─── SKIP LINK ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--blue); color: #fff;
  padding: 0.5rem 1rem; border-radius: var(--radius);
  font-size: 0.8rem; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─── HEADER ─────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: 72px;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(20px);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 60px; height: 60px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.2s;
}
.logo-icon i { color: #fff; font-size: 1rem; }
.logo-dot {
  position: absolute; bottom: -4px; right: -4px;
  width: 11px; height: 11px;
  background: var(--green);
}

/* SVG Logo */
.logo-img {
  width: 150px;
  height: 150px;
  max-width: 150px;
  max-height: 150px;
  flex-shrink: 0;
  transition: transform 0.2s;
  object-fit: contain;
  display: block;
}
.logo-img svg {
  width: 100%;
  height: 100%;
  display: block;
}
.site-logo:hover .logo-img {
  transform: scale(1.05);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color 0.3s;
}
#site-header.scrolled .logo-name { color: var(--navy); }
.logo-sub {
  font-size: 0.47rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
#site-header.scrolled .logo-sub { color: var(--light); }

/* Desktop Nav */
.desktop-nav { flex: 1; display: flex; justify-content: center; }
.desktop-nav > ul { display: flex; align-items: center; gap: 0; }
.desktop-nav > ul > li { position: relative; }
.desktop-nav > ul > li > a {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
#site-header.scrolled .desktop-nav > ul > li > a { color: var(--slate); }
.desktop-nav > ul > li > a:hover,
.desktop-nav > ul > li > a.active {
  color: var(--blue);
  background: var(--blue-tint);
}
#site-header:not(.scrolled) .desktop-nav > ul > li > a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.desktop-nav > ul > li > a .fa-chevron-down { font-size: 0.5rem; opacity: 0.6; transition: transform 0.2s; }
.desktop-nav > ul > li:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  font-size: 0.8rem; font-weight: 400; color: var(--slate);
  padding: 0.65rem 1.1rem;
  transition: color 0.15s, background 0.15s;
  border-radius: 0;
}
.dropdown li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown li:last-child a  { border-radius: 0 0 var(--radius) var(--radius); }
.dropdown li a:hover { background: var(--mist); color: var(--blue); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.77rem; font-weight: 600; letter-spacing: 0.03em;
  background: var(--blue); color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.btn-nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s var(--ease);
}
#site-header.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 499;
  flex-direction: column;
  padding: 1rem 0;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav li a {
  display: block;
  font-size: 0.9rem; font-weight: 500; color: var(--slate);
  padding: 0.85rem 2rem;
  border-bottom: 1px solid var(--mist);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav li a:hover { color: var(--blue); background: var(--mist); }
.mobile-nav .mob-cta a {
  color: var(--blue); font-weight: 600;
  background: var(--blue-tint);
  border-bottom: none;
}

/* ─── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding: 10rem 2.5rem 5rem;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3) saturate(0.5);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,20,50,0.85) 0%, rgba(0,50,90,0.4) 100%);
}
.page-hero-overlay::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--green), var(--blue));
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb i { font-size: 0.45rem; }
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero-title em { font-style: italic; color: var(--blue-light); }
.page-hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.85; font-weight: 300;
  max-width: 540px;
}

/* ─── CONTAINERS ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section { padding: var(--section-v) 0; }
.section-sm { padding: 4rem 0; }
.section-mist  { background: var(--mist); }
.section-navy  { background: var(--navy); }
.section-blue  { background: var(--blue-deep); }
.section-green { background: var(--green-dark); }

/* ─── SECTION LABELS ─────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: var(--blue);
}
.section-tag.light { color: var(--blue-light); }
.section-tag.light::before { background: var(--blue-light); }
.section-tag.green { color: var(--green); }
.section-tag.green::before { background: var(--green); }

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--blue); }
.section-title.on-dark { color: #fff; }
.section-title.on-dark em { color: var(--blue-light); }

.section-body {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.9; color: var(--slate);
  max-width: 520px;
}
.section-body.on-dark { color: rgba(255,255,255,0.55); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-blue   { background: var(--blue);  color: #fff; }
.btn-blue:hover   { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(0,114,170,0.3); }
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover  { background: var(--green-dark); box-shadow: 0 4px 16px rgba(33,170,71,0.3); }
.btn-white  { background: #fff; color: var(--blue); }
.btn-white:hover  { background: var(--mist); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-sm { font-size: 0.75rem; padding: 0.65rem 1.4rem; }
.btn-lg { font-size: 0.88rem; padding: 1rem 2.2rem; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue-light);
}
.card-img { width: 100%; overflow: hidden; }
.card-img img {
  width: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.3s;
  filter: saturate(0.85) brightness(0.88);
}
.card:hover .card-img img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.9);
}
.card-body { padding: 1.5rem; }

/* ─── STATS GRID ─────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-box {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}
.stat-box:hover { background: var(--mist); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  color: var(--blue);
}
.stat-num sup { font-size: 1.2rem; color: var(--green); }
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.4rem;
}

/* ─── GRID LAYOUTS ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); }

/* ─── FORM ELEMENTS ──────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-label {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--mid);
}
.form-control {
  background: var(--mist);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 0.88rem; color: var(--navy);
  outline: none; width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.form-control:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,114,170,0.08);
}
.form-control::placeholder { color: var(--light); }
select.form-control option { background: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  text-align: center; padding: 2.5rem 1.5rem;
}
.form-success-icon {
  width: 60px; height: 60px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.5rem;
  margin: 0 auto 1.2rem;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 300;
  color: var(--navy); margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.88rem; color: var(--mid); line-height: 1.8; }

/* ─── FILTER BAR ─────────────────────────────────────────── */
.filter-bar {
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--slate);
  background: var(--mist);
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { background: var(--blue-tint); color: var(--blue); }
.filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ─── BADGES ─────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.badge-blue  { background: rgba(0,114,170,0.1);  color: var(--blue); }
.badge-green { background: rgba(33,170,71,0.1);  color: var(--green-dark); }
.badge-mist  { background: var(--mist);           color: var(--mid); }
.badge-navy  { background: var(--navy);            color: #fff; }

/* ─── DIVIDER ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }
.divider-dark { height: 1px; background: rgba(255,255,255,0.06); }

/* ─── LINK ARROW ──────────────────────────────────────────── */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.8rem; }
.link-arrow.on-dark { color: var(--blue-light); }

/* ─── PARTNER LOGO GRID ───────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.partner-cell {
  background: var(--white);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem;
  transition: background 0.2s;
  cursor: default;
}
.partner-cell img{
  max-width: 120px; max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.3s;
}


/* ─── TESTIMONIAL ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-stars { color: #f59e0b; font-size: 0.7rem; margin-bottom: 1rem; }
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: 1rem; line-height: 1.75;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-info {}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 0.72rem; color: var(--mid); }

/* ─── ALERT / MESSAGES ────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1rem;
}
.alert-success { background: var(--green-tint); color: #12632a; border: 1px solid var(--green-light); }
.alert-error   { background: #fff0f0; color: #b91c1c; border: 1px solid #fca5a5; }
.alert i { flex-shrink: 0; }

/* ─── INTRO BAND ──────────────────────────────────────────── */
.intro-band {
  background: var(--blue);
  padding: 1.8rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.intro-band-text {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: 1.1rem; color: rgba(255,255,255,0.88);
  line-height: 1.7; max-width: 680px;
}
.intro-band-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.intro-band-link:hover { color: #fff; }

/* ─── FOOTER ──────────────────────────────────────────────── */
#site-footer {
  background: var(--navy);
}

.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 2.5rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.fb-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.fb-logo-sub {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.fb-logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.2rem;
  display: block;
  transition: transform 0.3s var(--ease);
}

.fb-logo-img:hover {
  transform: scale(1.05);
}

.fb-body {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.85;
  max-width: 260px;
  margin-bottom: 1.8rem;
  margin-top: 0;
}

.fb-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fb-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.fb-contact:hover {
  color: var(--blue-light);
}

.fb-contact i {
  font-size: 0.65rem;
  color: var(--blue);
  width: 13px;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.fc-head {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.4rem;
}

.fc-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fc-links li a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.fc-links li a:hover {
  color: rgba(255,255,255,0.8);
}

.fc-badge {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--blue);
  color: #fff;
  padding: 1px 5px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 4px;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

.footer-offices {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.15);
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.72rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: rgba(0,114,170,0.15);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .header-inner { padding: 0 1.5rem; }
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .footer-bottom { padding: 1.4rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .intro-band { flex-direction: column; padding: 1.5rem; }
}
@media (max-width: 768px) {
  :root { --section-v: 4rem; }
  .container { padding: 0 1.5rem; }
  .header-inner { padding: 0 1.2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .footer-main { grid-template-columns: 1fr; }
}
