:root {
  --navy: #082856;
  --navy-deep: #031a3a;
  --ink: #153052;
  --muted: #63718b;
  --line: #dbe4ef;
  --surface: #ffffff;
  --soft: #f4fafb;
  --soft-blue: #eef6fb;
  --teal: #009e9a;
  --teal-dark: #007f79;
  --aqua: #4cc7c8;
  --coral: #ff5a42;
  --orange: #f2ab35;
  --lavender: #8e78dd;
  --shadow: 0 22px 60px rgba(15, 43, 76, 0.12);
  --radius: 18px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 86% 8%, rgba(76, 199, 200, 0.14), transparent 320px),
    radial-gradient(circle at 3% 26%, rgba(255, 90, 66, 0.08), transparent 270px),
    linear-gradient(180deg, #ffffff 0%, #f9fcfd 56%, #ffffff 100%);
}

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

button,
input,
select {
  font: inherit;
}

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

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

.section-band {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 40, 86, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1;
  font-weight: 850;
}

.brand small {
  display: block;
  color: #61708c;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 650;
}

.brand-mark {
  width: 40px;
  height: 40px;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 36px;
  top: 1px;
  background: linear-gradient(145deg, #ff765f, #ff432b);
  border-radius: 19px 19px 9px 9px;
}

.brand-mark::before {
  left: 3px;
  transform: rotate(-42deg);
}

.brand-mark::after {
  right: 3px;
  transform: rotate(42deg);
}

.brand-mark span {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 8px;
  width: 9px;
  height: 30px;
  background: #fff;
  clip-path: polygon(48% 0, 100% 0, 62% 38%, 100% 38%, 20% 100%, 38% 54%, 0 54%);
  transform: rotate(8deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 13px;
  transition: background 160ms ease, color 160ms ease;
}

.main-nav a:hover {
  background: #eef7f8;
  color: var(--teal-dark);
}

.button {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 90, 66, 0.22);
}

.button-primary:hover {
  background: #ec4b35;
}

.button-secondary {
  background: #fff;
  color: var(--navy);
  border-color: #bcc9d8;
  box-shadow: 0 10px 22px rgba(15, 43, 76, 0.06);
}

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a:focus-visible,
.button:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 158, 154, 0.28);
  outline-offset: 3px;
}

.hero {
  padding: 58px 0 70px;
  background:
    linear-gradient(180deg, rgba(244, 250, 251, 0.7), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 249, 0.86));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 62px;
  align-items: center;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2 {
  color: var(--navy);
  margin: 0;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(46px, 5.4vw, 68px);
}

h1 span {
  display: block;
  color: var(--coral);
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: #40506d;
  font-size: 19px;
}

.hero-lede strong {
  color: var(--navy);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  color: #445470;
  font-size: 14px;
  font-weight: 700;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dce6ef;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 9px 13px;
}

.trust-list span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.62), transparent 44%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 248, 249, 0.96) 58%, rgba(229, 244, 247, 0.96) 100%);
  border: 1px solid rgba(201, 216, 229, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  pointer-events: none;
}

.hero-device-frame {
  position: relative;
  z-index: 1;
  height: 292px;
  margin-bottom: -26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(231, 246, 248, 0.74)),
    linear-gradient(135deg, rgba(230, 244, 247, 0.9), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(214, 226, 236, 0.82);
  box-shadow: 0 18px 42px rgba(7, 39, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-device-frame::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 16px;
  height: 28px;
  border-radius: 50%;
  background: rgba(8, 47, 80, 0.11);
  filter: blur(18px);
}

.hero-device {
  display: block;
  position: relative;
  z-index: 1;
  width: min(70%, 292px);
  height: calc(100% - 12px);
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  opacity: 1;
  filter: drop-shadow(0 24px 34px rgba(7, 39, 80, 0.2));
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(207, 222, 234, 0.95);
  box-shadow: 0 18px 42px rgba(14, 45, 80, 0.14);
  backdrop-filter: blur(12px);
}

.summary-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: baseline;
}

.summary-row span,
.summary-row small,
.saving-card span,
.saving-card small,
.result-top span,
.result-top small,
.metric-row span,
.metric-row small,
.budget-status span,
.detail-costs strong,
.bar-chart header strong {
  color: #63718b;
  font-weight: 750;
}

.summary-row strong,
.result-top strong {
  color: var(--teal);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
}

.summary-row small {
  grid-column: 1 / -1;
}

.mode-tabs,
.choice-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d5e0eb;
  border-radius: 999px;
  padding: 4px;
  background: #f6fafc;
}

.mode-tabs {
  width: min(100%, 260px);
  margin: 18px 0;
}

.mode-tabs button,
.choice-pair button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5e6d87;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.mode-tabs button.active,
.choice-pair button.active {
  color: #fff;
  background: linear-gradient(180deg, #0fb6ae, #008d86);
  box-shadow: 0 10px 22px rgba(0, 142, 134, 0.2);
}

.hero-costs {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  align-items: center;
}

.donut {
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 36%, var(--aqua) 36% 50%, var(--orange) 50% 64%, var(--coral) 64% 78%, var(--lavender) 78% 90%, #bec8d6 90% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 27px;
  border-radius: 50%;
  background: #fff;
}

.donut span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #61708a;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.cost-list,
.detail-costs ul,
.plan-card ul,
.cta-band ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cost-list li,
.detail-costs li {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #40506b;
  font-size: 13px;
}

.cost-list li + li,
.detail-costs li + li {
  margin-top: 8px;
}

.cost-list i,
.detail-costs i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.cost-list li:nth-child(2) i,
.detail-costs li:nth-child(2) i { background: var(--aqua); }
.cost-list li:nth-child(3) i,
.detail-costs li:nth-child(3) i { background: var(--orange); }
.cost-list li:nth-child(4) i,
.detail-costs li:nth-child(4) i { background: var(--coral); }
.cost-list li:nth-child(5) i,
.detail-costs li:nth-child(5) i { background: var(--lavender); }
.cost-list li:nth-child(6) i,
.detail-costs li:nth-child(6) i { background: #b5bfce; }

.saving-card {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(260px, 100%);
  margin-top: 16px;
  border: 1px solid rgba(0, 158, 154, 0.26);
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(7, 47, 77, 0.1);
}

.saving-card b {
  display: block;
  color: var(--teal-dark);
  font-size: 26px;
  line-height: 1.1;
  margin: 4px 0;
}

.simulator-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.rental-pack-section {
  padding: 34px 0 62px;
  background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
}

.rental-pack-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(0, 1.24fr) minmax(190px, 0.62fr);
  gap: 26px;
  align-items: center;
  min-height: 286px;
  padding: 24px;
  border: 1px solid rgba(0, 158, 154, 0.2);
  border-radius: 28px;
  color: var(--navy);
  text-decoration: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(237, 249, 250, 0.94)),
    linear-gradient(180deg, #ffffff, #eef8fa);
  box-shadow: 0 22px 58px rgba(11, 43, 76, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rental-pack-card:hover,
.rental-pack-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 158, 154, 0.48);
  box-shadow: 0 28px 70px rgba(11, 43, 76, 0.18);
  outline: none;
}

.rental-pack-media {
  position: relative;
  height: 238px;
  min-height: 238px;
  border-radius: 22px;
  overflow: hidden;
  background: #eaf4f4;
  border: 1px solid rgba(199, 215, 225, 0.8);
}

.rental-pack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 220ms ease;
}

.rental-pack-card:hover .rental-pack-media img,
.rental-pack-card:focus-visible .rental-pack-media img {
  transform: scale(1.035);
}

.rental-pack-media span {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(1, 24, 39, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.rental-pack-copy .eyebrow {
  margin-bottom: 12px;
}

.rental-pack-copy h2 {
  max-width: 560px;
  font-family: inherit;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
}

.rental-pack-copy h2 span {
  color: var(--teal);
  white-space: nowrap;
}

.rental-pack-copy p {
  max-width: 640px;
  margin: 16px 0 0;
  color: #40506d;
  font-size: 17px;
  line-height: 1.55;
}

.rental-pack-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rental-pack-copy li {
  border: 1px solid rgba(0, 158, 154, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #31506b;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 850;
}

.rental-pack-copy small {
  display: block;
  margin-top: 18px;
  color: #66738c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rental-pack-price {
  min-height: 218px;
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(160deg, #06263a 0%, #031a2a 100%);
  color: #fff;
  display: grid;
  align-content: center;
  justify-items: start;
  box-shadow: inset 0 0 0 1px rgba(137, 232, 227, 0.18);
}

.rental-pack-price > span,
.rental-pack-price small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.rental-pack-price strong {
  margin: 4px 0 2px;
  color: #36ddd4;
  font-size: clamp(46px, 5vw, 62px);
  line-height: 1;
}

.rental-pack-price em {
  margin-top: 22px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(255, 90, 66, 0.22);
}

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

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

.section-heading > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.simulator-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.sim-form,
.result-panel,
.feature-row article,
.plan-card,
.steps li,
.faq details {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(15, 43, 76, 0.06);
}

.sim-form {
  border-radius: 24px;
  padding: 26px;
  min-width: 0;
}

.sim-form fieldset,
.sim-form label {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.sim-form fieldset + fieldset,
.sim-form fieldset + label,
.sim-form label + fieldset,
.sim-form label + label {
  margin-top: 22px;
}

.sim-form legend,
.sim-form label > span:first-child {
  color: #263a5a;
  font-size: 15px;
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sim-form legend span,
.sim-form label b {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 auto;
}

.choice-pair {
  width: 100%;
  min-width: 0;
}

.stepper {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  min-height: 46px;
  border: 1px solid #d5e0eb;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.stepper button {
  border: 0;
  background: #f7fafc;
  color: var(--navy);
  font-size: 22px;
  font-weight: 850;
  cursor: pointer;
}

.stepper output {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e3eaf2;
  border-right: 1px solid #e3eaf2;
  font-weight: 850;
  color: var(--navy);
}

select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d5e0eb;
  border-radius: 14px;
  background: #fff;
  color: #40506d;
  padding: 0 14px;
  font-weight: 700;
}

.budget-scale {
  display: flex;
  justify-content: space-between;
  color: #72809a;
  font-size: 13px;
  font-weight: 700;
}

.budget input {
  width: 100%;
  accent-color: var(--teal);
}

.budget strong {
  justify-self: start;
  border-radius: 999px;
  background: #eaf8f8;
  color: var(--teal-dark);
  padding: 8px 13px;
}

.result-panel {
  border-radius: 28px;
  padding: 30px;
  border-color: rgba(0, 158, 154, 0.28);
  background:
    linear-gradient(135deg, rgba(236, 253, 253, 0.98), rgba(255, 255, 255, 0.98) 44%, rgba(245, 251, 252, 0.98)),
    #fff;
  min-width: 0;
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.result-top strong {
  display: block;
  margin-top: 8px;
}

.recommendation {
  width: min(280px, 100%);
  min-height: 92px;
  border: 1px solid rgba(0, 158, 154, 0.34);
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px 18px 66px;
  position: relative;
}

.recommendation > span {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}

.recommendation b {
  display: block;
  color: var(--navy);
  margin-top: 4px;
  line-height: 1.25;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 26px 0 16px;
}

.metric-row article {
  min-height: 108px;
  border: 1px solid #e1e9f1;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.metric-row b {
  display: block;
  color: var(--navy);
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.metric-row article:nth-child(3) b,
.metric-row article:nth-child(4) b {
  color: var(--teal-dark);
}

.budget-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  background: #edf9f8;
  border: 1px solid rgba(0, 158, 154, 0.2);
  color: var(--teal-dark);
  padding: 14px 18px;
  margin-bottom: 22px;
}

.budget-status[data-budget-status="over"] {
  background: #fff4f1;
  border-color: rgba(255, 90, 66, 0.24);
  color: #c94530;
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 18px;
  min-width: 0;
}

.bar-chart,
.detail-costs {
  border: 1px solid #e1e9f1;
  background: #fff;
  border-radius: 20px;
  min-width: 0;
}

.bar-chart {
  padding: 22px;
  min-height: 312px;
}

.bar-chart header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.bar-chart header strong {
  margin-right: auto;
  color: #263a5a;
  font-size: 17px;
}

.bar-chart header span {
  color: #61708d;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 750;
}

.bar-chart header i {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 3px;
  display: inline-block;
}

.bar-chart header span:nth-child(3) i {
  background: var(--coral);
}

.chart-area {
  display: grid;
  grid-template-columns: 48px 1fr;
  height: 220px;
}

.y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #8290a5;
  font-size: 12px;
  text-align: right;
  padding: 2px 10px 24px 0;
}

.bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  align-items: end;
  gap: 18px;
  border-left: 1px solid #e6edf4;
  border-bottom: 1px solid #e6edf4;
  background: repeating-linear-gradient(to top, #eef3f7 0 1px, transparent 1px 44px);
  padding: 0 12px;
}

.bar-group {
  height: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 5px;
}

.bar {
  width: 100%;
  min-height: 10px;
  border-radius: 7px 7px 0 0;
  transition: height 180ms ease;
}

.bar.achat {
  background: linear-gradient(180deg, #2bc6c0, var(--teal));
}

.bar.location {
  background: linear-gradient(180deg, #ff806a, var(--coral));
}

.bar-group small {
  grid-column: 1 / -1;
  margin-top: 9px;
  color: #65738d;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.detail-costs {
  padding: 22px;
  min-width: 0;
}

.detail-costs strong {
  display: block;
  color: #263a5a;
  margin-bottom: 18px;
  font-size: 17px;
}

.detail-costs p {
  margin: 20px 0 0;
  border-top: 1px solid #e5ebf2;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--navy);
  font-weight: 850;
}

.wide-btn {
  width: 100%;
  margin-top: 22px;
}

.fineprint {
  margin: 13px 0 0;
  color: #79869b;
  text-align: center;
  font-size: 14px;
}

.feature-section {
  padding-top: 40px;
  padding-bottom: 58px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-row article {
  border-radius: 20px;
  padding: 24px;
}

.feature-row b {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin: 18px 0 8px;
}

.feature-row p {
  margin: 0;
  color: #66738c;
  font-size: 15px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(0, 158, 154, 0.12);
}

.feature-icon::before,
.feature-icon::after,
.steps i::before,
.steps i::after {
  content: "";
  position: absolute;
  display: block;
}

.feature-icon.tag::before {
  width: 25px;
  height: 29px;
  background: var(--teal);
  clip-path: polygon(15% 0, 70% 0, 100% 30%, 50% 100%, 0 55%);
}

.feature-icon.tag::after {
  width: 6px;
  height: 6px;
  top: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.feature-icon.eye {
  background: rgba(255, 90, 66, 0.12);
}

.feature-icon.eye::before {
  width: 34px;
  height: 23px;
  background: var(--coral);
  clip-path: ellipse(50% 38% at 50% 50%);
}

.feature-icon.eye::after {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.feature-icon.calendar::before {
  width: 27px;
  height: 29px;
  border: 3px solid var(--teal);
  border-radius: 5px;
}

.feature-icon.calendar::after {
  width: 18px;
  height: 11px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 4px, transparent 4px 8px);
  transform: translateY(5px);
}

.feature-icon.scale {
  background: rgba(242, 171, 53, 0.15);
}

.feature-icon.scale::before {
  width: 25px;
  height: 24px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}

.feature-icon.scale::after {
  width: 32px;
  height: 3px;
  background: var(--orange);
  transform: translateY(16px);
}

.compare-section {
  background: #fff8f5;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  min-height: 380px;
  border-radius: 24px;
  padding: 30px;
  position: relative;
}

.plan-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.plan-card header b {
  color: var(--teal-dark);
  font-size: 22px;
}

.plan-card header span {
  color: var(--teal-dark);
  border: 1px solid rgba(0, 158, 154, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 850;
  background: #eefafa;
}

.plan-card > strong {
  display: block;
  color: var(--teal);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 24px;
}

.plan-card small {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.plan-card li {
  position: relative;
  color: #40506b;
  margin-bottom: 12px;
  padding-left: 30px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.plan-card p {
  margin: 26px 0 0;
  border: 1px solid rgba(0, 158, 154, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-weight: 850;
  padding: 14px 16px;
}

.plan-card.buy {
  color: var(--teal);
  border-color: rgba(0, 158, 154, 0.3);
  background: linear-gradient(135deg, #f0ffff, #fff);
}

.plan-card.rent {
  color: var(--coral);
  border-color: rgba(255, 90, 66, 0.32);
  background: linear-gradient(135deg, #fff7f3, #fff);
}

.plan-card.rent header b,
.plan-card.rent > strong,
.plan-card.rent p {
  color: var(--coral);
}

.plan-card.rent p {
  border-color: rgba(255, 90, 66, 0.24);
}

.plan-card.rent li::before {
  background: var(--coral);
}

.versus {
  align-self: center;
  justify-self: center;
  width: 52px;
  height: 52px;
  border: 1px solid #d7e0ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f7c94;
  background: #fff;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(15, 43, 76, 0.08);
}

.steps {
  background: #fff;
}

.steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps li {
  border-radius: 20px;
  padding: 76px 22px 24px;
  position: relative;
  min-height: 238px;
}

.steps li > span {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.steps i {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid #d2dce7;
  border-radius: 15px;
  background: #f7fafc;
}

.steps i.clip::before {
  left: 16px;
  top: 11px;
  width: 14px;
  height: 23px;
  border: 2px solid var(--navy);
  border-radius: 3px;
}

.steps i.clip::after {
  left: 19px;
  top: 18px;
  width: 8px;
  height: 9px;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
}

.steps i.calc::before {
  left: 15px;
  top: 9px;
  width: 18px;
  height: 27px;
  border: 2px solid var(--navy);
  border-radius: 3px;
}

.steps i.calc::after {
  left: 19px;
  top: 20px;
  width: 10px;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 3px, transparent 3px 6px);
}

.steps i.bars-icon::before {
  left: 13px;
  top: 24px;
  width: 6px;
  height: 11px;
  background: var(--teal);
  box-shadow: 10px -9px 0 var(--teal), 20px -18px 0 var(--teal);
}

.steps i.bars-icon::after {
  left: 11px;
  top: 35px;
  width: 31px;
  border-top: 2px solid var(--navy);
}

.steps i.mail::before {
  left: 10px;
  top: 15px;
  width: 27px;
  height: 17px;
  border: 2px solid var(--navy);
}

.steps i.mail::after {
  left: 12px;
  top: 17px;
  width: 23px;
  height: 13px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.steps b {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.steps p {
  margin: 0;
  color: #69768e;
}

.faq {
  background: linear-gradient(180deg, #f8fcfd, #ffffff);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: 18px;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  min-height: 66px;
  padding: 18px 58px 18px 22px;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal-dark);
  font-size: 24px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: #65728b;
}

.cta-band {
  padding: 0;
  color: #fff;
  background: #052d5a url("assets/cta-lines.webp") center / cover no-repeat;
}

.cta-inner {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  padding-block: 58px;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 27, 61, 0.86), rgba(0, 27, 61, 0.48), rgba(0, 27, 61, 0.76));
  border-radius: 0;
  pointer-events: none;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-band .eyebrow {
  color: #80e0dc;
}

.cta-band h2 {
  max-width: 690px;
  color: #fff;
}

.cta-band h2 span {
  color: #ffb3a7;
}

.cta-band p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-band ul {
  width: min(360px, 100%);
  display: grid;
  gap: 14px;
}

.cta-band li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 850;
}

.cta-band li span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  flex: 0 0 auto;
}

.site-footer {
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 194, 184, 0.18), transparent 28%),
    linear-gradient(180deg, #061e2e 0%, #031725 100%);
  border-top: 1px solid rgba(134, 231, 226, 0.18);
  color: #f7fbff;
  padding: 44px 0 24px;
}

.footer-shell {
  display: grid;
  gap: 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(450px, 1.35fr) minmax(240px, 0.8fr);
  gap: 46px;
  align-items: start;
}

.site-footer .brand {
  align-items: center;
  color: #fff;
}

.site-footer .brand-mark {
  box-shadow: none;
}

.site-footer .brand strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer .brand strong span {
  color: #2ad9d1;
}

.site-footer .brand small {
  color: #c8d8e5;
  font-size: 12px;
  margin-top: 8px;
}

.footer-brand p {
  max-width: 330px;
  color: #d6e6f2;
  font-size: 16px;
  margin: 20px 0 0;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(118px, 0.85fr) minmax(178px, 1.25fr) minmax(118px, 0.85fr);
  gap: 28px;
}

.site-footer nav,
.site-footer address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
  color: #d9e8f3;
  min-width: 0;
}

.site-footer strong {
  color: #fff;
  margin-bottom: 2px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer a,
.site-footer address span {
  color: #d9e8f3;
  font-size: 16px;
  line-height: 1.45;
}

.site-footer a:hover {
  color: #47eee5;
}

.footer-contact {
  padding-top: 2px;
}

.footer-social-label {
  margin-top: 12px;
  color: #fff;
  font-weight: 850;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(137, 232, 227, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(215, 239, 247, 0.16);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #b9cbd9;
  font-size: 15px;
}

.footer-bottom nav {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-bottom a {
  font-size: 15px;
  color: #d9e8f3;
}

@media (max-width: 1040px) {
  .header-inner {
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-grid,
  .simulator-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .feature-row,
  .steps ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .chart-row,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .rental-pack-card {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .rental-pack-price {
    grid-column: 1 / -1;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .rental-pack-price em {
    margin-top: 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

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

  .section-band {
    padding: 58px 0;
  }

  .header-inner {
    gap: 16px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-cta {
    width: 100%;
  }

  .main-nav {
    gap: 4px;
  }

  .main-nav a {
    padding: 8px 10px;
  }

  h1 {
    font-size: clamp(38px, 11.5vw, 52px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-lede,
  .section-heading > p:not(.eyebrow),
  .cta-band p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .hero-visual {
    gap: 0;
    padding: 16px;
    border-radius: 26px;
  }

  .hero-device-frame {
    height: 232px;
    margin-bottom: -18px;
    border-radius: 22px;
  }

  .hero-device-frame::after {
    bottom: 12px;
    height: 22px;
  }

  .hero-device {
    width: min(80%, 254px);
    height: calc(100% - 14px);
    max-height: none;
    padding: 0;
    border-radius: 0;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-costs {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .donut {
    width: 98px;
    margin-inline: 0;
  }

  .donut::after {
    inset: 23px;
  }

  .donut span {
    font-size: 10px;
  }

  .saving-card {
    justify-self: stretch;
    width: auto;
  }

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

  .sim-form,
  .result-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .result-top,
  .budget-status,
  .cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .rental-pack-section {
    padding: 26px 0 48px;
  }

  .rental-pack-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    border-radius: 24px;
  }

  .rental-pack-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .rental-pack-copy {
    padding: 0 4px;
  }

  .rental-pack-copy h2 {
    font-size: 31px;
  }

  .rental-pack-copy p {
    font-size: 16px;
  }

  .rental-pack-copy ul {
    gap: 8px;
  }

  .rental-pack-copy li {
    font-size: 13px;
  }

  .rental-pack-price {
    display: grid;
    justify-content: stretch;
    justify-items: start;
    gap: 0;
    padding: 20px;
    border-radius: 18px;
  }

  .rental-pack-price strong {
    font-size: 48px;
  }

  .rental-pack-price em {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }

  .metric-row,
  .feature-row,
  .steps ol,
  .chart-row,
  .plan-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
  }

  .plan-grid {
    gap: 18px;
  }

  .versus {
    display: none;
  }

  .chart-area {
    grid-template-columns: 38px 1fr;
  }

  .bars {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 0 8px;
  }

  .bar-group small {
    font-size: 10px;
  }

  .steps li,
  .plan-card {
    min-height: auto;
  }

  .cta-inner {
    min-height: auto;
    padding-block: 46px;
  }

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

  .footer-bottom nav {
    justify-content: flex-start;
  }
}
