:root {
  --navy: #081a3a;
  --navy-2: #0d2449;
  --navy-soft: #142d55;
  --teal: #72b8b0;
  --teal-2: #8fcfc8;
  --teal-dark: #4e9d96;
  --mint-soft: #e9f7f5;
  --paper: #ffffff;
  --bg: #f6f9f9;
  --text: #12233f;
  --muted: #6b7890;
  --border: rgba(8, 26, 58, 0.1);
  --shadow: 0 22px 58px rgba(8, 26, 58, 0.11);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1230px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(114, 184, 176, 0.22), transparent 26rem),
    radial-gradient(circle at 84% 12%, rgba(8, 26, 58, 0.1), transparent 24rem),
    var(--bg);
  line-height: 1.58;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

strong,
b {
  font-weight: 600;
}

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

.section-pad {
  padding: 84px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(8, 26, 58, 0.08);
}

.nav-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 136px;
}

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

.site-nav a {
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 560;
  letter-spacing: 0;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
  background: var(--mint-soft);
  color: var(--teal-dark);
}

.site-nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding-inline: 18px;
  box-shadow: 0 12px 26px rgba(8, 26, 58, 0.18);
}

.site-nav .nav-cta:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 99px;
}

.hero {
  min-height: 606px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 66px;
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 26, 58, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(8, 26, 58, 0.06);
  padding: 6px 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.82rem;
  line-height: 1;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-weight: 650;
  font-size: clamp(2.65rem, 4.25vw, 4.05rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 24px 0 18px;
}

h2 {
  font-weight: 650;
  font-size: clamp(2rem, 2.85vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
  color: var(--navy);
  margin: 14px 0 14px;
}

h3 {
  font-weight: 620;
  color: var(--navy);
  letter-spacing: -0.012em;
  line-height: 1.26;
}

.hero-copy p,
.section-heading p,
.system-copy p,
.contact-copy p,
.trust-copy p {
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--muted);
  max-width: 610px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border: 0;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 620;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 18px 34px rgba(8, 26, 58, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(8, 26, 58, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 38px rgba(8, 26, 58, 0.14);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-soft);
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 620;
  letter-spacing: 0;
}

.hero-pills span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(114, 184, 176, 0.22);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.main-card {
  position: relative;
  z-index: 2;
  width: min(100%, 565px);
  margin-left: auto;
  padding: 18px;
  transform: none;
}

.main-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(114, 184, 176, 0.16);
  border-radius: 22px;
  pointer-events: none;
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 8px 16px;
}

.card-topline h2 {
  font-weight: 560;
  font-size: 1.18rem;
  line-height: 1.18;
  margin: 4px 0 0;
  letter-spacing: -0.018em;
}

.muted,
.metric span,
.system-row span,
.area-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 560;
  letter-spacing: 0;
}

.arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-size: 1.1rem;
}

.area-card {
  margin: 0 8px 12px;
  padding: 15px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 26, 58, 0.95), rgba(20, 45, 85, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(114, 184, 176, 0.55), transparent 12rem);
  border-radius: 22px;
  overflow: hidden;
}

.area-card span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 6px;
}

.area-card strong {
  display: block;
  max-width: 380px;
  font-size: 1.06rem;
  line-height: 1.22;
  letter-spacing: -0.012em;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 8px;
}

.metric,
.chart-card,
.system-row {
  background: rgba(246, 249, 249, 0.82);
  border: 1px solid rgba(8, 26, 58, 0.08);
  border-radius: 18px;
  padding: 14px;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
  letter-spacing: -0.016em;
  margin: 4px 0 2px;
}

.metric em {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 540;
}

.metric-wide {
  grid-column: span 2;
}

.chart-card {
  margin: 10px 8px;
}

.chart-card h3 {
  margin-bottom: 3px;
}

.chart-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  height: 108px;
  padding: 8px 0;
}

.bars i {
  display: block;
  height: var(--h);
  min-height: 20px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--teal-2), var(--teal-dark));
  box-shadow: inset 0 -10px 18px rgba(8, 26, 58, 0.09);
}

.range-tabs {
  display: flex;
  gap: 7px;
}

.range-tabs span {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 560;
  color: var(--muted);
  background: #fff;
}

.range-tabs .active {
  color: #fff;
  background: var(--navy);
}

.system-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 8px 8px;
}

.system-row strong {
  display: block;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 4px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 210px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(8, 26, 58, 0.16);
}

.floating-card span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 600;
}

.floating-card strong {
  color: var(--navy);
  line-height: 1.2;
}

.floating-card small {
  color: var(--muted);
}

.floating-one {
  left: -18px;
  bottom: 56px;
}

.floating-two {
  right: -10px;
  top: 54px;
}

.logo-strip {
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
  border-top: 1px solid rgba(8, 26, 58, 0.06);
  border-bottom: 1px solid rgba(8, 26, 58, 0.06);
}

.strip-wrap {
  display: flex;
  align-items: center;
  min-height: 68px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.strip-wrap span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-wrap strong {
  color: rgba(8, 26, 58, 0.38);
  font-size: 0.91rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.section-heading {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 42px;
}

.section-heading.left {
  text-align: left;
  margin: 0;
}

.problem-grid,
.solutions-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.number-card,
.solution-card,
.case-card,
.quote-card,
.contact-form {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 26, 58, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(8, 26, 58, 0.07);
}

.number-card {
  padding: 23px;
}

.number-card > span {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 26px;
}

.number-card h3,
.solution-card h3,
.case-card h3 {
  font-size: 1.04rem;
  margin-bottom: 9px;
}

.number-card p,
.solution-card p,
.case-card p,
.timeline p,
.quote-card span,
.footer-grid p {
  color: var(--muted);
}

.number-card p,
.solution-card p,
.case-card p,
.timeline p,
.footer-grid p,
.chart-card p,
.floating-card small,
.form-note {
  font-size: 0.93rem;
  line-height: 1.56;
  letter-spacing: 0;
}

.step-card h3,
.timeline h3,
.chart-card h3 {
  font-size: 1.02rem;
  letter-spacing: -0.006em;
}

input,
textarea,
select {
  font-size: 0.95rem;
  letter-spacing: -0.004em;
}

.system-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(114, 184, 176, 0.18), transparent 26rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  overflow: hidden;
}

.system-section h2,
.system-section h3 {
  font-weight: 650;
  color: #fff;
}

.system-section .label {
  color: var(--teal-2);
}

.system-section p {
  color: rgba(255, 255, 255, 0.72);
}

.system-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.system-copy {
  position: sticky;
  top: 120px;
}

.steps-list {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.step-card > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(114, 184, 176, 0.16);
  color: var(--teal-2);
  font-weight: 560;
}

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

.solution-card {
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(8, 26, 58, 0.12);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-2));
  margin-bottom: 18px;
  font-weight: 600;
}

.case-section {
  background: #fff;
}

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

.case-card {
  padding: 24px;
}

.case-meta {
  display: inline-flex;
  color: var(--teal-dark);
  background: var(--mint-soft);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.74rem;
  font-weight: 540;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.case-stats span {
  display: block;
  color: var(--muted);
  padding: 13px;
  background: var(--bg);
  border-radius: 15px;
  font-size: 0.84rem;
}

.case-stats strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
}

.timeline-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(114, 184, 176, 0.18), transparent 24rem),
    var(--bg);
}

.timeline-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 30px;
  width: 2px;
  background: rgba(114, 184, 176, 0.34);
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
}

.timeline article > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  color: #fff;
  background: var(--navy);
  font-weight: 560;
  box-shadow: 0 14px 30px rgba(8, 26, 58, 0.18);
}

.timeline article > div {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 26, 58, 0.08);
  border-radius: var(--radius-lg);
}

.timeline h3,
.timeline p {
  margin-bottom: 0;
}

.timeline h3 {
  margin-bottom: 8px;
}

.trust-section {
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 28px;
  align-items: stretch;
}

.trust-copy,
.quote-card {
  border-radius: var(--radius-xl);
}

.trust-copy {
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(233, 247, 245, 0.92), rgba(255, 255, 255, 0.84));
  border: 1px solid var(--border);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 207, 200, 0.38), transparent 18rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.quote-card p {
  color: #fff;
  font-size: 1.16rem;
  line-height: 1.48;
  letter-spacing: -0.008em;
}

.quote-card strong {
  margin-top: 12px;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(114, 184, 176, 0.2), transparent 28rem),
    linear-gradient(180deg, var(--bg), #fff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details a {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 26, 58, 0.08);
  background: #fff;
  border-radius: 18px;
  color: var(--navy);
  font-weight: 540;
  box-shadow: 0 14px 34px rgba(8, 26, 58, 0.06);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 540;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(246, 249, 249, 0.8);
  border-radius: 16px;
  padding: 14px 14px;
  color: var(--navy);
  outline: none;
  transition: border 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 4px rgba(114, 184, 176, 0.18);
  background: #fff;
}

.checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal-dark);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.5fr 0.75fr;
  gap: 42px;
}

.footer-logo {
  width: 148px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-grid h3 {
  font-weight: 560;
  color: #fff;
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #fff;
  font-weight: 540;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .system-layout,
  .timeline-layout,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card {
    display: none;
  }

  .main-card {
    transform: none;
    width: 100%;
    margin-left: 0;
  }

  .system-copy,
  .contact-copy {
    position: static;
  }

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

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.04rem;
    padding: 13px 16px;
    text-align: center;
  }

  .solutions-grid,
  .case-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 76px 0;
  }

  h1 {
    letter-spacing: -0.032em;
  }
}

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

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    width: 126px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .hero-grid {
    gap: 38px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.032em;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.14;
    letter-spacing: -0.024em;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-pills span {
    width: 100%;
  }

  .problem-grid,
  .metric-grid,
  .system-row,
  .case-stats,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .metric-wide {
    grid-column: auto;
  }

  .main-card,
  .number-card,
  .solution-card,
  .case-card,
  .contact-form,
  .trust-copy,
  .quote-card {
    border-radius: 20px;
  }

  .main-card {
    padding: 12px;
  }

  .card-topline,
  .area-card,
  .chart-card,
  .system-row,
  .metric-grid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .metric-grid {
    gap: 10px;
  }

  .metric,
  .chart-card,
  .system-row,
  .area-card {
    padding: 14px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .timeline article > span {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .timeline::before {
    left: 25px;
  }

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