/* ============================================================
   Nemaly Solution Pvt. Ltd. — Website Stylesheet (compact)
   Palette: Peacock Blue + White (+ Navy & Gold accents)

   Tighter version: smaller fonts, less section padding, less
   scrolling on desktop, and added 480/768 mobile breakpoints.
   ============================================================ */

:root {
  /* Brand colours (unchanged) */
  --peacock: #0b7d92;
  --peacock-dark: #095e6e;
  --peacock-deep: #06414c;
  --navy: #14264d;
  --navy-light: #20407e;
  --gold: #f2b41b;
  --gold-dark: #d2990a;
  --white: #ffffff;
  --bg-light: #f2f8f9;
  --bg-soft: #e6f2f4;
  --ink: #233040;
  --muted: #5d6b78;
  --border: #dbe6e8;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(20, 38, 77, 0.06);
  --shadow-md: 0 8px 22px rgba(20, 38, 77, 0.09);
  --shadow-lg: 0 16px 38px rgba(20, 38, 77, 0.14);

  /* Geometry — tighter radius and width */
  --radius: 12px;
  --maxw: 1140px;
  --transition: 0.22s ease;

  /* Single source of truth for vertical rhythm */
  --section-y: 48px;
  /* was 78px — reduces total page height */
}

/* ----------------------------- Reset ----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

/* base 15px → 1rem = 15px */

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--peacock);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--peacock-dark);
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.22;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--section-y) 0;
}

/* --------------------------- Utilities --------------------------- */
.text-center {
  text-align: center;
}

.accent {
  color: var(--peacock);
}

.gold-text {
  color: var(--gold-dark);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--peacock);
  background: var(--bg-soft);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  /* was 1.7→2.5rem */
  margin-bottom: 10px;
}

.section-intro {
  max-width: 660px;
  margin: 0 auto 32px;
  /* was 50px bottom */
  color: var(--muted);
  font-size: 0.94rem;
  /* was 1.05rem */
}

.section-intro.left {
  margin-left: 0;
}

/* ---------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  /* was 13/28 */
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-peacock {
  background: var(--peacock);
  color: var(--white);
  border-color: var(--peacock);
}

.btn-peacock:hover {
  background: var(--peacock-dark);
  border-color: var(--peacock-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--peacock-dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--peacock);
  border-color: var(--peacock);
}

.btn-outline-dark:hover {
  background: var(--peacock);
  color: var(--white);
}

/* ----------------------------- Header ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  /* was 76px */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 42px;
  width: auto;
}

/* was 52px */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.98rem;
  /* was 1.12rem */
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.62rem;
  color: var(--peacock);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  /* was 0.96rem */
  padding: 7px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-links a:hover {
  background: var(--bg-light);
  color: var(--peacock);
}

.nav-links a.active {
  color: var(--peacock);
  background: var(--bg-soft);
}

.nav-links .nav-cta {
  background: var(--peacock);
  color: var(--white);
  margin-left: 6px;
}

.nav-links .nav-cta:hover {
  background: var(--peacock-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------- Hero ------------------------------ */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 65, 76, 0.95) 0%, rgba(11, 125, 146, 0.92) 55%, rgba(20, 38, 77, 0.96) 100%);
  color: var(--white);
  padding: 60px 0;
  /* was 96px */
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 18%, rgba(242, 180, 27, 0.18), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.10), transparent 38%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  /* was 50px */
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  /* was 0.8rem */
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.6vw, 2.45rem);
  /* was 2→3.3rem */
  margin-bottom: 12px;
}

.hero h1 .hl {
  color: var(--gold);
}

.hero-tagline {
  font-size: 1rem;
  /* was 1.15rem */
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero p.lead {
  font-size: 0.94rem;
  /* was 1.06rem */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  max-width: 520px;
  line-height: 1.55;
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 22px;
  /* was 32px */
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.hero-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-card .sub {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  line-height: 1.45;
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-card li .tick {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--peacock);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-top: 2px;
}

/* --------------------------- Page banner ------------------------- */
.page-banner {
  background: linear-gradient(135deg, var(--peacock-deep), var(--peacock) 70%, var(--navy-light));
  color: var(--white);
  padding: 44px 0;
  /* was 64px */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(242, 180, 27, 0.15);
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 6px;
  font-size: 0.92rem;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--gold);
}

/* ----------------------------- Cards ----------------------------- */
.grid {
  display: grid;
  gap: 18px;
}

/* was 26px */
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  /* was 30/26 */
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--peacock);
}

.card .icon {
  width: 46px;
  height: 46px;
  /* was 56 */
  border-radius: 11px;
  background: linear-gradient(135deg, var(--peacock), var(--peacock-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card.gold .icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* --------------------------- Stats band -------------------------- */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 38px 0;
  /* tighter than default section */
}

.stats .grid-4 {
  gap: 14px;
}

.stat {
  text-align: center;
  padding: 8px;
}

.stat .num {
  font-size: 1.85rem;
  /* was 2.3rem */
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.stat .label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
}

/* ----------------------- Split / Alternating --------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  /* was 48 */
  align-items: center;
}

.split-media {
  background: linear-gradient(135deg, var(--bg-soft), var(--white));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  /* was 38 */
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.split p {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.bg-light {
  background: var(--bg-light);
}

/* ----------------------------- Lists ----------------------------- */
.check-list {
  list-style: none;
  margin-top: 6px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--bg-soft);
  color: var(--peacock);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 3px;
}

/* --------------------------- Info table -------------------------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 11px 16px;
  /* was 15/20 */
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  background: var(--bg-light);
  color: var(--navy);
  width: 38%;
  font-weight: 700;
}

.info-table td {
  color: var(--ink);
}

/* --------------------------- Directors --------------------------- */
.director-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  /* was 30 */
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.director-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.director-avatar {
  width: 74px;
  height: 74px;
  /* was 92 */
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peacock), var(--navy));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  font-weight: 800;
}

.director-card h3 {
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.director-card .role {
  color: var(--peacock);
  font-weight: 600;
  font-size: 0.84rem;
}

/* ------------------------- Steps / Process ----------------------- */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  /* was 22 */
  border-bottom: 1px dashed var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step .num {
  counter-increment: step;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  /* was 46 */
  border-radius: 50%;
  background: var(--peacock);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.step .num::before {
  content: counter(step);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ----------------------------- CTA ------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  text-align: center;
  padding: 44px 0;
  /* tighter */
}

.cta-band h2 {
  color: var(--navy);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 8px;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 18px;
  font-weight: 500;
  font-size: 0.92rem;
}

/* --------------------------- Contact ----------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  /* was 36 */
}

.contact-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item .ci-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--peacock);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-item a {
  font-weight: 600;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 280px;
  /* was 340 */
  border-radius: var(--radius);
}

/* ----------------------------- Footer ---------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 44px;
  /* was 60 */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 26px;
  padding-bottom: 28px;
}

.footer-brand img {
  height: 46px;
  /* was 56 */
  background: #fff;
  border-radius: 7px;
  padding: 4px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 6px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.84rem;
  margin-bottom: 6px;
  line-height: 1.55;
}

.footer-legal {
  font-size: 0.76rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  padding-bottom: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------- Animations -------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive breakpoints (mobile-first refinements)
   ── 1024  : medium laptop
   ── 940   : large tablet / small laptop  (collapse hero & split)
   ── 820   : tablet                       (mobile nav)
   ── 768   : small tablet / large phone   (NEW)
   ── 620   : phone                        (single columns)
   ── 480   : small phone                  (NEW — tighter rhythm)
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-y: 44px;
  }

  .container {
    padding: 0 18px;
  }
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-card {
    order: -1;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    /* breathing room between items */
    padding: 0 14px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease;
  }

  .nav-links.open {
    max-height: 520px;
    padding-top: 12px;
    padding-bottom: 14px;
  }

  /* Each <li> sits on its own row, never on top of its neighbour */
  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.2;
    border-bottom: 1px solid var(--border);
    /* subtle row separator */
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* Active link gets the soft pill but stays inside its row */
  .nav-links a.active {
    background: var(--bg-soft);
    color: var(--peacock);
    border-bottom-color: transparent;
  }

  /* CTA becomes a full-width filled button on its own row */
  .nav-links .nav-cta {
    margin: 6px 0 2px;
    text-align: center;
    background: var(--peacock);
    color: var(--white);
    border-bottom: none;
  }

  .nav-links .nav-cta:hover {
    background: var(--peacock-dark);
    color: var(--white);
  }
}

/* NEW — small tablet / large phone */
@media (max-width: 768px) {
  :root {
    --section-y: 38px;
  }

  .hero {
    padding: 44px 0;
  }

  .hero p.lead {
    font-size: 0.9rem;
  }

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

  .stats {
    padding: 28px 0;
  }

  .stat .num {
    font-size: 1.6rem;
  }
}

@media (max-width: 620px) {
  :root {
    --section-y: 32px;
  }

  section {
    padding: var(--section-y) 0;
  }

  .hero {
    padding: 38px 0;
  }

  .hero h1 {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .hero p.lead {
    font-size: 0.88rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand img {
    height: 36px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-tag {
    font-size: 0.58rem;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .info-table th {
    width: 44%;
  }

  .info-table th,
  .info-table td {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    font-size: 0.74rem;
  }

  .footer-legal {
    font-size: 0.72rem;
  }

  .page-banner {
    padding: 34px 0;
  }
}

/* NEW — small phone */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 14px;
  }

  .header-inner {
    height: 56px;
  }

  .nav-links {
    top: 56px;
  }

  .brand img {
    height: 32px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero p.lead {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    padding: 4px 10px;
  }

  .hero-card {
    padding: 16px;
  }

  .hero-card h3 {
    font-size: 0.95rem;
  }

  .hero-card li {
    font-size: 0.8rem;
    padding: 6px 0;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-intro {
    font-size: 0.85rem;
    margin-bottom: 22px;
  }

  .card {
    padding: 18px 16px;
  }

  .card h3 {
    font-size: 0.96rem;
  }

  .card p {
    font-size: 0.84rem;
  }

  .card .icon {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .stat .num {
    font-size: 1.45rem;
  }

  .stat .label {
    font-size: 0.76rem;
  }

  .btn {
    padding: 9px 18px;
    font-size: 0.84rem;
  }

  .cta-band h2 {
    font-size: 1.25rem;
  }

  .cta-band p {
    font-size: 0.84rem;
  }

  .director-card {
    padding: 18px;
  }

  .director-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.35rem;
  }

  .step {
    padding: 12px 0;
    gap: 12px;
  }

  .step .num {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .step h3 {
    font-size: 0.94rem;
  }

  .step p {
    font-size: 0.82rem;
  }

  .map-frame {
    min-height: 240px;
  }

  .split-media {
    padding: 18px;
    min-height: 180px;
  }
}