:root {
  --ink: #122033;
  --navy: #0e1b2b;
  --navy-2: #162b43;
  --muted: #637286;
  --line: #dce7ed;
  --paper: #ffffff;
  --soft: #f5f9fb;
  --mint: #e9fbf7;
  --cream: #fff7e8;
  --teal: #14b8a6;
  --teal-dark: #0d8f85;
  --gold: #d89a2b;
  --coral: #e86f57;
  --shadow-sm: 0 12px 28px rgba(18, 32, 51, 0.08);
  --shadow: 0 26px 70px rgba(18, 32, 51, 0.18);
  --radius: 18px;
  --content-wide: min(1120px, 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, "Noto Sans Hebrew", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f6fbfb 0, #ffffff 680px, #f7fafb 100%);
  line-height: 1.65;
}

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

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

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

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 237, 0.92);
  box-shadow: 0 10px 30px rgba(18, 32, 51, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: auto;
  max-width: clamp(132px, 13vw, 190px);
  height: clamp(46px, 5vw, 60px);
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: clamp(23px, 2.15vw, 32px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.phone-link::before {
  content: "☎";
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.95), rgba(13, 143, 133, 0.95)),
    var(--teal);
  color: white;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(13, 143, 133, 0.24);
}

.phone-link:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.hero-bg,
.hero-overlay,
.hero-texture {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -4;
  background-image: url("assets/hero-heel-treatment-mirrored.png");
  background-size: cover;
  background-position: center center;
  filter: saturate(1.06) contrast(1.03);
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(14, 27, 43, 0.04) 0%, rgba(14, 27, 43, 0.34) 38%, rgba(14, 27, 43, 0.76) 100%),
    linear-gradient(180deg, rgba(14, 27, 43, 0.04), rgba(14, 27, 43, 0.46));
}

.hero-texture {
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 74px 74px;
}

.hero-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 6vw, 78px) 0 clamp(54px, 7vw, 92px);
}

.hero-copy {
  color: white;
  --hero-block-width: 100%;
}

.hero-kickers {
  width: var(--hero-block-width);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow,
.section-heading span,
.final-cta-inner > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow::before,
.section-heading span::before,
.final-cta-inner > span::before {
  content: none;
}

.hero .eyebrow {
  height: 42px;
  min-height: 42px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(94, 234, 212, 0.32);
  border-radius: 999px;
  background: rgba(13, 143, 133, 0.18);
  color: #6ff1df;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero .eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ff1df;
  box-shadow: 0 0 0 5px rgba(111, 241, 223, 0.14);
}

.rating-pill {
  height: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.rating-pill span {
  color: #f8c96a;
  font-size: 13px;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.99;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  width: var(--hero-block-width);
  max-width: var(--hero-block-width);
}

h1 span,
h1 em,
h1 strong {
  display: block;
}

h1 em {
  color: #78f2e1;
  font-style: normal;
}

h1 strong {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(25px, 2.8vw, 40px);
  font-weight: 850;
  line-height: 1.14;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(31px, 4.4vw, 52px);
  line-height: 1.12;
}

#technology-title,
#comparison-title {
  scroll-margin-top: 116px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.lead {
  width: var(--hero-block-width);
  max-width: var(--hero-block-width);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.05vw, 24px);
  font-weight: 500;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: var(--hero-block-width);
  max-width: var(--hero-block-width);
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  color: white;
  font-weight: 850;
  line-height: 1.2;
  backdrop-filter: blur(12px);
}

.hero-points li::before {
  content: "✓";
  width: 21px;
  height: 21px;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 12px;
  line-height: 1;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: var(--hero-block-width);
  max-width: var(--hero-block-width);
  margin-top: 30px;
}

.hero-proof div {
  position: relative;
  min-height: 104px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-proof div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.hero-proof strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.hero-scroll {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: #8df4e5;
  font-weight: 900;
}

.lead-form {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.lead-form::before {
  content: none;
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.form-head div {
  display: grid;
  gap: 3px;
}

.form-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-head strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.form-head b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: #a66500;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.lead-form h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.12;
  text-align: center;
}

.form-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.form-fields {
  display: grid;
  gap: 12px;
}

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

.form-fields.single-column {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

label span {
  padding-inline: 2px;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fbfdfe;
  font: inherit;
  font-weight: 650;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button,
.cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 15px;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 15px 34px rgba(13, 143, 133, 0.24);
  font: inherit;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

button {
  width: 100%;
  margin-top: 18px;
}

button:hover,
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(13, 143, 133, 0.32);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

button:disabled::after {
  content: "";
}

.form-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.wizard-progress {
  padding: 20px 26px 18px;
  background: #f0f5f9;
  border-bottom: 1px solid rgba(220, 231, 237, 0.86);
}

.wizard-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  color: #55708a;
  font-size: 14px;
  font-weight: 800;
}

.wizard-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce6ee;
}

.wizard-bar span {
  width: 25%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transition: width 0.34s ease;
}

.wizard-viewport {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.wizard-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-28px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.wizard-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.wizard-step.is-before {
  transform: translateX(28px);
}

.wizard-step-body {
  width: 100%;
}

.wizard-next,
.choice-option {
  min-height: 58px;
}

.wizard-back {
  width: fit-content;
  min-height: 38px;
  margin: 16px auto 0;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #64748b;
  font-size: 14px;
}

.wizard-back:hover {
  background: rgba(20, 184, 166, 0.08);
  box-shadow: none;
  color: var(--teal-dark);
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-option {
  margin: 0;
  border: 2px solid #dce7ef;
  border-radius: 14px;
  background: white;
  color: var(--ink);
  box-shadow: none;
  font-weight: 900;
  text-align: right;
}

.choice-option:hover,
.choice-option.is-selected {
  border-color: var(--teal);
  background: rgba(20, 184, 166, 0.08);
  color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(20, 184, 166, 0.12);
}

.wizard-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding: 14px 22px;
  border-top: 1px solid rgba(220, 231, 237, 0.78);
  background: #f8fafc;
  color: #6b7d94;
  font-size: 13px;
  font-weight: 800;
}

.wizard-trust span::before {
  content: "✓";
  margin-left: 6px;
  color: var(--teal-dark);
}

.wizard-thanks {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 42px 30px;
}

.wizard-thanks .thanks-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-dark);
  font-size: 34px;
  font-weight: 900;
}

.wizard-thanks p {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
}

.wizard-thanks a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-weight: 900;
}

.lead-form.is-submitting .choice-option,
.lead-form.is-submitting .wizard-next,
.lead-form.is-submitting .wizard-back {
  cursor: wait;
  opacity: 0.72;
}

.lead-form.is-complete .wizard-progress,
.lead-form.is-complete .wizard-trust,
.lead-form.is-complete .privacy {
  display: none;
}

.lead-form.is-complete .wizard-viewport {
  min-height: 360px;
}

.lead-form.is-complete {
  background: rgba(255, 255, 255, 0.98);
}

.form-bullets span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 13px;
  background: rgba(20, 184, 166, 0.08);
  color: #274358;
  font-size: 13px;
  font-weight: 850;
}

.form-bullets span::before {
  content: "✓";
  width: 20px;
  height: 20px;
  margin-left: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 11px;
  flex: 0 0 20px;
}

.privacy,
.form-message {
  text-align: center;
}

.privacy {
  margin: 12px 0 18px;
  color: #758396;
  font-size: 13px;
}

.form-message {
  min-height: 23px;
  margin: 10px 24px 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.form-message:empty {
  display: none;
  min-height: 0;
  margin: 0;
}

.stats-band {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
  box-shadow: 0 24px 70px rgba(14, 27, 43, 0.18);
}

.stats-band div {
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  text-align: center;
}

.stats-band div + div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #75f1df;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-icon::before {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.stat-icon svg {
  width: 23px;
  height: 23px;
  display: block;
  overflow: visible;
}

.stat-icon svg path,
.stat-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.stat-check::before {
  content: "✓";
}

.stat-wave::before {
  content: "≈";
  font-size: 30px;
}

.stat-card::before {
  content: "₪";
  font-size: 34px;
  transform: translateY(-1px);
}

.stats-band strong {
  display: block;
  color: white;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.08;
}

.stats-band span:not(.stat-icon) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

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

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p,
.split p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
}

.problem {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fafb 100%);
}

  .treatment-grid,
  .testimonial-grid,
  .team-grid,
  .branch-grid,
  .process-grid {
  width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.treatment-grid article,
.testimonial-grid article,
.team-grid article,
.branch-grid article,
.highlight-panel,
.lead-form,
details {
  border: 1px solid var(--line);
  background: white;
}

.treatment-grid article,
.testimonial-grid article,
.branch-grid article,
.process-grid article {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.treatment-grid article {
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-areas:
    "icon tag"
    "icon title"
    "icon text";
  column-gap: 16px;
  align-items: start;
  padding: 26px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.treatment-grid article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  width: 52px;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: var(--teal);
  opacity: 0.85;
}

.treatment-grid article:hover,
.testimonial-grid article:hover,
.branch-grid article:hover,
.process-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.34);
  box-shadow: 0 24px 54px rgba(18, 32, 51, 0.11);
}

.treatment-grid p,
.testimonial-grid p,
.branch-grid p,
.team-grid p,
.process-grid p,
details p {
  color: var(--muted);
}

.card-tag {
  grid-area: tag;
  display: inline-flex;
  justify-self: start;
  margin: 0 0 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff0ee;
  color: #b34832;
  font-size: 12px;
  font-weight: 900;
}

.card-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.14), rgba(216, 154, 43, 0.13));
  color: var(--teal-dark);
  font-size: 27px;
  line-height: 1;
}

.treatment-grid h3 {
  grid-area: title;
  margin-bottom: 7px;
}

.treatment-grid p {
  grid-area: text;
  margin-bottom: 0;
}

.problem-summary {
  width: var(--content-wide);
  margin: 22px auto 0;
  padding: clamp(24px, 3.5vw, 36px);
  display: grid;
  grid-template-columns: minmax(170px, 230px) 1fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  border-radius: 26px;
  background:
    linear-gradient(135deg, var(--navy), #203a58);
  color: white;
  box-shadow: var(--shadow);
}

.problem-summary-logo {
  min-height: 118px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
}

.problem-summary-logo img {
  width: min(178px, 86%);
  height: auto;
}

.problem-summary h3 {
  color: white;
  font-size: clamp(24px, 2.5vw, 34px);
}

.problem-summary p {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.technology {
  background:
    linear-gradient(180deg, #f6fafb 0%, #ffffff 100%);
}

.technology.section {
  padding-top: clamp(42px, 6vw, 76px);
}

.technology-grid {
  width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(220, 231, 237, 0.9);
  border-radius: 34px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f0fbf8 52%, #fff8ed 100%);
  box-shadow: var(--shadow-sm);
}

.device-card {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 28px;
  border: 1px solid rgba(220, 231, 237, 0.9);
  background:
    linear-gradient(180deg, #ffffff 0%, #eef7fb 100%);
}

.device-card::before {
  content: "ORTHOSPEC™";
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(18, 32, 51, 0.12);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.device-card::after {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 38px;
  width: 58%;
  height: 18px;
  border-radius: 999px;
  background: rgba(18, 32, 51, 0.16);
  filter: blur(12px);
}

.device-card img {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  filter: drop-shadow(0 30px 34px rgba(18, 32, 51, 0.22));
}

.success-badge {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 22px;
  min-width: 142px;
  padding: 15px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 20px 44px rgba(13, 143, 133, 0.34);
  text-align: center;
}

.success-badge strong {
  display: block;
  font-size: 31px;
  line-height: 1;
}

.success-badge span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
}

.technology-steps {
  position: relative;
}

.technology-steps h3 {
  margin-bottom: 24px;
  font-size: clamp(26px, 2.5vw, 36px);
}

.technology-steps ol {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.technology-steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(220, 231, 237, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.technology-steps li > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--navy);
  color: white;
  font-size: 15px;
  font-weight: 900;
}

.technology-steps h4 {
  margin: 0 0 4px;
  font-size: 18px;
}

.technology-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.tech-note {
  margin-top: 22px;
  padding: 17px 18px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 18px;
  background: rgba(20, 184, 166, 0.1);
  color: #24364b;
  font-size: 15px;
  font-weight: 750;
}

.tech-note strong {
  color: var(--teal-dark);
}

.split {
  width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.solution {
  background: white;
}

.solution .split {
  overflow: hidden;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, var(--navy) 0%, #173352 62%, #244e6f 100%);
  color: white;
  box-shadow: var(--shadow);
}

.solution h2,
.solution h3 {
  color: white;
}

.solution .eyebrow {
  color: #7bf3e2;
}

.solution .split p {
  color: rgba(255, 255, 255, 0.76);
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 23px 0 26px;
}

.solution-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.highlight-panel {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 26px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.highlight-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlight-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.highlight-panel li span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.process {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9fb 100%);
}

.process-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
}

.process-grid article > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  font-size: 19px;
  font-weight: 900;
}

.process-grid article:nth-child(2) > span {
  background: var(--teal-dark);
}

.process-grid article:nth-child(3) > span {
  background: var(--gold);
}

.process-grid article:nth-child(4) > span {
  background: var(--coral);
}

.comparison {
  background:
    linear-gradient(135deg, var(--navy) 0%, #17314f 100%);
  color: white;
}

.comparison .section-heading h2 {
  color: white;
}

.comparison .section-heading span {
  color: #75f1df;
}

.table-wrap {
  width: var(--content-wide);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.2);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.dark-cta {
  background: white;
  color: var(--ink);
  box-shadow: none;
}

.dark-cta:hover {
  background: var(--teal);
  color: white;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: white;
  color: var(--ink);
}

th,
td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th:first-child,
td:first-child {
  text-align: right;
  font-weight: 900;
}

thead th {
  background: #102033;
  color: white;
  border-bottom: 0;
  font-size: 15px;
}

tbody td:nth-child(2) {
  background: #eaf9f6;
  color: var(--teal-dark);
  font-weight: 900;
}

tbody tr:nth-child(even) td:not(:nth-child(2)) {
  background: #f8fbfc;
}

.metric {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.metric.good {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-dark);
}

.metric.bad {
  background: rgba(232, 111, 87, 0.12);
  color: #b34832;
}

.metric.neutral {
  background: #eef3f6;
  color: #516174;
}

.metric.refund-cell {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 12px 24px rgba(20, 184, 166, 0.2);
}

.insurance {
  background:
    linear-gradient(180deg, #fff7e8 0%, #ffffff 100%);
}

.insurance .split {
  align-items: stretch;
}

.insurance .split > div:first-child {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.insurance .eyebrow {
  color: #f8c96a;
}

.insurance h2 {
  color: white;
}

.insurance .split > div:first-child p {
  color: rgba(255, 255, 255, 0.76);
}

.refund {
  display: inline-flex;
  margin-top: 12px;
  padding: 11px 15px;
  border-radius: 14px;
  background: rgba(248, 201, 106, 0.16);
  color: #ffdd8a !important;
  font-weight: 900;
}

.insurance-card {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(216, 154, 43, 0.24);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.insurance-card p {
  color: var(--muted);
}

.insurance-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0 22px;
}

.insurance-flow span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.insurance-flow span:nth-child(2) {
  background: var(--teal-dark);
}

.insurance-flow span:nth-child(3) {
  background: var(--gold);
}

.insurance-flow span:nth-child(4) {
  background: var(--coral);
}

.insurance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.insurance-list span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfc;
  color: #23364c;
  text-align: center;
  font-weight: 900;
}

.testimonials {
  background: #f7fafb;
}

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

.testimonial-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
}

.testimonial-grid article::before {
  content: "”";
  height: 40px;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 68px;
  line-height: 0.7;
}

.stars {
  color: #e7a522;
  font-size: 18px;
  letter-spacing: 0;
}

.outcome {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.reviews-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 23px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  color: var(--ink);
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.reviews-link:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.team {
  background: white;
}

.team-grid article {
  padding: 25px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, white 0%, #f8fbfc 100%);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.team-grid img {
  width: 112px;
  height: 112px;
  margin: 0 auto 16px;
  border: 5px solid rgba(20, 184, 166, 0.18);
  border-radius: 50%;
  object-fit: cover;
}

.faq {
  background: #f7fafb;
}

.faq-list {
  width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  gap: 13px;
}

details {
  overflow: hidden;
  padding: 0 22px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(18, 32, 51, 0.05);
}

summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 900;
}

summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--teal-dark);
  font-size: 23px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-bottom: 20px;
}

.branches {
  background: white;
}

.branch-grid article {
  min-height: 156px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  text-align: right;
}

.branch-grid article::before {
  content: none;
}

.branch-grid h3 {
  margin: 0;
  font-size: 21px;
}

.branch-grid p {
  margin: 0;
}

.final-cta {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, #102033 0%, #173352 70%, #0d8f85 100%);
  color: white;
}

.final-cta-inner {
  width: var(--content-wide);
  margin: 0 auto;
  text-align: center;
}

.final-cta-inner > span {
  justify-content: center;
  color: #7cf2e2;
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 30px 20px 94px;
  background: #08111e;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 172px;
  height: auto;
  padding: 8px 12px;
  border-radius: 12px;
  background: white;
}

.floating-call {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 36;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 22px 46px rgba(13, 143, 133, 0.34);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-call span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.floating-call.is-visible:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 54px rgba(13, 143, 133, 0.42);
}

.mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 42;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(8, 17, 30, 0.96);
  backdrop-filter: blur(12px);
}

.mobile-bar a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font-weight: 900;
}

.mobile-bar a:first-child {
  background: var(--teal);
  color: white;
}

.simple-response {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc, #e8fbf8);
}

.response-box {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.response-box img {
  width: 150px;
  margin: 0 auto 24px;
}

.response-box h1 {
  color: var(--ink);
  font-size: 34px;
  line-height: 1.15;
  text-shadow: none;
}

.response-box p {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(326px, 400px);
    gap: 32px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .technology-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-form {
    max-width: 560px;
    justify-self: stretch;
  }

  .stats-band,
  .treatment-grid,
  .team-grid,
  .branch-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band {
    padding-block: 20px;
  }

  .stats-band div:nth-child(3) {
    border-right: 0;
  }

  .pain-strip,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .technology-grid {
    padding: 18px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 15px;
  }

  .brand img {
    width: auto;
    max-width: 132px;
    height: 46px;
  }

  .phone-link {
    gap: 7px;
    font-size: 19px;
  }

  .phone-link::before {
    width: 32px;
    height: 32px;
  }

  .hero-bg {
    opacity: 1;
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14, 27, 43, 0.66) 0%, rgba(14, 27, 43, 0.54) 44%, rgba(14, 27, 43, 0.78) 100%),
      linear-gradient(90deg, rgba(14, 27, 43, 0.22), rgba(14, 27, 43, 0.5));
  }

  .hero-inner {
    width: min(100% - 28px, 1240px);
    padding: 36px 0 36px;
  }

  h1 {
    font-size: 41px;
  }

  h1 strong {
    font-size: 24px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-kickers {
    gap: 8px;
  }

  .hero-proof,
  .hero-form .form-fields,
  .form-bullets,
  .insurance-flow {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .lead-form {
    padding: 0;
    border-radius: 22px;
  }

  .form-head {
    display: grid;
  }

  .section {
    padding: 50px 16px;
  }

  .treatment-grid,
  .team-grid,
  .branch-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 14px;
  }

  .stats-band div + div {
    border-right: 0;
    border-top: 0;
  }

  .stats-band div {
    min-height: 108px;
    padding: 12px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-band div:nth-child(-n + 2) {
    border-top: 0;
  }

  .stats-band div:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .device-card {
    min-height: 320px;
  }

  .success-badge {
    right: auto;
    left: 14px;
    bottom: 14px;
  }

  .solution .split,
  .problem-summary,
  .insurance .split > div:first-child {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 26px;
  }

  .problem-summary-logo {
    min-height: 96px;
  }

  table {
    min-width: 720px;
  }

  .mobile-bar {
    display: grid;
  }

  .floating-call {
    display: none;
  }
}

@media (max-width: 420px) {
  .phone-link {
    font-size: 17px;
  }

  .brand img {
    max-width: 116px;
    height: 42px;
  }

  h1 {
    font-size: 36px;
  }

  .rating-pill strong {
    display: none;
  }
}
