:root {
  --bg: #0b1020;
  --bg-soft: #141d2e;
  --bg-panel: #1c2941;
  --surface: #23324a;
  --surface-strong: #0d1421;
  --surface-light: #364d72;
  --primary: #2ee6c5;
  --primary-dark: #12a7a1;
  --primary-soft: rgba(46, 230, 197, 0.18);
  --secondary: #7a7cff;
  --secondary-soft: rgba(122, 124, 255, 0.18);
  --accent: #ffbf47;
  --accent-soft: rgba(255, 191, 71, 0.18);
  --gold: #ffe082;
  --gold-soft: rgba(255, 224, 130, 0.18);
  --pink: #ff5db1;
  --text: #f6f8ff;
  --muted: #dfe7ff;
  --line: rgba(223, 231, 255, 0.18);
  --white-soft: rgba(255, 255, 255, 0.07);
  --shadow: 0 30px 90px rgba(4, 7, 18, 0.52);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 8% 0%, rgba(46, 230, 197, 0.26), transparent 25%),
    radial-gradient(circle at 80% 12%, rgba(122, 124, 255, 0.28), transparent 20%),
    radial-gradient(circle at 30% 100%, rgba(255, 93, 177, 0.16), transparent 28%),
    radial-gradient(circle at 65% 80%, rgba(255, 191, 71, 0.12), transparent 18%),
    linear-gradient(180deg, #0b1020 0%, #121c30 20%, #0c1321 100%);
  color: var(--text);
  line-height: 1.62;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: rgba(5, 13, 10, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  padding: 10px 0;
}

.topbar-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 20, 16, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: grid;
  background: rgba(8, 20, 16, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, max-height 0.25s ease, padding 0.25s ease;
  z-index: 100;
}

.mobile-menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  max-height: 420px;
  padding: 12px;
}

.mobile-menu-panel a {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.03);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: clamp(120px, 14vw, 240px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(54, 160, 106, 0.18));
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(42, 135, 95, 0.32);
}

.brand-text {
  display: inline-block;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.brand-text small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #7a7cff 0%, #2ee6c5 26%, #ffbf47 100%);
  color: #0d1320;
  box-shadow: 0 20px 46px rgba(122, 124, 255, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(11, 17, 31, 0.98) 0%, rgba(25, 39, 62, 0.96) 38%, rgba(14, 20, 30, 1) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 17, 31, 0.9) 0%, rgba(11, 17, 31, 0.28) 42%, rgba(11, 17, 31, 0.78) 100%),
    radial-gradient(circle at 78% 18%, rgba(122, 124, 255, 0.32), transparent 20%),
    radial-gradient(circle at 20% 20%, rgba(255, 191, 71, 0.14), transparent 24%),
    radial-gradient(circle at 48% 50%, rgba(46, 230, 197, 0.12), transparent 18%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 44px;
  padding: 92px 0 72px;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.capability-layout h2,
.cta-box h2 {
  margin: 0 0 18px;
  font-size: clamp(2.9rem, 5vw, 5.35rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.hero-copy p,
.page-hero p,
.feature-card p,
.service-card p,
.service-detail-card p,
.industry-card p,
.contact-panel p,
.insight-card p,
.value-card p,
.timeline-card p,
.split-layout p,
.footer-brand + p,
.site-footer p,
.site-footer li {
  color: var(--muted);
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.54rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(122, 124, 255, 0.22), rgba(255, 191, 71, 0.2));
  color: #ffe9ae;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.eyebrow.muted {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.hero-meta div {
  display: grid;
  gap: 4px;
}

.hero-meta strong {
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.hero-meta span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel {
  background: linear-gradient(180deg, rgba(20, 42, 34, 0.95), rgba(7, 15, 12, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.large-panel {
  padding: 28px 26px 22px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(82, 157, 116, 0.18);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  padding: 26px 0 18px;
}

.metric-grid strong {
  display: block;
  font-size: clamp(2.4rem, 3vw, 3.3rem);
  letter-spacing: -0.09em;
  margin-bottom: 10px;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 182px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.bars span {
  flex: 1;
  display: block;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #aadfbb 0%, #48a974 42%, #1e6f4e 100%);
}

.floating-panel {
  margin-left: 30px;
  max-width: 280px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(84, 161, 119, 0.12), rgba(255, 255, 255, 0.02));
}

.floating-panel small {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.7rem;
}

.floating-panel strong {
  font-size: 1.32rem;
  letter-spacing: -0.04em;
}

.section {
  padding: 104px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.stats-section {
  padding: 12px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  background: linear-gradient(180deg, rgba(19, 38, 31, 0.95), rgba(8, 14, 12, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 20px 44px rgba(1, 6, 4, 0.2);
}

.stat-card strong {
  display: block;
  font-size: clamp(2.6rem, 3vw, 4.1rem);
  letter-spacing: -0.08em;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.narrow {
  max-width: 780px;
}

.feature-grid,
.service-grid,
.industry-grid,
.insight-grid,
.value-grid,
.timeline-grid,
.service-list,
.insight-list {
  display: grid;
  gap: 24px;
}

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

.feature-card,
.service-card,
.service-detail-card,
.insight-card,
.value-card,
.timeline-card,
.contact-panel,
.contact-form,
.industry-card {
  background: linear-gradient(180deg, rgba(18, 35, 29, 0.9), rgba(10, 16, 14, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 18px 46px rgba(1, 6, 4, 0.18);
  min-width: 0;
}

.insight-card,
.insight-card h3,
.insight-card p,
.insight-card a {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.feature-index {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(122, 124, 255, 0.2), rgba(46, 230, 197, 0.2));
  color: #fff4c9;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-card h3,
.service-card h3,
.service-detail-card h3,
.insight-card h3,
.value-card h3,
.contact-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -0.05em;
}

.insight-card p {
  font-size: clamp(0.9rem, 1.65vw, 1.04rem);
  line-height: 1.7;
}

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

.service-highlight {
  background: linear-gradient(135deg, rgba(62, 118, 87, 0.18), rgba(17, 31, 26, 0.95));
}

.card-tag {
  display: inline-flex;
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary-soft), var(--accent-soft));
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card a,
.insight-card a,
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--secondary);
  font-weight: 700;
}

.capability-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-weight: 600;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.insight-grid,
.value-grid,
.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-grid .insight-card {
  min-width: 0;
  width: 100%;
}

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

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

.industry-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.23rem;
  letter-spacing: -0.04em;
}

.quote-section {
  padding-top: 0;
}

.quote-box {
  background: linear-gradient(135deg, rgba(21, 31, 52, 0.98), rgba(44, 54, 92, 0.96), rgba(21, 34, 48, 0.96));
  border: 1px solid rgba(122, 124, 255, 0.28);
  border-radius: 36px;
  padding: 52px 42px;
  box-shadow: var(--shadow);
}

.quote-box p {
  margin: 0 auto 24px;
  max-width: 900px;
  font-size: clamp(1.5rem, 2.2vw, 2.7rem);
  text-align: center;
  line-height: 1.38;
  letter-spacing: -0.05em;
}

.quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.cta-box {
  background: linear-gradient(180deg, rgba(17, 31, 26, 0.96), rgba(7, 12, 10, 0.96));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-hero {
  padding: 90px 0 30px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.service-list,
.insight-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.insight-list.large-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-list .insight-card {
  min-width: 0;
  width: 100%;
}

.service-detail-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-detail-card li + li {
  margin-top: 8px;
}

.large-insight {
  grid-column: span 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-panel ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.site-footer {
  background: #08120f;
  padding: 56px 0 20px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  align-items: center;
}

.made-in-india {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 600;
  font-size: 0.86rem;
}

.made-in-india svg {
  width: 20px;
  height: 15px;
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

@media (max-width: 1180px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .insight-grid,
  .insight-list.large-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-box p {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: relative;
  }

  .hero-grid,
  .capability-layout,
  .split-layout,
  .contact-layout,
  .footer-grid,
  .service-list,
  .insight-list,
  .timeline-grid,
  .large-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid,
  .industry-grid,
  .value-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header-row,
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .capability-layout h2,
  .cta-box h2 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    line-height: 1.04;
  }

  .feature-grid,
  .service-grid,
  .industry-grid,
  .value-grid,
  .stats-grid,
  .field-row,
  .service-list,
  .insight-grid,
  .insight-list,
  .insight-list.large-grid {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .hero-meta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .topbar {
    display: none;
  }

  .topbar-links {
    justify-content: center;
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .nav-wrap {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo {
    width: 112px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    padding-top: 58px;
    gap: 28px;
  }

  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .capability-layout h2,
  .cta-box h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-copy p,
  .page-hero p,
  .feature-card p,
  .service-card p,
  .service-detail-card p,
  .industry-card p,
  .contact-panel p,
  .insight-card p,
  .value-card p,
  .timeline-card p,
  .split-layout p,
  .footer-brand + p,
  .site-footer p,
  .site-footer li {
    font-size: clamp(0.9rem, 3.8vw, 1rem);
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 0.7rem;
  }

  .cta-row,
  .hero-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 1.1rem;
  }

  .hero-meta {
    margin-top: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .feature-grid,
  .service-grid,
  .industry-grid,
  .value-grid,
  .stats-grid,
  .field-row,
  .service-list,
  .insight-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card,
  .service-detail-card,
  .insight-card,
  .value-card,
  .timeline-card,
  .contact-panel,
  .contact-form,
  .industry-card,
  .stat-card,
  .large-panel,
  .floating-panel,
  .quote-box,
  .cta-box {
    border-radius: 20px;
  }

  .quote-box {
    padding: 30px 16px;
  }

  .quote-box p {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .floating-panel {
    margin-left: 0;
    max-width: 100%;
    padding: 16px 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 18px, 1240px);
  }

  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .capability-layout h2,
  .cta-box h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .feature-card h3,
  .service-card h3,
  .service-detail-card h3,
  .insight-card h3,
  .value-card h3,
  .contact-panel h3 {
    font-size: 1.4rem;
  }

  .stat-card strong {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .metric-grid strong {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .bars {
    height: 110px;
    gap: 8px;
  }
}
