:root {
  --primary: #23cbd9;
  --primary-container: #f0fdfa;
  --secondary: #1e8a94;
  --surface: #ffffff;
  --on-surface: #0f172a;
  --on-surface-variant: #475569;
  --outline: #cbd5e1;
  --outline-variant: #e2e8f0;
  --surface-container: #f8fafc;
  --background: #ffffff;
  --navy-deep: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.14);
  --shadow-xl: 0 28px 72px rgba(15, 23, 42, 0.18);
  --radius: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--on-surface);
  font-family: "Inter", Arial, sans-serif;
  background: var(--background);
  line-height: 1.6;
}

body::selection {
  color: var(--white);
  background: var(--primary);
}

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

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

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

h1,
h2,
h3 {
  color: var(--navy-deep);
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.6vw, 4.75rem);
  font-weight: 800;
}

h1 span,
.brand-name span {
  color: var(--primary);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-weight: 800;
}

p {
  margin-bottom: 0;
}

input,
select,
button {
  font: inherit;
}

.material-symbols-outlined {
  direction: ltr;
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-feature-settings: "liga";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 4px;
}

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

/* Header / Navigation */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--navy-deep);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.brand-name {
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--on-surface-variant);
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  transition: color 180ms ease;
}

.primary-nav a:first-child,
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--primary);
}

.primary-nav a:first-child::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary,
.calculator-button {
  color: var(--white);
  background: var(--primary);
  box-shadow: var(--shadow-sm);
}

.header-cta:hover,
.button-primary:hover,
.calculator-button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-deep);
  border-radius: 999px;
}

/* Shared */
.section {
  padding: 100px 0;
}

.section-white {
  background: var(--surface);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--on-surface-variant);
  font-size: 1.125rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.button-primary {
  min-height: 56px;
  padding-inline: 32px;
}

.button-ghost {
  min-height: 56px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 104px 0 70px;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  transform: scale(1.05);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.24)),
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.34));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 48px;
  align-items: center;
  padding-block: 48px;
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.supporting-line {
  max-width: 620px;
  margin-top: 26px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  border-left: 3px solid var(--primary);
}

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

.hero-copy .eyebrow {
  color: var(--primary);
}

.calculator {
  position: relative;
  overflow: hidden;
  padding: 34px;
  color: var(--navy-deep);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(35, 203, 217, 0.28);
  border-top: 6px solid var(--primary);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.calculator h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2vw, 2rem);
}

.calculator-heading {
  margin-bottom: 26px;
  text-align: left;
}

.calculator-heading .eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--secondary);
  background: rgba(35, 203, 217, 0.1);
  border: 1px solid rgba(35, 203, 217, 0.2);
  border-radius: 999px;
  font-size: 0.68rem;
}

.calculator-heading p:last-child,
.calculator-note {
  color: var(--on-surface-variant);
}

.range-group {
  margin-bottom: 22px;
  padding: 20px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.range-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.range-label label {
  color: var(--on-surface-variant);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.range-label output {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

input[type="range"] {
  height: 8px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--primary), rgba(35, 203, 217, 0.2));
  border-radius: 999px;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 6px solid var(--primary);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(35, 203, 217, 0.38);
}

input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 6px solid var(--primary);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(35, 203, 217, 0.38);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: rgba(71, 85, 105, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
}

.calculator-results {
  display: grid;
  margin-bottom: 22px;
}

.calculator-results div {
  padding: 22px;
  background: linear-gradient(180deg, rgba(35, 203, 217, 0.13), rgba(35, 203, 217, 0.05));
  border: 1px solid rgba(35, 203, 217, 0.24);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.calculator-results span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-results strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.calculator-button {
  width: 100%;
  min-height: 56px;
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 36px rgba(35, 203, 217, 0.28);
}

.calculator-button .material-symbols-outlined {
  font-weight: 800;
}

.calculator-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.625rem;
  font-style: italic;
  opacity: 0.6;
}

/* Pillars */
#services {
  background: #f8fafc;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  min-height: 100%;
  padding: 40px;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-2xl);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.pillar-card:hover {
  border-color: rgba(35, 203, 217, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.icon-box {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 32px;
  color: var(--primary);
  background: rgba(35, 203, 217, 0.1);
  border-radius: var(--radius-xl);
  transition: transform 240ms ease;
}

.pillar-card:hover .icon-box {
  transform: scale(1.1);
}

.icon-box .material-symbols-outlined {
  font-size: 40px;
}

.step-label {
  display: none;
}

.pillar-card p,
.process-copy > p,
.timeline-item p,
.trust-grid > div > p,
.site-footer p {
  color: var(--on-surface-variant);
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.industry-card {
  position: relative;
  display: flex;
  min-height: 550px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 32px;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transition: border-color 300ms ease, transform 300ms ease;
}

.industry-card:hover {
  border-color: rgba(35, 203, 217, 0.5);
  transform: translateY(-3px);
}

.industry-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.industry-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.5),
    rgba(15, 23, 42, 0.14),
    rgba(15, 23, 42, 0.02)
  );
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.industry-content span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
}

.industry-content h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.25rem;
}

.industry-content p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  line-height: 1.55;
}

.industry-content a {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.industry-content a:hover {
  color: var(--navy-deep);
  background: var(--primary);
}

/* Process */
.process-section {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  gap: 64px;
  align-items: center;
}

.process-copy > p {
  max-width: 620px;
  margin-bottom: 48px;
  font-size: 1.125rem;
}

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

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 19px;
  width: 2px;
  content: "";
  background: #e2e8f0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding-left: 0;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border: 4px solid #f8fafc;
  border-radius: 999px;
  font-weight: 800;
}

.timeline-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.timeline-heading h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.timeline-heading span {
  flex: 0 0 auto;
  padding: 4px 10px;
  color: var(--primary);
  background: rgba(35, 203, 217, 0.1);
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.process-visual img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center center;
  transition: transform 700ms ease;
}

.process-visual:hover img {
  transform: scale(1.05);
}

.process-callout {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  padding: 32px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.process-callout span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-callout strong {
  display: block;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
}

.process-callout p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

/* Trust */
.trust-section {
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.metric-card {
  padding: 32px;
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.metric-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-deep);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.metric-card span {
  display: block;
  color: var(--primary);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expectation-panel {
  padding: 40px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-2xl);
}

.expectation-panel h3 {
  margin-bottom: 32px;
  color: var(--navy-deep);
}

.check-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 40px;
  color: var(--on-surface-variant);
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--primary);
  border-radius: 999px;
}

.check-list li::after {
  position: absolute;
  left: 8px;
  top: 6px;
  width: 6px;
  height: 11px;
  content: "";
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(42deg);
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--on-surface);
  background: var(--surface);
  border-top: 1px solid #f1f5f9;
}

.contact-section::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  content: "";
  background: var(--primary);
  border-radius: 999px;
  opacity: 0.03;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 700px;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
}

.contact-copy p {
  max-width: 660px;
  color: var(--on-surface-variant);
  font-size: 1.25rem;
  line-height: 1.65;
}

.contact-note {
  margin-top: 24px;
}

.consultant-cue {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  color: var(--primary);
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.avatar-stack img + img {
  margin-left: -12px;
}

.consultant-cue strong {
  color: var(--primary);
  font-weight: 800;
}

.jotform-card {
  min-height: 560px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.jotform-card iframe {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 539px;
  height: 539px;
  background: var(--white);
  border: 0;
  border-radius: calc(var(--radius-2xl) - 4px);
}

/* Footer */
.site-footer {
  color: var(--on-surface-variant);
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: 48px;
  padding-block: 80px;
}

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

.site-footer h3 {
  margin-bottom: 24px;
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 12px;
  color: var(--on-surface-variant);
  font-size: 0.875rem;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: grid;
  gap: 10px;
  padding-bottom: 48px;
}

.footer-bottom p {
  max-width: 920px;
  color: rgba(71, 85, 105, 0.62);
  font-size: 0.72rem;
  line-height: 1.7;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: none;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    padding: 12px;
  }

  .primary-nav a:first-child::after {
    display: none;
  }

  .hero-grid,
  .process-grid,
  .trust-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .process-visual {
    min-height: 460px;
  }

  .process-visual img {
    min-height: 460px;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .brand-name {
    max-width: 210px;
    white-space: normal;
  }

  .section,
  .contact-section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .section-heading.centered {
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 60px;
  }

  .hero-grid {
    gap: 38px;
    padding-block: 22px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero-lede,
  .contact-copy p {
    font-size: 1rem;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .calculator {
    padding: 24px;
  }

  .calculator-heading {
    text-align: center;
  }

  .range-label {
    display: grid;
    gap: 8px;
  }

  .calculator-results,
  .pillar-grid,
  .industry-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    padding: 28px;
  }

  .industry-card {
    min-height: 500px;
    padding: 24px;
  }

  .timeline {
    gap: 32px;
  }

  .timeline-heading {
    display: grid;
    gap: 8px;
  }

  .timeline-heading span {
    width: max-content;
  }

  .process-visual {
    display: none;
  }

  .expectation-panel {
    padding: 28px;
  }

  .jotform-card {
    min-height: 620px;
    padding: 6px;
  }

  .jotform-card iframe {
    min-height: 620px;
    height: 620px;
  }

  .footer-grid {
    padding-block: 64px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta a {
    display: grid;
    min-height: 44px;
    place-items: center;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 850;
  }

  .mobile-sticky-cta a:last-child {
    color: var(--primary);
    background: var(--white);
    border: 1px solid rgba(35, 203, 217, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
