*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

body {
  margin: 0;
  color: #171725;
  background: #f3f3f9;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

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

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

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

button,
select {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #3f3fbd;
  outline-offset: 3px;
}

.inquiry-header :focus-visible,
.offer-hero :focus-visible,
.inquiry-footer :focus-visible {
  outline-color: var(--brand-mint);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--brand-dark);
  background: var(--brand-mint);
  border-radius: 999px;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.inquiry-shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.inquiry-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: var(--brand-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inquiry-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

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

.inquiry-brand > span {
  position: relative;
  display: block;
  width: 101px;
  height: 34px;
  overflow: hidden;
}

.inquiry-brand img {
  position: absolute;
  top: -24px;
  left: -21px;
  width: 132px;
  max-width: none;
}

.inquiry-brand strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.inquiry-back {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.inquiry-back:hover {
  color: var(--brand-mint);
}

.inquiry-eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--brand-periwinkle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inquiry-eyebrow::before {
  width: 7px;
  height: 7px;
  background: var(--brand-mint);
  border-radius: 50%;
  content: "";
}

.inquiry-eyebrow--light {
  color: #5050df;
}

.inquiry-eyebrow--light::before {
  background: var(--brand-primary);
}

/* Context hero */
.offer-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(102, 102, 255, 0.11), transparent 46%),
    var(--brand-dark);
}

.offer-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.offer-hero__glow--one {
  top: -180px;
  left: -170px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(102, 102, 255, 0.23), transparent 68%);
}

.offer-hero__glow--two {
  right: -190px;
  bottom: -240px;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(185, 240, 215, 0.12), transparent 68%);
}

.offer-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.52fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
  padding-top: clamp(82px, 9vw, 128px);
  padding-bottom: clamp(82px, 9vw, 128px);
}

.offer-hero__copy h1 {
  max-width: 830px;
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.offer-hero__lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.82;
}

.offer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.offer-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  color: var(--brand-dark);
  background: var(--brand-mint);
  border: 1px solid var(--brand-mint);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 700;
}

.offer-chip--quiet {
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.offer-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  margin-top: 38px;
}

.offer-button {
  display: inline-flex;
  min-height: 54px;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  color: var(--brand-dark);
  background: var(--brand-primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.offer-button:hover {
  background: var(--brand-mint);
  transform: translateY(-2px);
}

.offer-text-link {
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.79rem;
  font-weight: 700;
}

.offer-text-link:hover {
  color: var(--brand-mint);
  border-color: var(--brand-mint);
}

.offer-hero__card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(184, 186, 255, 0.16), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.offer-hero__card::before,
.offer-hero__card::after {
  position: absolute;
  border: 1px solid rgba(184, 186, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.offer-hero__card::before {
  top: -75px;
  right: -80px;
  width: 260px;
  height: 260px;
}

.offer-hero__card::after {
  top: -25px;
  right: -30px;
  width: 160px;
  height: 160px;
}

.offer-hero__mark {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: center;
}

.offer-hero__mark span {
  margin-bottom: 7px;
  color: var(--brand-mint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.offer-hero__mark strong {
  max-width: 100%;
  overflow: hidden;
  color: var(--brand-periwinkle);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.offer-hero__meta {
  position: relative;
  z-index: 1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-hero__meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-hero__meta p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* Features and pricing */
.offer-details,
.offer-media,
.offer-pricing {
  padding: clamp(82px, 9vw, 126px) 0;
}

.offer-details {
  background: #f7f7fb;
}

.offer-pricing {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.58), transparent 27%),
    var(--brand-sky);
}

.offer-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.62fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
  margin-bottom: 54px;
}

.offer-section-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.offer-section-heading > p {
  margin: 0;
  color: #656579;
  font-size: 0.92rem;
  line-height: 1.78;
}

.offer-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.offer-feature {
  min-height: 230px;
  padding: 27px;
  background: #fff;
  border: 1px solid rgba(12, 12, 22, 0.09);
  border-radius: 21px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.offer-feature:hover {
  border-color: rgba(102, 102, 255, 0.32);
  box-shadow: 0 20px 55px rgba(31, 31, 78, 0.08);
  transform: translateY(-4px);
}

.offer-feature > span {
  display: inline-flex;
  margin-bottom: 42px;
  color: #5050df;
  font-size: 0.68rem;
  font-weight: 700;
}

.offer-feature h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.offer-feature p {
  margin: 0;
  color: #707083;
  font-size: 0.8rem;
  line-height: 1.65;
}

.offer-feature-directory {
  display: grid;
  gap: 12px;
}

.offer-feature-group {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 12, 22, 0.1);
  border-radius: 20px;
}

.offer-feature-group summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 28px;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
}

.offer-feature-group summary::-webkit-details-marker { display: none; }

.offer-feature-group summary > span {
  color: #5050df;
  font-size: 0.66rem;
  font-weight: 800;
}

.offer-feature-group summary > strong {
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.offer-feature-group summary > small {
  color: #6e6e82;
  font-size: 0.68rem;
  font-weight: 700;
}

.offer-feature-group summary > i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #4545ce;
  background: rgba(102, 102, 255, 0.09);
  border-radius: 50%;
  font-style: normal;
  transition: transform 180ms ease;
}

.offer-feature-group[open] summary > i { transform: rotate(45deg); }

.offer-feature-group__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(12, 12, 22, 0.08);
  border-top: 1px solid rgba(12, 12, 22, 0.08);
}

.offer-feature-group__items article {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 82px;
  padding: 18px 20px;
  background: #fff;
}

.offer-feature-group__items article > span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #243f34;
  background: var(--brand-mint);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 800;
}

.offer-feature-group__items h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.offer-feature-group__items p {
  margin: 5px 0 0;
  color: #727285;
  font-size: 0.68rem;
  line-height: 1.55;
}

.offer-media {
  background: #0c0c16;
  color: #fff;
}

.offer-media .offer-section-heading > p { color: rgba(255, 255, 255, 0.62); }

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

.offer-media-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: #171728;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
}

.offer-media-card--featured {
  grid-column: 1 / -1;
  min-height: clamp(390px, 58vw, 720px);
}

.offer-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.offer-media-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(12, 12, 22, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  backdrop-filter: blur(18px);
}

.offer-media-card figcaption strong {
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}

.offer-media-card figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.55;
}

.offer-package-switch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 16px 18px 16px 24px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 12, 22, 0.12);
  border-radius: 24px;
}

.offer-package-switch > p {
  margin: 0;
  color: #47475c;
  font-size: 0.78rem;
  font-weight: 700;
}

.offer-package-switch > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 6px;
  padding: 5px;
  background: rgba(12, 12, 22, 0.055);
  border-radius: 17px;
}

.offer-package-switch a {
  display: grid;
  min-height: 58px;
  gap: 2px;
  align-content: center;
  padding: 9px 20px;
  color: #666679;
  border: 1px solid transparent;
  border-radius: 13px;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.offer-package-switch a:hover {
  color: var(--brand-dark);
}

.offer-package-switch a.is-active {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 8px 24px rgba(12, 12, 22, 0.16);
}

.offer-package-switch strong {
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
}

.offer-package-switch span {
  font-size: 0.62rem;
}

.offer-billing-switch {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  margin: -10px 0 28px;
}

.offer-billing-switch > span,
.offer-billing-switch > p {
  color: #68687b;
  font-size: 0.68rem;
  font-weight: 700;
}

.offer-billing-switch > p {
  margin: 0;
  font-weight: 500;
}

.offer-billing-switch > div {
  display: flex;
  gap: 5px;
  padding: 5px;
  background: #e9e9f3;
  border-radius: 999px;
}

.offer-billing-switch a {
  display: inline-flex;
  min-height: 38px;
  gap: 7px;
  align-items: center;
  padding: 7px 14px;
  color: #56566b;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 800;
}

.offer-billing-switch a.is-active {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 7px 20px rgba(12, 12, 22, 0.16);
}

.offer-billing-switch a small {
  padding: 3px 6px;
  color: #174c38;
  background: var(--brand-mint);
  border-radius: 999px;
  font-size: 0.54rem;
}

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

.offer-package-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(12, 12, 22, 0.13);
  border-radius: 28px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.offer-package-card:hover,
.offer-package-card:focus-visible {
  border-color: rgba(102, 102, 255, 0.55);
  box-shadow: 0 22px 55px rgba(52, 52, 125, 0.1);
  transform: translateY(-3px);
}

.offer-package-card.is-featured {
  background: #fff;
  border-color: rgba(102, 102, 255, 0.42);
  box-shadow: 0 25px 70px rgba(52, 52, 125, 0.1);
}

.offer-package-card.is-selected {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(102, 102, 255, 0.13), 0 25px 70px rgba(52, 52, 125, 0.12);
  transform: translateY(-4px);
}

.offer-package-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border-bottom: 1px solid rgba(12, 12, 22, 0.1);
}

.offer-package-card__heading,
.offer-package-card__limits,
.offer-package-card__includes,
.offer-package-card__prices { padding: 28px 30px; }

.offer-package-card__heading > div {
  display: flex;
  min-height: 30px;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.offer-package-card__type,
.offer-package-card__heading > div > strong {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
}

.offer-package-card__type {
  color: #4242c8;
  background: rgba(102, 102, 255, 0.1);
}

.offer-package-card__heading > div > strong {
  color: #17523d;
  background: rgba(185, 240, 215, 0.68);
}

.offer-package-card__choice {
  display: inline-flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
  margin: -12px 0 18px;
  color: #666679;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 750;
}

.offer-package-card__choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.offer-package-card__choice > span {
  position: relative;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(12, 12, 22, 0.24);
  border-radius: 50%;
}

.offer-package-card__choice input:checked + span {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.offer-package-card__choice input:checked + span::after {
  color: #fff;
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.offer-package-card__choice input:focus-visible + span {
  outline: 3px solid rgba(102, 102, 255, 0.3);
  outline-offset: 2px;
}

.offer-package-card__choice em {
  font-style: normal;
}

.offer-package-card.is-selected .offer-package-card__choice {
  color: var(--brand-primary);
}

.offer-package-card__heading h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.offer-package-card__heading > p {
  margin: 17px 0 0;
  color: #606075;
  font-size: 0.82rem;
  line-height: 1.72;
}

.offer-package-card__limits {
  padding-top: 22px;
  padding-bottom: 22px;
  background: rgba(102, 102, 255, 0.045);
  border-top: 1px solid rgba(12, 12, 22, 0.1);
}

.offer-package-card__limits h4 {
  margin: 0 0 13px;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
}

.offer-package-card__limits dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.offer-package-card__limits dl > div {
  display: flex;
  gap: 14px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(12, 12, 22, 0.08);
}

.offer-package-card__limits dt,
.offer-package-card__limits dd {
  margin: 0;
  font-size: 0.68rem;
}

.offer-package-card__limits dt { color: #666679; }

.offer-package-card__limits dd {
  color: var(--brand-dark);
  font-weight: 850;
}

.offer-package-card__includes {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(12, 12, 22, 0.1);
}

.offer-package-card__includes h4 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
}

.offer-package-card__includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.offer-package-card__includes li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
  color: #454559;
  font-size: 0.72rem;
  line-height: 1.45;
}

.offer-package-card__includes li > span:first-child {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #243f34;
  background: var(--brand-mint);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 800;
}

.offer-package-card__includes li > span:last-child {
  display: grid;
  gap: 2px;
}

.offer-package-card__includes small {
  color: #77778a;
  font-size: 0.65rem;
}

.offer-package-card__includes > a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  margin-top: 22px;
  color: #3838bd;
  background: rgba(102, 102, 255, 0.08);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.offer-package-card__includes > a:hover {
  color: #fff;
  background: var(--brand-dark);
}

.offer-package-card__prices {
  display: grid;
  gap: 10px;
  padding-top: 24px;
  margin-top: auto;
  background: rgba(12, 12, 22, 0.025);
  border-top: 1px solid rgba(12, 12, 22, 0.1);
}

.offer-package-price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(12, 12, 22, 0.1);
  border-radius: 17px;
}

.offer-package-price.is-selected {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(102, 102, 255, 0.1);
}

.offer-package-price__summary {
  display: grid;
  gap: 7px;
}

.offer-package-price__summary strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.offer-package-price .offer-package-price__model {
  color: #4b4bd1;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-package-price .offer-package-price__saving {
  width: fit-content;
  padding: 5px 8px;
  color: #174c38;
  background: var(--brand-mint);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 850;
}

.offer-package-price small {
  color: #717184;
  font-size: 0.65rem;
  line-height: 1.5;
}

.offer-package-price .offer-package-price__terms {
  color: #303047;
  padding-top: 7px;
  border-top: 1px solid rgba(12, 12, 22, 0.09);
  font-weight: 700;
}

.offer-package-price > a {
  display: inline-flex;
  min-height: 42px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.offer-package-comparison {
  padding: clamp(24px, 4vw, 42px);
  margin-top: 0;
  background: #fff;
  border: 1px solid rgba(12, 12, 22, 0.12);
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(52, 52, 125, 0.07);
}

.offer-package-comparison__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.offer-package-comparison__heading p {
  margin: 0 0 7px;
  color: var(--brand-primary);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-package-comparison__heading h2,
.offer-package-comparison__heading h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.offer-comparison-section {
  padding: clamp(82px, 10vw, 140px) 0;
  background: #f4f4fa;
  border-top: 1px solid rgba(12, 12, 22, 0.09);
}

.offer-comparison-section .offer-package-comparison__heading {
  margin-bottom: 36px;
}

.offer-package-comparison__heading > span {
  color: #69697d;
  font-size: 0.74rem;
  line-height: 1.7;
}

.offer-package-comparison__scroll {
  overflow-x: auto;
  border: 1px solid rgba(12, 12, 22, 0.11);
  border-radius: 20px;
}

.offer-package-comparison__table {
  width: 100%;
  min-width: 850px;
  border-collapse: separate;
  border-spacing: 0;
  color: #303043;
  font-size: 0.72rem;
}

.offer-package-comparison__table th,
.offer-package-comparison__table td {
  padding: 17px 18px;
  border-right: 1px solid rgba(12, 12, 22, 0.09);
  border-bottom: 1px solid rgba(12, 12, 22, 0.09);
  text-align: left;
  vertical-align: middle;
}

.offer-package-comparison__table tr > *:last-child {
  border-right: 0;
}

.offer-package-comparison__table tbody tr:last-child > * {
  border-bottom: 0;
}

.offer-package-comparison__table thead th {
  height: 1px;
  min-width: 190px;
  padding: 0;
  color: var(--brand-dark);
  background: #fff;
  vertical-align: top;
}

.offer-comparison-plan__inner,
.offer-comparison-label__inner {
  display: flex;
  min-height: 205px;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px 22px;
}

.offer-package-comparison__table thead th:first-child {
  width: 26%;
  min-width: 220px;
  color: #fff;
  background: var(--brand-dark);
}

.offer-package-comparison__table thead th.is-featured {
  color: #fff;
  background: linear-gradient(145deg, #4d4de4 0%, #30306e 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.offer-comparison-label__inner > span {
  color: var(--brand-mint);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-comparison-label__inner > strong {
  max-width: 180px;
  margin-top: 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.offer-comparison-label__inner > small {
  max-width: 190px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  line-height: 1.55;
}

.offer-comparison-plan__inner > small {
  width: fit-content;
  min-height: 23px;
  padding: 5px 8px;
  margin-bottom: 17px;
  color: #4b4bd1;
  background: rgba(102, 102, 255, 0.1);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.025em;
}

.offer-package-comparison__table thead th.is-featured .offer-comparison-plan__inner > small {
  color: #174c38;
  background: var(--brand-mint);
}

.offer-comparison-plan__inner > strong {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.offer-comparison-plan__inner > span {
  margin-top: 8px;
  color: #67677b;
  font-size: 0.69rem;
  font-weight: 750;
}

.offer-package-comparison__table thead th.is-featured .offer-comparison-plan__inner > span {
  color: rgba(255, 255, 255, 0.74);
}

.offer-comparison-plan__inner > em {
  margin-top: 7px;
  color: #257555;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 850;
}

.offer-package-comparison__table thead th.is-featured .offer-comparison-plan__inner > em {
  color: var(--brand-mint);
}

.offer-comparison-plan__inner > a {
  display: flex;
  width: 100%;
  min-height: 38px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  margin-top: auto;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.offer-comparison-plan__inner > a i {
  font-size: 0.72rem;
  font-style: normal;
}

.offer-package-comparison__table thead th.is-featured .offer-comparison-plan__inner > a {
  color: var(--brand-dark);
  background: var(--brand-mint);
}

.offer-comparison-plan__inner > a:hover {
  color: var(--brand-dark);
  background: var(--brand-mint);
  transform: translateY(-1px);
}

.offer-package-comparison__table thead th.is-featured .offer-comparison-plan__inner > a:hover {
  background: #fff;
}

.offer-package-comparison__table tbody th {
  color: #343449;
  background: #fafafe;
  font-weight: 750;
}

.offer-package-comparison__table tbody td {
  background: #fff;
}

.offer-package-comparison__table tbody td.is-included {
  background: rgba(185, 240, 215, 0.12);
}

.offer-package-comparison__table tbody td.is-unlimited {
  color: #174c38;
  background: rgba(185, 240, 215, 0.2);
  font-weight: 850;
}

.offer-package-comparison__table .offer-comparison-section-row th {
  padding: 13px 18px;
  color: #fff;
  background: #30306e;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.035em;
}

.offer-package-comparison__table .offer-comparison-section-row--capability th {
  color: #27273c;
  background: #e9e8ff;
}

.offer-comparison-feature-row th {
  font-weight: 600 !important;
}

.offer-comparison-check {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-weight: 800;
}

.offer-comparison-check i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #174c38;
  background: var(--brand-mint);
  border-radius: 50%;
  font-size: 0.58rem;
  font-style: normal;
}

.offer-comparison-check small {
  color: #77778a;
  font-size: 0.61rem;
  font-weight: 500;
}

.offer-comparison-empty {
  color: #a0a0af;
}

.offer-package-price > a:hover {
  color: var(--brand-dark);
  background: var(--brand-mint);
}

.offer-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offer-plan-card {
  position: relative;
  display: flex;
  min-height: 405px;
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(12, 12, 22, 0.13);
  border-radius: 26px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.offer-plan-card.is-featured {
  background: #fff;
  border-color: rgba(102, 102, 255, 0.44);
  box-shadow: 0 25px 70px rgba(52, 52, 125, 0.12);
}

.offer-plan-card.is-selected {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(102, 102, 255, 0.13), 0 25px 70px rgba(52, 52, 125, 0.12);
  transform: translateY(-4px);
}

.offer-plan-card__top {
  display: flex;
  min-height: 34px;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 35px;
}

.offer-plan-card__top span,
.offer-plan-card__top strong {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
}

.offer-plan-card__top span {
  color: #4242c8;
  background: rgba(102, 102, 255, 0.1);
}

.offer-plan-card__top strong {
  color: #17523d;
  background: rgba(185, 240, 215, 0.68);
}

.offer-plan-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.offer-plan-card__price {
  margin: 14px 0 0;
  color: #4b4bd1;
  font-size: 0.8rem;
  font-weight: 700;
}

.offer-plan-card__description {
  margin: 24px 0 28px;
  color: #606075;
  font-size: 0.84rem;
  line-height: 1.72;
}

.offer-plan-card > a {
  display: flex;
  min-height: 48px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  margin-top: auto;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.offer-plan-card > a:hover {
  color: var(--brand-dark);
  background: var(--brand-mint);
}

.pricing-disclaimer {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: start;
  max-width: 900px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(12, 12, 22, 0.14);
}

.pricing-disclaimer > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #4545ce;
  border: 1px solid rgba(12, 12, 22, 0.22);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.pricing-disclaimer p {
  margin: 0;
  color: #4f4f64;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Project brief */
.inquiry-section {
  position: relative;
  padding: clamp(82px, 9vw, 130px) 0;
  background: #f3f3f9;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.inquiry-intro {
  position: sticky;
  top: 42px;
}

.inquiry-intro h2 {
  max-width: 640px;
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.inquiry-lead {
  max-width: 590px;
  margin: 25px 0 0;
  color: #68687b;
}

.inquiry-selected {
  display: grid;
  gap: 5px;
  padding: 20px;
  margin-top: 30px;
  background: rgba(201, 232, 255, 0.55);
  border: 1px solid rgba(102, 102, 255, 0.18);
  border-radius: 17px;
}

.inquiry-selected span {
  color: #5050d4;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-selected strong {
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
}

.inquiry-selected p {
  margin: 0;
  color: #66667a;
  font-size: 0.72rem;
}

.inquiry-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.inquiry-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(12, 12, 22, 0.1);
}

.inquiry-steps li > span {
  color: #5050d4;
  font-size: 0.7rem;
  font-weight: 700;
}

.inquiry-steps strong {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
}

.inquiry-steps p {
  margin: 3px 0 0;
  color: #777789;
  font-size: 0.78rem;
}

.inquiry-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 24px;
  margin-top: 10px;
  border-top: 1px solid rgba(12, 12, 22, 0.1);
  font-size: 0.78rem;
}

.inquiry-direct p {
  width: 100%;
  margin: 0;
  color: #9696a4;
}

.inquiry-direct a {
  color: #4e4ed1;
  font-weight: 600;
}

.inquiry-form {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
  border: 1px solid rgba(12, 12, 22, 0.08);
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(31, 31, 78, 0.12);
}

.inquiry-form__heading {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(12, 12, 22, 0.1);
}

.inquiry-form__heading p {
  margin: 0 0 6px;
  color: #5050df;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-form__heading h3 {
  margin: 0 0 5px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
}

.inquiry-form__heading span {
  color: #626276;
  font-size: 0.78rem;
}

.inquiry-fields {
  display: grid;
  gap: 16px;
}

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

.inquiry-fields label,
.inquiry-field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.inquiry-fields label > span,
.inquiry-field > span:first-child,
.inquiry-field > label {
  color: #454558;
  font-size: 0.78rem;
  font-weight: 700;
}

.inquiry-fields small {
  margin-left: 4px;
  color: #666679;
  font-size: 0.65rem;
}

.inquiry-form input:not([type="hidden"]):not([type="checkbox"]),
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  background: #f7f7fb;
  border: 1px solid #89899d;
  border-radius: 12px;
  outline: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.inquiry-form textarea {
  min-height: 170px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  background: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(102, 102, 255, 0.1);
}

.inquiry-selection-help,
.inquiry-field__meta {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  color: #626276;
  font-size: 0.69rem;
}

.inquiry-selection-help a {
  flex: 0 0 auto;
  color: #4b4bd1;
  font-weight: 700;
}

.inquiry-field__meta small:last-child {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.inquiry-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 2px 0 26px;
  color: #606074;
  font-size: 0.74rem;
  line-height: 1.5;
}

.inquiry-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--brand-primary);
}

.inquiry-consent a {
  color: #4545d7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inquiry-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.inquiry-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.inquiry-actions button,
.inquiry-whatsapp {
  display: inline-flex;
  min-height: 54px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: var(--brand-dark);
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 999px;
  font-weight: 700;
}

.inquiry-actions button:hover {
  background: var(--brand-mint);
  border-color: var(--brand-mint);
}

.inquiry-whatsapp {
  color: #082d19;
  background: #25d366;
  border-color: #25d366;
}

.inquiry-whatsapp:hover {
  color: #082d19;
  background: #7be6a4;
  border-color: #7be6a4;
}

.inquiry-actions button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  flex-basis: 100%;
  min-height: 1.3em;
  margin: 0;
  color: #5c5c70;
  font-size: 0.78rem;
}

.form-status.is-success { color: #126343; }
.form-status.is-error { color: #9d1f35; }

.inquiry-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.56);
  background: #07070d;
  font-size: 0.76rem;
}

.inquiry-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inquiry-footer p { margin: 0; }
.inquiry-footer a:hover { color: var(--brand-mint); }

@media (max-width: 1040px) {
  .offer-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
    gap: 48px;
  }

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

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

  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-intro {
    position: static;
    max-width: 760px;
  }

  .inquiry-form {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .offer-hero,
  .offer-hero__grid {
    min-height: auto;
  }

  .offer-hero__grid,
  .offer-section-heading {
    grid-template-columns: 1fr;
  }

  .offer-hero__grid {
    gap: 54px;
  }

  .offer-hero__card {
    width: min(100%, 560px);
    min-height: 350px;
  }

  .offer-hero__mark {
    min-height: 180px;
  }

  .offer-section-heading {
    gap: 22px;
  }

  .offer-package-switch {
    grid-template-columns: 1fr;
  }

  .offer-billing-switch {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .offer-billing-switch > p {
    width: 100%;
  }

  .offer-package-comparison__heading {
    grid-template-columns: 1fr;
  }

  .offer-plan-grid {
    grid-template-columns: 1fr;
  }

  .offer-package-grid,
  .offer-media-grid {
    grid-template-columns: 1fr;
  }

  .offer-media-card--featured { grid-column: auto; }

  .offer-plan-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .inquiry-shell {
    width: min(100% - 28px, 560px);
  }

  .inquiry-header__inner {
    min-height: 72px;
  }

  .inquiry-back {
    font-size: 0.74rem;
  }

  .offer-hero__grid {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .offer-hero__copy h1 {
    font-size: clamp(2.75rem, 14vw, 4.35rem);
  }

  .offer-hero__actions,
  .offer-button {
    width: 100%;
  }

  .offer-hero__card {
    min-height: 320px;
    padding: 23px;
    border-radius: 25px;
  }

  .offer-details,
  .offer-media,
  .offer-pricing,
  .inquiry-section {
    padding: 72px 0;
  }

  .offer-section-heading h2,
  .inquiry-intro h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .offer-feature-grid,
  .offer-feature-group__items,
  .inquiry-fields--two {
    grid-template-columns: 1fr;
  }

  .offer-package-switch {
    padding: 18px;
    border-radius: 20px;
  }

  .offer-package-switch > div {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-package-switch a {
    min-height: 54px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .offer-billing-switch {
    margin-top: 0;
  }

  .offer-billing-switch > span {
    width: 100%;
  }

  .offer-billing-switch > div {
    width: 100%;
  }

  .offer-billing-switch a {
    flex: 1;
    justify-content: center;
  }

  .offer-package-comparison {
    padding: 18px;
    border-radius: 22px;
  }

  .offer-package-comparison__scroll {
    border-radius: 15px;
  }

  .offer-feature {
    min-height: 0;
  }

  .offer-feature-group summary {
    grid-template-columns: 28px minmax(0, 1fr) 26px;
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .offer-feature-group summary > small {
    grid-column: 2;
    grid-row: 2;
  }

  .offer-feature-group summary > i {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .offer-feature > span {
    margin-bottom: 28px;
  }

  .offer-plan-card {
    padding: 24px;
    border-radius: 21px;
  }

  .offer-package-card__heading,
  .offer-package-card__includes,
  .offer-package-card__prices {
    padding-right: 22px;
    padding-left: 22px;
  }

  .offer-package-card__includes ul,
  .offer-package-price {
    grid-template-columns: 1fr;
  }

  .offer-package-price > a { width: 100%; }

  .inquiry-form {
    padding: 26px 18px;
    border-radius: 21px;
  }

  .inquiry-selection-help,
  .inquiry-field__meta,
  .inquiry-actions,
  .inquiry-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-actions button,
  .inquiry-whatsapp {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
