:root {
  color-scheme: light;
  --color-pixel-blue: #5f86ff;
  --color-pixel-blue-deep: #4269df;
  --color-deep-plum: #171717;
  --color-ink: #070707;
  --color-muted: #4f4d49;
  --color-soft: #85817a;
  --color-paper: #f5f1ea;
  --color-canvas: #e8e2da;
  --color-card: rgba(255, 255, 255, 0.78);
  --color-card-solid: #ffffff;
  --color-line: rgba(5, 5, 5, 0.12);
  --color-line-strong: rgba(5, 5, 5, 0.2);
  --shadow-soft: 0 18px 54px rgba(29, 24, 18, 0.12);
  --shadow-card: 0 18px 44px rgba(35, 30, 24, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1180px;
  --header-h: 82px;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --color-ink: #f6f7fb;
  --color-muted: rgba(246, 247, 251, 0.72);
  --color-soft: rgba(246, 247, 251, 0.54);
  --color-paper: #101927;
  --color-canvas: #07111d;
  --color-card: rgba(15, 25, 40, 0.72);
  --color-card-solid: #101927;
  --color-line: rgba(255, 255, 255, 0.16);
  --color-line-strong: rgba(255, 255, 255, 0.28);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 20px 54px rgba(0, 0, 0, 0.22);
}

body.site-body a[href],
body.site-body button,
body.site-body .button,
body.site-body [role="button"],
body.site-body summary,
body.site-body label,
body.site-body input[type="button"],
body.site-body input[type="submit"],
body.site-body input[type="reset"],
body.site-body input[type="checkbox"],
body.site-body input[type="radio"],
body.site-body input[type="range"],
body.site-body input[type="file"],
body.site-body input[type="color"],
body.site-body select {
  cursor: pointer !important;
}

body.site-body input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]):not([type="color"]),
body.site-body textarea {
  cursor: text !important;
}

body.site-body button:disabled,
body.site-body .button[disabled],
body.site-body input:disabled,
body.site-body select:disabled,
body.site-body textarea:disabled {
  cursor: not-allowed !important;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--color-canvas);
}

body.site-body {
  min-width: 320px;
  margin: 0;
  color: var(--color-ink);
  background: var(--color-canvas);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

html[data-theme="dark"] body.site-body {
  background:
    radial-gradient(circle at 20% 0%, rgba(95, 134, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #091523, #07111d 42%, #0b1018);
}

body.site-body,
body.site-body *:not(input):not(textarea):not(select):not(option) {
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}

body.site-body a,
body.site-body button,
body.site-body [role="button"],
body.site-body label,
body.site-body summary {
  cursor: pointer;
}

body.site-body input,
body.site-body textarea,
body.site-body select,
body.site-body option {
  cursor: text;
  -webkit-user-select: text;
  user-select: text;
}

body.site-body select,
body.site-body input[type="checkbox"],
body.site-body input[type="radio"],
body.site-body input[type="date"],
body.site-body button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
}

[hidden] {
  display: none !important;
}

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

p,
h1,
h2,
h3,
ul,
ol,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

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

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

.narrow {
  max-width: 760px;
}

.section {
  padding-block: clamp(72px, 9vw, 132px);
}

.spaced-top {
  margin-top: 20px;
}

.eyebrow,
.badge,
.pricing-case-kicker,
.pricing-pack-badge {
  display: inline-flex;
  align-items: center;
  color: rgba(5, 5, 5, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .badge,
html[data-theme="dark"] .pricing-case-kicker,
html[data-theme="dark"] .pricing-pack-badge {
  color: rgba(246, 247, 251, 0.72);
}

.lead {
  max-width: 760px;
  color: var(--color-muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.35;
}

.micro-note,
.field-hint {
  color: rgba(5, 5, 5, 0.62);
  font-size: 14px;
  font-weight: 650;
}

.no-wrap {
  white-space: nowrap;
}

.button,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius-md);
  padding: 11px 18px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42) inset;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button-primary,
button[type="submit"],
.hero-actions .button:first-child,
.visual-hero-actions .button:first-child,
.pricing-intro-actions .button:first-child,
.pricing-quick-actions .button:first-child,
.pricing-pack-link-primary {
  border-color: var(--color-pixel-blue);
  color: #fff;
  background: var(--color-pixel-blue);
  box-shadow: 0 16px 34px rgba(95, 134, 255, 0.24);
}

.button-secondary,
.hero-actions .button-secondary,
.visual-hero-actions .button-secondary,
.pricing-intro-actions .button-secondary {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.82);
}

html[data-theme="dark"] .button,
html[data-theme="dark"] button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

html[data-theme="dark"] .button-primary,
html[data-theme="dark"] button[type="submit"],
html[data-theme="dark"] .hero-actions .button:first-child,
html[data-theme="dark"] .visual-hero-actions .button:first-child,
html[data-theme="dark"] .pricing-intro-actions .button:first-child,
html[data-theme="dark"] .pricing-quick-actions .button:first-child,
html[data-theme="dark"] .pricing-pack-link-primary {
  border-color: rgba(127, 164, 255, 0.78);
  background: linear-gradient(145deg, #7fa4ff, var(--color-pixel-blue));
  color: #fff;
  box-shadow: 0 18px 42px rgba(95, 134, 255, 0.32);
}

html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] .hero-actions .button-secondary,
html[data-theme="dark"] .visual-hero-actions .button-secondary,
html[data-theme="dark"] .pricing-intro-actions .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-ink);
}

.button-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.card,
.form-card,
.table-card,
.mini-card,
.icon-card,
.pricing-case-card,
.pricing-pack-summary,
.pricing-pack-table-card,
.seo-links-card,
.pricing-cta-card,
.seo-cta-card,
.quote-custom-form,
.wifi-questionnaire-card,
.starlink-pack-card,
.services-card,
.services-editorial-note,
.pricing-intro-panel {
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.card,
.form-card,
.table-card,
.mini-card,
.icon-card,
.pricing-case-card,
.pricing-pack-summary,
.pricing-pack-table-card,
.seo-links-card,
.pricing-cta-card,
.seo-cta-card,
.quote-custom-form,
.wifi-questionnaire-card,
.starlink-pack-card {
  padding: clamp(22px, 3vw, 34px);
}

html[data-theme="dark"] .card,
html[data-theme="dark"] .form-card,
html[data-theme="dark"] .table-card,
html[data-theme="dark"] .mini-card,
html[data-theme="dark"] .icon-card,
html[data-theme="dark"] .seo-faq-card,
html[data-theme="dark"] .pricing-case-card,
html[data-theme="dark"] .pricing-pack-summary,
html[data-theme="dark"] .pricing-pack-table-card,
html[data-theme="dark"] .seo-links-card,
html[data-theme="dark"] .pricing-cta-card,
html[data-theme="dark"] .seo-cta-card,
html[data-theme="dark"] .quote-custom-form,
html[data-theme="dark"] .wifi-questionnaire-card,
html[data-theme="dark"] .starlink-pack-card,
html[data-theme="dark"] .services-card,
html[data-theme="dark"] .services-editorial-note,
html[data-theme="dark"] .pricing-intro-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--color-card);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading h1,
.section-heading h2,
.editorial-hero h1,
.legal-hero h1,
.zone-hero h1,
.pricing-intro h1 {
  font-family: var(--font-serif);
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.section-heading h2,
.compact-heading h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.section-heading .lead,
.section-heading p,
.editorial-hero .lead {
  margin-top: 18px;
}

.compact-heading {
  margin-bottom: 22px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  background: rgba(232, 226, 218, 0.88);
  backdrop-filter: blur(16px) saturate(1.08);
}

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(7, 17, 29, 0.78);
}

.header-inner {
  position: relative;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo-image {
  display: block;
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 28px rgba(5, 5, 5, 0.04);
}

html[data-theme="dark"] .main-nav {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(5, 5, 5, 0.72);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

html[data-theme="dark"] .main-nav a {
  color: rgba(246, 247, 251, 0.72);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.8);
}

html[data-theme="dark"] .main-nav a.active,
html[data-theme="dark"] .main-nav a:hover {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.13);
}

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

.header-callback-cta,
.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 0 18px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.header-callback-cta {
  border: 1px solid rgba(5, 5, 5, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.header-cta,
.header-callback-cta {
  border-color: rgba(95, 134, 255, 0.72);
  color: #fff;
  background: var(--color-pixel-blue);
  box-shadow: 0 14px 30px rgba(95, 134, 255, 0.22);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.header-callback-label-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(95, 134, 255, 0.72);
  border-radius: var(--radius-md);
  padding: 0;
  background: var(--color-pixel-blue);
  box-shadow: 0 14px 30px rgba(95, 134, 255, 0.22);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav-head,
.mobile-nav-close,
.mobile-nav-callback,
.mobile-nav-cta {
  display: none;
}

.main-nav .mobile-nav-callback,
.main-nav .mobile-nav-cta {
  display: none;
}

/* Shared visual heroes */
.visual-hero,
.home-manifesto-hero,
.pro-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  background: var(--color-canvas);
}

.visual-hero-frame,
.home-manifesto-panel {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
}

.visual-hero-media,
.visual-hero-media picture,
.visual-hero-media img,
.home-manifesto-visual,
.home-manifesto-visual picture,
.home-manifesto-visual img,
.pro-hero-media,
.pro-hero-media picture,
.pro-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-hero-media picture,
.home-manifesto-visual picture,
.pro-hero-media picture {
  display: block;
}

.visual-hero-media img,
.home-manifesto-visual img,
.pro-hero-media img {
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.visual-hero-media::after,
.home-manifesto-visual::after,
.pro-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232, 226, 218, 0.82) 0%, rgba(232, 226, 218, 0.46) 36%, rgba(232, 226, 218, 0.16) 66%, rgba(232, 226, 218, 0.64) 100%),
    linear-gradient(90deg, rgba(232, 226, 218, 0.52), rgba(232, 226, 218, 0.06));
}

html[data-theme="dark"] .visual-hero-media::after,
html[data-theme="dark"] .home-manifesto-visual::after,
html[data-theme="dark"] .pro-hero-media::after {
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.82) 0%, rgba(7, 17, 29, 0.42) 38%, rgba(7, 17, 29, 0.16) 66%, rgba(7, 17, 29, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 17, 29, 0.78), rgba(7, 17, 29, 0.1) 62%);
}

.visual-hero-copy {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--header-h));
  width: min(760px, 58vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(70px, 9vh, 112px) clamp(54px, 6vw, 118px);
}

.visual-hero-copy h1,
.home-manifesto-title h1 {
  max-width: 11.5ch;
  font-family: var(--font-ui);
  font-size: clamp(62px, 6vw, 104px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.visual-hero-copy p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(5, 5, 5, 0.72);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 750;
  line-height: 1.24;
}

html[data-theme="dark"] .visual-hero-copy p,
html[data-theme="dark"] .pro-hero-copy p,
html[data-theme="dark"] .lead,
html[data-theme="dark"] .micro-note,
html[data-theme="dark"] .field-hint {
  color: rgba(246, 247, 251, 0.74);
}

.visual-hero-actions,
.hero-actions,
.pricing-intro-actions,
.pricing-quick-actions,
.inline-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.visual-hero-wifi .visual-hero-media img {
  object-position: center;
}

.visual-hero-services .visual-hero-media img {
  object-position: center;
}

.visual-hero-starlink .visual-hero-media img {
  object-position: center;
}

.visual-hero-ev .visual-hero-media img {
  object-position: center;
}

/* Home */
.home-manifesto-hero .container {
  width: 100%;
  max-width: none;
}

.home-manifesto-panel {
  isolation: isolate;
}

.home-manifesto-title {
  position: relative;
  z-index: 2;
  width: min(760px, 58vw);
  padding: clamp(70px, 9vh, 112px) clamp(54px, 6vw, 118px) 0;
}

.home-manifesto-title h1 {
  max-width: 10.8ch;
}

.home-manifesto-copy {
  position: absolute;
  right: clamp(54px, 6vw, 118px);
  bottom: clamp(42px, 8vh, 92px);
  z-index: 2;
  width: min(520px, calc(100% - 96px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-xl);
  background: rgba(238, 234, 228, 0.42);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px) saturate(1.05);
}

html[data-theme="dark"] .home-manifesto-copy {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(9, 16, 27, 0.62);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
}

.home-manifesto-copy > p {
  color: rgba(5, 5, 5, 0.76);
  font-size: 18px;
  font-weight: 900;
}

html[data-theme="dark"] .home-manifesto-copy > p {
  color: rgba(246, 247, 251, 0.9);
}

.home-hero-intents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.home-hero-intents a {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(5, 5, 5, 0.09);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.home-hero-intents span {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.08;
}

.home-hero-intents strong {
  color: rgba(5, 5, 5, 0.54);
  font-size: 13px;
  font-weight: 850;
}

.home-problem-search {
  margin-top: 16px;
}

.home-problem-search label {
  display: block;
  margin-bottom: 10px;
  color: rgba(5, 5, 5, 0.74);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-problem-search-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 50px;
  align-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.86);
  overflow: visible;
}

.home-problem-search-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 18px 6px 18px 18px;
  color: var(--color-ink);
  background: transparent;
  font-size: 17px;
  text-overflow: ellipsis;
}

.home-problem-search-row input:focus {
  border-color: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .home-problem-search-row,
html[data-theme="dark"] .home-hero-intents a {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(10, 18, 30, 0.62);
  color: var(--color-ink);
}

html[data-theme="dark"] .home-problem-search-row input {
  color: var(--color-ink);
  background: transparent;
}

html[data-theme="dark"] .home-problem-search-row input::placeholder,
html[data-theme="dark"] .home-hero-intents span {
  color: rgba(246, 247, 251, 0.9);
}

html[data-theme="dark"] .home-hero-intents strong,
html[data-theme="dark"] .home-problem-search label,
html[data-theme="dark"] .home-problem-search-hint {
  color: rgba(246, 247, 251, 0.82);
}

.home-problem-search-row button {
  width: 42px;
  height: 42px;
  min-height: 42px;
  margin-right: 6px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(5, 5, 5, 0.28);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: color 0.18s ease;
}

.home-problem-search-row button:hover,
.home-problem-search-row button:focus-visible {
  transform: none;
  color: var(--color-pixel-blue);
  background: transparent;
}

.pixel-p-mark {
  width: 25px;
  height: 25px;
}

.pixel-p-mark-main {
  fill: currentColor;
}

.pixel-p-mark-light {
  fill: rgba(255, 255, 255, 0.6);
}

.pixel-p-mark-cut {
  fill: rgba(5, 5, 5, 0.12);
}

html[data-theme="dark"] .pixel-p-mark-cut {
  fill: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .pixel-p-mark-light {
  fill: rgba(255, 255, 255, 0.78);
}

.home-problem-search-hint {
  margin-top: 10px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 13px;
  font-weight: 750;
}

.home-problems-section {
  padding-block: clamp(86px, 12vw, 150px);
  background: var(--color-canvas);
}

.home-problems-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: center;
}

.home-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 22px;
}

.home-problem-card {
  --problem-card-order: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 242, 235, 0.74)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 20px 52px rgba(29, 24, 18, 0.1);
}

.home-problem-card:nth-child(2) {
  --problem-card-order: 1;
}

.home-problem-card:nth-child(3) {
  --problem-card-order: 2;
}

.home-problem-card:nth-child(4) {
  --problem-card-order: 3;
}

.home-problem-card:nth-child(5) {
  --problem-card-order: 4;
}

.home-problem-card:nth-child(6) {
  --problem-card-order: 5;
}

.home-problem-card:nth-child(7) {
  --problem-card-order: 6;
}

.home-problem-card:nth-child(8) {
  --problem-card-order: 7;
}

.home-problem-card::before {
  content: attr(data-index);
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: -1;
  color: rgba(95, 134, 255, 0.1);
  font-family: var(--font-serif);
  font-size: 74px;
  font-weight: 600;
  line-height: 0.8;
}

.home-problem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(95, 134, 255, 0.76), rgba(66, 105, 223, 0.08) 38%, transparent 72%) top left / 100% 3px no-repeat,
    radial-gradient(circle at 18% 8%, rgba(95, 134, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 92%, rgba(5, 5, 5, 0.05), transparent 38%);
  opacity: 0.86;
}

.home-problem-card span {
  color: rgba(5, 5, 5, 0.12);
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 600;
  line-height: 0.9;
}

.home-problem-card h3 {
  max-width: 8.8ch;
  font-family: var(--font-serif);
  font-size: clamp(31px, 2.1vw, 42px);
  font-weight: 600;
  line-height: 0.92;
}

.home-problem-card p {
  max-width: 24ch;
  margin-top: 22px;
  color: rgba(5, 5, 5, 0.66);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.38;
}

html[data-theme="dark"] .home-problem-card {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--color-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 22px 58px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .home-problem-card::before,
html[data-theme="dark"] .home-problem-card span {
  color: rgba(246, 247, 251, 0.12);
}

html[data-theme="dark"] .home-problem-card p {
  color: rgba(246, 247, 251, 0.72);
}

.home-problems-progress {
  display: none;
}

@media (min-width: 1920px) {
  .home-problems-section {
    min-height: 320svh;
    padding-block: 0;
  }

  .home-problems-stage {
    position: sticky;
    top: var(--header-h);
    width: min(100% - 96px, 1680px);
    min-height: calc(100svh - var(--header-h));
    grid-template-columns: minmax(330px, 0.44fr) minmax(0, 1.56fr);
    gap: clamp(58px, 5vw, 104px);
  }

  .home-problems-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-problem-card {
    min-height: 308px;
    padding: 30px;
    opacity: 0;
    transform: translateY(34px) scale(0.975);
    filter: blur(8px);
    transition:
      opacity 0.58s ease,
      transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 0.58s ease,
      box-shadow 0.24s ease,
      border-color 0.24s ease;
    transition-delay: calc(var(--problem-card-order) * 24ms);
    will-change: opacity, transform, filter;
  }

  .home-problem-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .home-problem-card.is-active {
    border-color: rgba(95, 134, 255, 0.42);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.86) inset,
      0 26px 72px rgba(35, 30, 24, 0.16);
  }

  .home-problems-progress {
    position: absolute;
    right: 0;
    bottom: clamp(28px, 5vh, 58px);
    display: block;
    width: min(100%, 980px);
    height: 3px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.1);
  }

  .home-problems-progress span {
    display: block;
    width: calc(var(--problems-progress, 0) * 100%);
    height: 100%;
    border-radius: inherit;
    background: var(--color-pixel-blue);
    transition: width 0.08s linear;
  }
}

@media (min-width: 1101px) and (max-width: 1919px) {
  .home-problems-stage {
    width: min(100% - 64px, 1480px);
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1.52fr);
    gap: clamp(36px, 5vw, 76px);
  }

  .home-problems-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .home-problem-card {
    min-height: 210px;
  }

  .home-problem-card p {
    max-width: 42ch;
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-problem-card {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.home-contact-section {
  background: var(--color-paper);
}

.home-contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

form.home-contact-form.form-card {
  margin-block: 30px 0;
}

.home-contact-form label {
  gap: 10px;
  font-size: 16px;
  line-height: 1.15;
}

.home-contact-form input,
.home-contact-form select,
.home-contact-form textarea {
  font-size: 16px;
}

.home-contact-message {
  height: 180px;
  min-height: 180px;
  max-height: 180px;
  resize: none;
}

.home-contact-form .checkbox {
  justify-content: center;
  margin-block: 18px;
  color: rgba(5, 5, 5, 0.68);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.28;
}

html[data-theme="dark"] .home-contact-form .checkbox {
  color: rgba(246, 247, 251, 0.72);
}

.home-contact-form .checkbox input {
  width: 16px;
  min-height: 16px;
  margin-top: 1px;
}

.home-contact-consent-note {
  margin: 12px 0 0;
  color: rgba(5, 5, 5, 0.48);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.32;
  text-align: center;
}

.home-contact-submit {
  width: 100%;
  min-height: 54px;
}

/* Pro */
.pro-hero {
  min-height: calc(100svh - var(--header-h));
}

.pro-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
}

.pro-hero-copy {
  width: min(640px, 54vw);
}

.pro-hero-copy h1 {
  max-width: 11ch;
  font-family: var(--font-serif);
  font-size: clamp(70px, 6vw, 108px);
  font-weight: 600;
  line-height: 0.92;
}

.pro-hero-copy p {
  margin-top: 22px;
  color: rgba(5, 5, 5, 0.74);
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 850;
  line-height: 1.22;
}

.pro-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.pro-hero-points li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 900;
}

.pro-editorial-section,
.pro-method-section,
.pro-form-section {
  padding-block: clamp(52px, 7vw, 92px);
}

.pro-feature-scroll-inner,
.pro-card-grid {
  display: grid;
  gap: 20px;
}

.pro-feature-card,
.pro-small-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 26px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 230, 0.72)),
    var(--color-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 22px 54px rgba(29, 24, 18, 0.1);
}

html[data-theme="dark"] .pro-feature-card,
html[data-theme="dark"] .pro-small-card {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    var(--color-card);
  box-shadow: var(--shadow-card);
}

.pro-feature-card span {
  color: rgba(5, 5, 5, 0.18);
  font-family: var(--font-serif);
  font-size: 56px;
}

.pro-feature-card h3,
.pro-small-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 2.25vw, 42px);
  font-weight: 900;
  line-height: 0.96;
}

.pro-feature-card p,
.pro-small-card p {
  margin-top: 14px;
  color: rgba(5, 5, 5, 0.66);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.36;
}

.pro-large-title {
  max-width: 900px;
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
}

.pro-form-section {
  position: relative;
  overflow: hidden;
  background: var(--color-paper);
}

html[data-theme="dark"] .home-contact-section,
html[data-theme="dark"] .pro-form-section {
  background: rgba(255, 255, 255, 0.03);
}

.pro-form-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.pro-form-layout {
  display: grid;
}

.pro-form-copy {
  max-width: 520px;
  margin-bottom: 0;
}

.pro-form-copy h2 {
  max-width: 10ch;
}

.pro-form-copy .lead {
  color: rgba(5, 5, 5, 0.68);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 820;
  line-height: 1.25;
}

.pro-form-card {
  margin: 0;
}

.pro-form-card .checkbox {
  display: none;
}

.pro-submit {
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  padding-top: 18px;
}

.pro-consent-note {
  margin-top: 10px;
  margin-bottom: 0;
}

/* Quote acceptance */
.quote-accept-page {
  background: var(--color-canvas);
  padding-block: clamp(56px, 7vw, 88px) clamp(48px, 7vw, 92px);
}

.quote-accept-page > .container {
  max-width: 1120px;
}

.quote-public-card {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(24px, 4vw, 42px);
}

.quote-public-card-electricite {
  gap: clamp(18px, 2.4vw, 28px);
  border-color: rgba(25, 97, 92, 0.16);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(25, 97, 92, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 97, 92, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 253, 244, 0.98), rgba(244, 239, 224, 0.97));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: 0 18px 40px rgba(25, 97, 92, 0.08);
  font-family: var(--font-sans);
}

.quote-public-card-electricite .eyebrow {
  color: #19615c;
  letter-spacing: 0.04em;
}

.quote-public-card-electricite .quote-public-head h2 {
  color: #152620;
  font-family: var(--font-sans);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.quote-public-card-electricite .quote-technician-card {
  border-color: rgba(25, 97, 92, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
}

.quote-public-card-electricite .quote-public-step.is-done::before,
.quote-public-card-electricite .quote-public-step.is-done::after,
.quote-public-card-electricite .quote-public-step.is-current::before {
  background: #19615c;
}

.quote-public-card-electricite .quote-public-step.is-done .quote-public-step-dot {
  border-color: #19615c;
  background: #19615c;
  box-shadow: 0 8px 18px rgba(25, 97, 92, 0.20);
}

.quote-public-card-electricite .quote-public-step.is-current .quote-public-step-dot {
  border-color: #d7a93a;
  background: #d7a93a;
  box-shadow: 0 8px 18px rgba(215, 169, 58, 0.24);
}

.quote-public-card-electricite .quote-public-confirm {
  border: 1px solid rgba(25, 97, 92, 0.14);
  border-left: 5px solid #d7a93a;
  border-radius: 4px;
  background: rgba(25, 97, 92, 0.08);
}

.quote-public-card-electricite .quote-mobile-table-card {
  border: 1px solid rgba(25, 97, 92, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.quote-public-card-electricite .quote-mobile-table th,
.quote-public-card-electricite .quote-mobile-table td {
  border-color: rgba(25, 97, 92, 0.12);
}

.quote-public-card-electricite .quote-mobile-table th {
  color: #19615c;
}

.quote-public-card-electricite .quote-public-total-row strong {
  color: #0f1d19;
}

.quote-public-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.quote-public-head h2 {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.94;
}

.quote-technician-card {
  min-width: 238px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
}

.quote-technician-card img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.quote-technician-card span {
  display: block;
  color: rgba(5, 5, 5, 0.56);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.quote-technician-card strong {
  display: block;
  margin-top: 5px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 900;
}

.quote-public-main {
  display: grid;
  gap: 22px;
}

.quote-public-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.quote-public-progress::before {
  content: "";
  position: absolute;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  top: 12px;
  height: 2px;
  background: rgba(5, 5, 5, 0.1);
}

.quote-public-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.quote-public-step::before,
.quote-public-step::after {
  content: "";
  position: absolute;
  top: 12px;
  height: 2px;
  background: transparent;
}

.quote-public-step::before {
  left: -1px;
  right: calc(50% + 13px);
}

.quote-public-step::after {
  left: calc(50% + 13px);
  right: -1px;
}

.quote-public-step:first-child::before,
.quote-public-step:last-child::after {
  display: none;
}

.quote-public-step.is-done::before,
.quote-public-step.is-done::after,
.quote-public-step.is-current::before {
  background: #2ca664;
}

.quote-public-step.is-current::after {
  background: transparent;
}

.quote-public-step-dot {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: inline-flex;
  border: 2px solid rgba(5, 5, 5, 0.14);
  border-radius: 50%;
  background: #fff;
}

.quote-public-step.is-done .quote-public-step-dot {
  border-color: #2ca664;
  background: #2ca664;
  box-shadow: 0 8px 18px rgba(44, 166, 100, 0.22);
}

.quote-public-step.is-current .quote-public-step-dot {
  border-color: var(--color-pixel-blue);
  background: var(--color-pixel-blue);
  box-shadow: 0 8px 18px rgba(95, 134, 255, 0.24);
}

.quote-public-step.is-done .quote-public-step-dot::after {
  content: "";
  width: 7px;
  height: 11px;
  margin: 4px auto 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.quote-public-step strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.quote-public-step small {
  display: block;
  margin-top: 4px;
  color: rgba(5, 5, 5, 0.55);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
}

.quote-mobile-table-card {
  overflow: hidden;
}

.quote-mobile-table {
  width: 100%;
  border-collapse: collapse;
}

.quote-mobile-table th,
.quote-mobile-table td {
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.quote-mobile-table th {
  color: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-mobile-table td {
  font-weight: 700;
}

.quote-public-total-row td {
  border-bottom: 0;
}

.quote-public-total-row td:last-child {
  text-align: right;
}

.quote-public-total-row span {
  display: block;
  color: rgba(5, 5, 5, 0.58);
  font-size: 13px;
  font-weight: 850;
}

.quote-public-total-row strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
}

.quote-public-actions {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  padding-top: 22px;
}

.quote-withdrawal-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(5, 5, 5, 0.7);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.quote-withdrawal-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--color-pixel-blue);
}

.quote-public-actions .button {
  width: 100%;
  min-height: 54px;
}

.quote-public-confirm {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(95, 134, 255, 0.1);
  color: var(--color-ink);
  font-weight: 780;
}

.quote-public-next-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.quote-public-next-icon {
  flex: 0 0 auto;
}

.quote-public-next-copy h3 {
  font-size: 22px;
  font-weight: 900;
}

.quote-public-next-copy p {
  margin-top: 6px;
  color: rgba(5, 5, 5, 0.68);
  font-weight: 650;
}

.quote-public-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.quote-reschedule-form {
  margin: 0;
}

.quote-reschedule-button {
  min-height: 38px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink);
  font-weight: 900;
}

.quote-accept-preview {
  padding: 0;
}

.quote-accept-preview > .container {
  max-width: none;
  width: 100%;
  padding-inline: 0;
}

.quote-accept-preview .quote-public-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  .quote-accept-page {
    padding-top: 16px;
  }

  .quote-public-head {
    display: grid;
  }

  .quote-technician-card {
    min-width: 0;
    width: 100%;
  }

  .quote-public-progress {
    position: relative;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quote-public-progress::before {
    left: 12px;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 2px;
    height: auto;
  }

  .quote-public-step {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 22px;
    justify-items: start;
    text-align: left;
  }

  .quote-public-step::before,
  .quote-public-step::after {
    left: 12px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .quote-public-step::before {
    top: -10px;
    bottom: calc(100% - 12px);
  }

  .quote-public-step::after {
    top: 24px;
    bottom: -10px;
  }

  .quote-public-step > div {
    align-self: center;
  }

  .quote-public-next-actions {
    display: grid;
    gap: 10px;
  }

  .quote-public-next-actions .button,
  .quote-public-next-actions .quote-reschedule-form,
  .quote-public-next-actions .quote-reschedule-button {
    width: 100%;
  }

  .quote-public-next-actions .button,
  .quote-public-next-actions .quote-reschedule-button {
    min-height: 52px;
    font-size: 16px;
  }

  .quote-mobile-table thead {
    display: none;
  }

  .quote-mobile-table,
  .quote-mobile-table tbody,
  .quote-mobile-table tr,
  .quote-mobile-table td {
    display: block;
    width: 100%;
  }

  .quote-mobile-table tr {
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
    padding: 14px;
  }

  .quote-mobile-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 0;
    padding: 5px 0;
  }

  .quote-mobile-table td::before {
    content: attr(data-label);
    color: rgba(5, 5, 5, 0.55);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .quote-public-total-row td:empty {
    display: none;
  }
}

.pro-card-section .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.pro-card-section .section-heading h2,
.pro-card-section .pro-large-title {
  max-width: 12ch;
}

.pro-offer-section .pro-small-card h3 {
  max-width: 10ch;
}

.pro-offer-section .wifi-card-watermark {
  color: rgba(95, 134, 255, 0.1);
}

.pro-method-inner {
  display: grid;
  gap: 22px;
}

.pro-method-inner > div h2 {
  max-width: 16ch;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.95;
}

.pro-method-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pro-method-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 38px);
  background: rgba(255, 255, 255, 0.84);
}

.pro-method-list li span {
  grid-row: 1 / span 2;
  color: rgba(5, 5, 5, 0.18);
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 0.9;
}

.pro-method-list li strong {
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.1;
}

.pro-method-list li p {
  color: rgba(5, 5, 5, 0.82);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.42;
}

html[data-theme="dark"] .pro-method-list li {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--color-card);
}

html[data-theme="dark"] .pro-method-list li span {
  color: rgba(246, 247, 251, 0.16);
}

html[data-theme="dark"] .pro-method-list li p {
  color: rgba(246, 247, 251, 0.72);
}

@media (min-width: 901px) {
  .pro-card-section {
    min-height: 190svh;
    padding-block: 0;
  }

  .pro-card-section .wifi-card-stage {
    position: sticky;
    top: var(--header-h);
    min-height: calc(100svh - var(--header-h));
    align-content: center;
    gap: clamp(26px, 4vh, 44px);
    padding-block: clamp(28px, 5vh, 64px);
  }

  .pro-scroll-card {
    min-height: min(34vh, 330px);
    opacity: 0;
    transform: translateY(34px) scale(0.975);
    filter: blur(8px);
    transition:
      opacity 0.58s ease,
      transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 0.58s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
    will-change: opacity, transform, filter;
  }

  .pro-scroll-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .pro-scroll-card.is-active {
    border-color: rgba(95, 134, 255, 0.4);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.82) inset,
      0 26px 66px rgba(29, 24, 18, 0.14);
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 900px) {
  .pro-scroll-card {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Content grids */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-block: clamp(34px, 5vw, 64px) clamp(18px, 2vw, 28px);
}

.services-card {
  min-height: 662px;
  display: grid;
  grid-template-rows: 82px 96px 92px 122px 56px 46px;
  align-content: center;
  align-items: center;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.services-page-cta-card,
.pricing-cta-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(360px, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  padding: clamp(18px, 2.2vw, 26px);
}

.services-page-cta-card .section-heading,
.pricing-cta-card .section-heading {
  margin-bottom: 0;
}

.services-page-cta-card .section-heading h2,
.pricing-cta-card .section-heading h2 {
  max-width: 14ch;
  font-family: var(--font-ui);
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 900;
  line-height: 1.04;
}

.pricing-page .pricing-cta-card .section-heading h2 {
  font-size: clamp(24px, 2.25vw, 32px);
}

.services-page-cta-card .pricing-quick-actions,
.pricing-cta-card .pricing-quick-actions {
  min-height: auto;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  align-content: center;
  align-items: stretch;
  justify-content: stretch;
  gap: 10px;
}

.services-page-cta-card .pricing-quick-action,
.pricing-cta-card .pricing-quick-action {
  width: 100%;
  min-height: 38px;
  padding: 7px 13px;
  border-radius: 10px;
  font-size: 13px;
}

.services-page-cta-card .pricing-quick-action:nth-child(1),
.pricing-cta-card .pricing-quick-action:nth-child(1) {
  grid-column: auto;
  grid-row: auto;
}

.services-page-cta-card .pricing-quick-action:nth-child(2),
.pricing-cta-card .pricing-quick-action:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
}

.services-page-cta-card .pricing-quick-action:nth-child(3),
.pricing-cta-card .pricing-quick-action:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
}

.services-card-top {
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  align-items: center;
  gap: 14px;
}

.services-card h2,
.icon-card h3,
.pricing-case-card h3,
.pricing-pack-summary h3,
.starlink-pack-card h3 {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 900;
  line-height: 1;
}

.services-card h2 {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 10.5ch;
}

.services-card > p:not(.services-result) {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 28ch;
}

.services-card p,
.services-card li,
.icon-card p,
.mini-card p,
.pricing-case-card p,
.pricing-pack-summary p,
.starlink-pack-card p {
  color: var(--color-muted);
  font-weight: 650;
}

.steps {
  display: grid;
  gap: 10px;
}

.services-list {
  width: min(100%, 290px);
  min-height: 122px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: center;
}

.services-list li {
  position: relative;
  min-height: 28px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  text-align: left;
}

.services-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-pixel-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(2px);
}

.services-result {
  width: min(100%, 280px);
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  font-weight: 850 !important;
}

.services-card-actions,
.services-card-actions .button {
  width: 100%;
}

.services-card-actions {
  margin-top: 0;
}

.services-editorial-note {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 412px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(30px, 4vw, 52px);
  color: var(--color-ink);
  background:
    linear-gradient(90deg, rgba(246, 242, 235, 0.94), rgba(246, 242, 235, 0.78) 52%, rgba(246, 242, 235, 0.32)),
    var(--services-note-image) center / cover,
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 20px 52px rgba(29, 24, 18, 0.1);
}

.services-editorial-note-method {
  --services-note-image: url("/public/images/services-method-home-office.webp");
}

.services-editorial-note-network {
  --services-note-image: url("/public/images/services-network-home.webp");
}

.services-editorial-note::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(95, 134, 255, 0.76), rgba(66, 105, 223, 0.08) 38%, transparent 72%) top left / 100% 3px no-repeat,
    radial-gradient(circle at 12% 12%, rgba(95, 134, 255, 0.13), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(5, 5, 5, 0.05), transparent 34%);
}

.services-editorial-note h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 13ch;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 600;
  line-height: 0.95;
}

.services-editorial-note p,
.services-editorial-note .eyebrow {
  color: rgba(5, 5, 5, 0.68);
}

.services-editorial-note .eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  color: rgba(5, 5, 5, 0.62);
}

@media (max-width: 1100px) {
  .services-editorial-note {
    min-height: 280px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-page-cta-card,
  .pricing-cta-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .services-page-cta-card .pricing-quick-actions,
  .pricing-cta-card .pricing-quick-actions {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .services-page-cta-card .pricing-quick-action,
  .pricing-cta-card .pricing-quick-action {
    grid-column: 1 !important;
    grid-row: auto !important;
    transform: none !important;
    min-height: 40px;
  }

  .services-card {
    min-height: auto;
    grid-template-rows: none;
  }

  .services-editorial-note h2 {
    grid-column: 1;
  }

  .services-editorial-note h2 {
    grid-row: 2;
  }
}

.icon-section,
.pricing-section,
.seo-faq-section,
.starlink-pack-section {
  padding-block: clamp(58px, 8vw, 112px);
}

.icon-grid,
.cards-grid,
.pricing-frequent-grid,
.seo-faq-grid,
.starlink-pack-cards {
  display: grid;
  gap: 18px;
}

.icon-grid-3,
.pricing-frequent-grid,
.seo-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-faq-card {
  position: relative;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 26px);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 230, 0.74)),
    var(--color-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 18px 46px rgba(29, 24, 18, 0.09);
}

.seo-faq-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-pixel-blue), rgba(95, 134, 255, 0.08));
  opacity: 0.74;
}

.seo-faq-card-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.seo-faq-index {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(95, 134, 255, 0.13);
  color: var(--color-pixel-blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.seo-faq-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 1.85vw, 30px);
  font-weight: 600;
  line-height: 1.04;
}

.starlink-page .seo-faq-card h3 {
  font-size: clamp(24px, 1.75vw, 28px);
  line-height: 1.05;
}

.seo-faq-card p {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(5, 5, 5, 0.68);
  font-size: 16px;
  font-weight: 690;
  line-height: 1.38;
}

.starlink-page .seo-faq-card:nth-child(2) {
  justify-content: center;
}

.starlink-page .seo-faq-card:nth-child(2) p {
  margin-top: 18px;
}

.starlink-faq-section .seo-faq-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.starlink-faq-section .seo-faq-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-areas:
    "index title"
    "index body";
  column-gap: 22px;
  row-gap: 10px;
  align-items: start;
  padding: clamp(28px, 3.6vw, 42px) clamp(28px, 4vw, 36px);
}

.starlink-faq-section .seo-faq-card::after {
  display: none;
}

.starlink-faq-section .seo-faq-card-head {
  display: contents;
}

.starlink-faq-section .seo-faq-index {
  grid-area: index;
  width: auto;
  height: auto;
  display: block;
  margin-top: -4px;
  border-radius: 0;
  background: transparent;
  color: rgba(5, 5, 5, 0.14);
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 0.92;
}

.starlink-page .starlink-faq-section .seo-faq-card h3 {
  grid-area: title;
  max-width: none;
  font-family: var(--font-ui);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 850;
  line-height: 1.08;
}

.starlink-faq-section .seo-faq-card p,
.starlink-page .starlink-faq-section .seo-faq-card:nth-child(2) p {
  grid-area: body;
  align-self: start;
  max-width: 82ch;
  margin-top: 0;
  padding-top: 0;
  color: rgba(5, 5, 5, 0.86);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.42;
}

.wifi-faq-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(48px, 7vw, 86px) max(32px, calc((100vw - var(--container)) / 2)) clamp(52px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(232, 226, 218, 0), rgba(226, 219, 208, 0.74) 18%, rgba(226, 219, 208, 0.74) 82%, rgba(232, 226, 218, 0));
}

.wifi-faq-section .section-heading {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.wifi-faq-section .section-heading h2 {
  max-width: 100%;
  font-size: clamp(54px, 5vw, 86px);
}

.wifi-faq-section .seo-faq-grid {
  width: min(100%, var(--container));
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 18px;
}

.wifi-faq-section .seo-faq-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-areas:
    "index title"
    "index body";
  column-gap: 22px;
  row-gap: 10px;
  align-items: start;
  padding: clamp(28px, 3.6vw, 42px) clamp(28px, 4vw, 36px);
  border-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(242, 237, 228, 0.82)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 28px 78px rgba(29, 24, 18, 0.13);
}

.wifi-faq-section .seo-faq-card::after,
.wifi-faq-section .seo-faq-card::before {
  display: none;
}

.wifi-faq-section .seo-faq-card-head {
  display: contents;
}

.wifi-faq-section .seo-faq-index {
  grid-area: index;
  width: auto;
  height: auto;
  display: block;
  margin-top: -4px;
  border-radius: 0;
  background: transparent;
  color: rgba(5, 5, 5, 0.14);
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 0.92;
}

.wifi-faq-section .seo-faq-card h3 {
  grid-area: title;
  max-width: none;
  font-family: var(--font-ui);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 850;
  line-height: 1.08;
}

.wifi-faq-section .seo-faq-card p {
  grid-area: body;
  align-self: start;
  max-width: 82ch;
  margin-top: 0;
  padding-top: 0;
  color: rgba(5, 5, 5, 0.86);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.42;
}

html[data-theme="dark"] .wifi-faq-section {
  background:
    linear-gradient(180deg, rgba(6, 14, 24, 0), rgba(14, 25, 40, 0.9) 18%, rgba(14, 25, 40, 0.9) 82%, rgba(6, 14, 24, 0));
}

html[data-theme="dark"] .wifi-faq-section .seo-faq-card {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    var(--color-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 22px 58px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .wifi-faq-section .seo-faq-card p {
  color: rgba(246, 247, 251, 0.72);
}

@media (max-width: 900px) {
  .wifi-faq-section {
    padding-inline: 20px;
  }

  .wifi-faq-section .seo-faq-grid {
    grid-template-columns: 1fr;
  }

  .wifi-faq-section .seo-faq-card {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    padding: 24px 20px;
  }

  .starlink-faq-section .seo-faq-card {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    padding: 24px 20px;
  }
}

.icon-grid-4,
.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}

.wifi-page .icon-section,
.starlink-page .icon-section,
.starlink-page .pricing-section,
.starlink-page .seo-faq-section,
.wifi-page .pricing-section,
.wifi-page .seo-faq-section {
  padding-block: clamp(28px, 3.2vw, 44px);
}

.wifi-card-section,
.starlink-card-section {
  position: relative;
}

.starlink-context-heading {
  max-width: none;
}

.starlink-context-heading .seo-link-item {
  width: 100%;
}

.starlink-context-heading .seo-link-item-arrow {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--color-pixel-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(95, 134, 255, 0.28);
}

.wifi-card-stage {
  display: grid;
  gap: 20px;
}

.wifi-card-section .section-heading,
.starlink-card-section .section-heading {
  margin-bottom: 0;
}

.wifi-feature-card,
.starlink-feature-card {
  min-height: 252px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  isolation: isolate;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 230, 0.72)),
    var(--color-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 22px 54px rgba(29, 24, 18, 0.1);
}

.wifi-card-watermark {
  position: absolute;
  right: -28px;
  bottom: -32px;
  z-index: -1;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  color: rgba(95, 134, 255, 0.11);
  transform: rotate(-7deg);
  pointer-events: none;
}

.wifi-card-watermark .icon {
  width: 100%;
  height: 100%;
  stroke-width: 1.35;
}

.wifi-feature-card .icon-badge,
.starlink-feature-card .icon-badge {
  display: none;
}

.wifi-feature-card h3,
.starlink-feature-card h3 {
  align-self: start;
  max-width: 11ch;
  font-family: var(--font-serif);
  font-size: clamp(33px, 2.5vw, 46px);
  font-weight: 600;
  line-height: 0.94;
}

.wifi-feature-card p,
.starlink-feature-card p {
  align-self: center;
  max-width: 27ch;
  margin-top: 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.36;
}

.starlink-offer-section .starlink-feature-card h3 {
  max-width: 12ch;
  font-size: clamp(28px, 1.75vw, 34px);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.starlink-offer-section .starlink-feature-card p {
  max-width: 23ch;
  font-size: 16px;
}

.starlink-offer-section .starlink-feature-card {
  padding-inline: clamp(20px, 2vw, 28px);
}

@media (min-width: 901px) {
  .wifi-page #wifi-contenu,
  .starlink-page #starlink-contenu {
    width: min(100% - 72px, var(--container));
  }

  .wifi-card-section,
  .starlink-card-section {
    min-height: 230svh;
    padding-block: 0 !important;
  }

  .wifi-card-stage {
    position: sticky;
    top: var(--header-h);
    min-height: calc(100svh - var(--header-h));
    align-content: center;
    gap: clamp(26px, 4vh, 44px);
    padding-block: clamp(28px, 5vh, 64px);
  }

  .wifi-card-section .section-heading h2,
  .starlink-card-section .section-heading h2 {
    max-width: 12ch;
  }

  .wifi-feature-card,
  .starlink-feature-card {
    min-height: min(34vh, 330px);
    opacity: 0;
    transform: translateY(34px) scale(0.975);
    filter: blur(8px);
    transition:
      opacity 0.58s ease,
      transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 0.58s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
    will-change: opacity, transform, filter;
  }

  .wifi-feature-card.is-visible,
  .starlink-feature-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .wifi-feature-card.is-active,
  .starlink-feature-card.is-active {
    border-color: rgba(95, 134, 255, 0.4);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.82) inset,
      0 26px 66px rgba(29, 24, 18, 0.14);
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 900px) {
  .wifi-feature-card,
  .starlink-feature-card {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(5, 5, 5, 0.66);
  background: rgba(255, 255, 255, 0.7);
}

.icon-badge .icon,
.icon {
  width: 30px;
  height: 30px;
}

.icon-card .icon-badge {
  margin-bottom: 22px;
}

.starlink-offer-more {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 13px;
  font-weight: 900;
}

/* Pricing */
.pricing-intro-section {
  padding-block: clamp(44px, 7vw, 84px);
  background:
    linear-gradient(180deg, rgba(245, 241, 234, 0.72), rgba(232, 226, 218, 0)),
    var(--color-canvas);
}

html[data-theme="dark"] .pricing-intro-section {
  background:
    radial-gradient(circle at 72% 18%, rgba(95, 134, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(28, 42, 62, 0.7), rgba(7, 17, 29, 0)),
    var(--color-canvas);
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.pricing-intro-copy h1 {
  max-width: 12.5ch;
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.98;
}

.pricing-intro-copy .lead {
  max-width: 680px;
  margin-top: 18px;
}

.pricing-page .section-heading h2,
.pricing-page .compact-heading h2,
.pricing-case-card h3,
.pricing-pack-summary h3 {
  font-family: var(--font-ui);
  font-weight: 900;
  line-height: 0.98;
}

.pricing-page .section-heading h2,
.pricing-page .compact-heading h2 {
  max-width: 13ch;
  font-size: clamp(36px, 4.8vw, 64px);
}

.pricing-intro-panel {
  padding: clamp(20px, 3vw, 30px);
}

.pricing-rate-summary {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.pricing-rate-summary div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  padding-block: 16px;
}

.pricing-rate-summary div:first-child {
  padding-top: 0;
}

.pricing-rate-summary div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pricing-rate-summary span {
  color: var(--color-ink);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 900;
  line-height: 1.15;
}

.pricing-rate-summary strong {
  color: rgba(5, 5, 5, 0.7);
  font-size: clamp(19px, 1.9vw, 27px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

html[data-theme="dark"] .pricing-rate-summary div {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .pricing-rate-summary strong {
  color: rgba(246, 247, 251, 0.82);
}

.pricing-assurance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
  overflow: hidden;
}

html[data-theme="dark"] .pricing-assurance-strip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-assurance-strip div {
  display: grid;
  gap: 5px;
  justify-items: center;
  border-right: 1px solid rgba(5, 5, 5, 0.08);
  padding: 16px 18px;
  text-align: center;
}

html[data-theme="dark"] .pricing-assurance-strip div {
  border-right-color: rgba(255, 255, 255, 0.12);
}

.pricing-assurance-strip div:last-child {
  border-right: 0;
}

.pricing-assurance-strip strong {
  font-size: 14px;
  font-weight: 900;
}

.pricing-assurance-strip span {
  color: rgba(5, 5, 5, 0.68);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
}

html[data-theme="dark"] .pricing-assurance-strip span {
  color: rgba(246, 247, 251, 0.66);
}

.pricing-case-card {
  min-height: 220px;
}

.pricing-page .pricing-main-section {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(14px, 2vw, 22px);
}

.pricing-page .pricing-packs-section {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(18px, 2.5vw, 32px);
}

.pricing-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.pricing-main-heading {
  margin-bottom: 18px;
}

.pricing-dense-table-card {
  overflow-x: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 40px rgba(29, 24, 18, 0.08);
}

html[data-theme="dark"] .pricing-dense-table-card,
html[data-theme="dark"] .pricing-pack-table-card,
html[data-theme="dark"] .starlink-pack-table {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.pricing-dense-table-card th,
.pricing-dense-table-card td {
  padding: 13px 16px;
}

.pricing-dense-table-card thead th {
  color: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-dense-table-card tbody td:first-child {
  font-weight: 850;
}

.pricing-dense-table-card tbody td:nth-child(2) {
  color: var(--color-pixel-blue-deep);
  font-weight: 950;
}

.pricing-dense-table-card tbody td:nth-child(3) {
  color: rgba(5, 5, 5, 0.62);
  font-size: 14px;
  font-weight: 650;
}

.pricing-side-panel {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 40px rgba(29, 24, 18, 0.08);
}

.pricing-side-panel > div + div {
  border-top: 1px solid rgba(5, 5, 5, 0.09);
  padding-top: 18px;
}

.pricing-side-panel p {
  margin-top: 9px;
  color: rgba(5, 5, 5, 0.68);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-side-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.pricing-side-actions {
  display: grid;
  gap: 10px;
}

.pricing-page .pricing-needs-section {
  padding-block: clamp(12px, 1.6vw, 18px);
}

.pricing-page .pricing-contact-section {
  padding-block: clamp(10px, 1.6vw, 18px) clamp(46px, 6vw, 76px);
}

.pricing-page .pricing-needs-section .seo-links-card {
  padding: clamp(18px, 2vw, 24px);
}

.price-tag {
  display: inline-flex;
  margin-top: 22px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(95, 134, 255, 0.14);
  color: var(--color-pixel-blue-deep);
  font-weight: 900;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

html[data-theme="dark"] th,
html[data-theme="dark"] td {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(246, 247, 251, 0.78);
}

th {
  font-weight: 900;
}

.pricing-quick-actions {
  justify-content: flex-start;
}

.footer-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid rgba(30, 142, 82, 0.32);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  background: linear-gradient(145deg, rgba(44, 166, 100, 0.96), rgba(30, 142, 82, 0.9));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(30, 142, 82, 0.18);
  justify-self: start;
}

.footer-whatsapp-button img {
  width: 22px;
  height: 22px;
}

.pricing-pack-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(24px, 3.5vw, 38px);
}

.pricing-pack-summary {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(3rem, auto) 1fr auto;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(250, 248, 244, 0.74)),
    var(--color-card);
  box-shadow: 0 16px 42px rgba(29, 24, 18, 0.08);
}

.pricing-pack-summary .pricing-pack-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-height: 26px;
  margin: 0;
  border: 1px solid rgba(95, 134, 255, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(95, 134, 255, 0.12);
  color: var(--color-pixel-blue-deep);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

.pricing-pack-summary h3 {
  max-width: 12ch;
  min-height: 2.15em;
  font-size: clamp(24px, 2.5vw, 34px);
}

.pricing-pack-summary p {
  max-width: 28ch;
  min-height: 3.8rem;
  margin: 0;
  line-height: 1.28;
}

.pricing-pack-summary.is-recommended {
  border-color: rgba(95, 134, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(245, 248, 255, 0.96), rgba(255, 255, 255, 0.74)),
    var(--color-card);
}

html[data-theme="dark"] .pricing-pack-summary,
html[data-theme="dark"] .pricing-pack-summary.is-recommended {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    var(--color-card);
}

html[data-theme="dark"] .pricing-pack-summary p,
html[data-theme="dark"] .pricing-case-card p,
html[data-theme="dark"] .icon-card p,
html[data-theme="dark"] .mini-card p,
html[data-theme="dark"] .services-card p,
html[data-theme="dark"] .services-card li,
html[data-theme="dark"] .seo-faq-card p,
html[data-theme="dark"] .starlink-faq-section .seo-faq-card p,
html[data-theme="dark"] .services-editorial-note p,
html[data-theme="dark"] .pro-feature-card p,
html[data-theme="dark"] .pro-small-card p,
html[data-theme="dark"] .home-contact-consent-note,
html[data-theme="dark"] .pro-form-copy .lead {
  color: rgba(246, 247, 251, 0.68);
}

html[data-theme="dark"] .seo-faq-index {
  background: rgba(95, 134, 255, 0.18);
  color: rgba(186, 205, 255, 0.95);
}

html[data-theme="dark"] .starlink-faq-section .seo-faq-index,
html[data-theme="dark"] .wifi-faq-section .seo-faq-index {
  background: transparent;
  color: rgba(246, 247, 251, 0.18);
}

html[data-theme="dark"] .services-editorial-note {
  color: var(--color-ink);
  background:
    linear-gradient(90deg, rgba(8, 14, 24, 0.94), rgba(8, 14, 24, 0.82) 52%, rgba(8, 14, 24, 0.46)),
    var(--services-note-image) center / cover,
    rgba(8, 14, 24, 0.88);
}

html[data-theme="dark"] .services-editorial-note .eyebrow {
  color: rgba(246, 247, 251, 0.58);
}

html[data-theme="dark"] .pricing-pack-link {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--color-ink);
}

.pricing-pack-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  color: var(--color-ink);
  font-weight: 900;
}

.pricing-pack-link-primary {
  border-color: transparent;
  color: #fff;
}

.pack-check {
  color: #149447;
  font-weight: 900;
}

.pack-cross {
  color: #b24b4b;
  font-weight: 900;
}

/* Forms */
.form-card {
  margin-block: 30px clamp(70px, 10vw, 130px);
}

.pro-form-section .pro-form-card {
  margin-block: 0;
}

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

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

label {
  display: grid;
  gap: 8px;
  color: rgba(5, 5, 5, 0.78);
  font-size: 14px;
  font-weight: 900;
}

html[data-theme="dark"] label {
  color: rgba(246, 247, 251, 0.76);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.86);
  outline: 0;
  font-weight: 700;
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: rgba(246, 247, 251, 0.46);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(95, 134, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(95, 134, 255, 0.14);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-block: 20px;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.alert {
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-block: 16px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.alert-danger {
  border: 1px solid rgba(190, 64, 64, 0.34);
  color: #8f2525;
}

.alert-warning {
  border: 1px solid rgba(178, 130, 32, 0.34);
  color: #7a5513;
}

.address-search {
  position: relative;
}

.address-suggestions,
.zone-city-suggestions {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.address-suggestions button,
.zone-city-suggestions button {
  width: 100%;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.field-error {
  color: #9c2323;
  font-size: 13px;
}

/* Questionnaires */
.immersive-questionnaire-section,
.starlink-panorama-section,
.wifi-panorama-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.immersive-questionnaire-card,
.wifi-panorama-card,
.starlink-panorama-card {
  position: relative;
  min-height: 100svh;
  border-radius: 0;
  overflow: hidden;
}

.wifi-panorama-media,
.starlink-panorama-media,
.wifi-panorama-media img,
.starlink-panorama-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wifi-panorama-media img,
.starlink-panorama-media img {
  object-fit: cover;
}

.wifi-panorama-media::after,
.starlink-panorama-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(232, 226, 218, 0.38);
}

.wifi-panorama-media::after,
.starlink-kit-section .starlink-panorama-media::after {
  display: none;
}

.immersive-questionnaire-inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(70px, 10vw, 130px);
}

.immersive-questionnaire-panel {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 46px);
  background: rgba(238, 242, 246, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px) saturate(1.05);
}

.wifi-questionnaire-section .immersive-questionnaire-inner,
.starlink-kit-section .immersive-questionnaire-inner {
  padding-block: clamp(48px, 7vw, 86px);
}

.wifi-questionnaire-section .immersive-questionnaire-panel,
.starlink-kit-section .immersive-questionnaire-panel {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(231, 224, 214, 0.22)),
    rgba(236, 231, 224, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.48) inset,
    0 24px 80px rgba(18, 16, 13, 0.24);
  backdrop-filter: blur(26px) saturate(1.18);
}

.wifi-questionnaire-section .immersive-questionnaire-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(226, 219, 210, 0.18)),
    rgba(236, 231, 224, 0.3);
  backdrop-filter: blur(26px) saturate(1.18);
}

.starlink-kit-section .immersive-questionnaire-panel {
  color: var(--color-ink);
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(226, 219, 210, 0.18)),
    rgba(236, 231, 224, 0.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.48) inset,
    0 28px 86px rgba(18, 16, 13, 0.25);
  backdrop-filter: blur(26px) saturate(1.18);
}

html[data-theme="dark"] .wifi-questionnaire-section .immersive-questionnaire-panel,
html[data-theme="dark"] .starlink-kit-section .immersive-questionnaire-panel {
  color: var(--color-ink);
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(8, 16, 28, 0.46);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 28px 86px rgba(0, 0, 0, 0.32);
}

.starlink-kit-section .immersive-panel-heading h2 {
  color: var(--color-ink);
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.28);
}

html[data-theme="dark"] .starlink-kit-section .immersive-panel-heading h2 {
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.starlink-kit-section .immersive-starlink-form label,
.starlink-kit-section .lookup-inline,
.starlink-kit-section .decision-step h3 {
  color: rgba(5, 5, 5, 0.84);
}

.starlink-kit-section .lookup-inline p,
.starlink-kit-section .decision-result span {
  color: rgba(5, 5, 5, 0.7);
}

.starlink-kit-section .lookup-inline p {
  max-width: 1060px;
  color: rgba(5, 5, 5, 0.72);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 650;
  line-height: 1.42;
}

.starlink-kit-section .lookup-inline .eyebrow {
  color: rgba(5, 5, 5, 0.64);
}

html[data-theme="dark"] .starlink-kit-section .immersive-starlink-form label,
html[data-theme="dark"] .starlink-kit-section .lookup-inline,
html[data-theme="dark"] .starlink-kit-section .decision-step h3 {
  color: rgba(246, 247, 251, 0.86);
}

html[data-theme="dark"] .starlink-kit-section .lookup-inline p,
html[data-theme="dark"] .starlink-kit-section .decision-result span {
  color: rgba(246, 247, 251, 0.72);
}

html[data-theme="dark"] .starlink-kit-section .lookup-inline .eyebrow {
  color: rgba(246, 247, 251, 0.58);
}

.wifi-questionnaire-card,
.immersive-starlink-form {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(220, 211, 198, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38) inset,
    0 18px 52px rgba(29, 24, 18, 0.17);
}

.starlink-kit-section .immersive-starlink-form {
  margin-block: 22px 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.wifi-questionnaire-section .wifi-questionnaire-card {
  margin-top: 22px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .wifi-questionnaire-section .wifi-questionnaire-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.starlink-kit-section .immersive-starlink-form input,
.starlink-kit-section .immersive-starlink-form select {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42) inset;
}

html[data-theme="dark"] .starlink-kit-section .immersive-starlink-form input,
html[data-theme="dark"] .starlink-kit-section .immersive-starlink-form select {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-ink);
  background: rgba(8, 16, 28, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

html[data-theme="dark"] .starlink-kit-section .immersive-starlink-form input::placeholder {
  color: rgba(246, 247, 251, 0.5);
}

.starlink-location-grid {
  align-items: end;
}

.starlink-location-grid:has([data-copper-reset]:not([hidden])) {
  grid-template-columns: minmax(180px, 0.9fr) minmax(180px, 0.78fr) auto;
}

.starlink-reset-inline {
  align-self: stretch;
  min-height: 48px;
  white-space: nowrap;
}

.wifi-questionnaire-card .choice-pill,
.immersive-starlink-form .choice-pill {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62) inset,
    0 14px 34px rgba(18, 16, 13, 0.12);
  backdrop-filter: blur(18px) saturate(1.18);
}

.wifi-questionnaire-card .choice-pill:hover,
.immersive-starlink-form .choice-pill:hover,
.wifi-questionnaire-card .choice-pill:has(input:checked),
.immersive-starlink-form .choice-pill:has(input:checked) {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(225, 232, 255, 0.16)),
    rgba(255, 255, 255, 0.2);
}

.wifi-questionnaire-section .immersive-panel-heading .micro-note {
  max-width: 820px;
  color: rgba(5, 5, 5, 0.68);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 750;
  line-height: 1.38;
}

html[data-theme="dark"] .wifi-questionnaire-section .immersive-panel-heading .micro-note {
  color: rgba(246, 247, 251, 0.76);
}

.wifi-questionnaire-card .decision-result,
.immersive-starlink-form .decision-result {
  border: 0;
  border-radius: 0;
  padding: 6px 0 0;
  background: transparent;
  box-shadow: none;
}

.wifi-result-cta,
.starlink-result-cta {
  border-color: var(--color-pixel-blue);
  color: #fff;
  background: var(--color-pixel-blue);
  box-shadow: 0 16px 34px rgba(95, 134, 255, 0.24);
}

.wifi-questionnaire-section h2,
.wifi-questionnaire-section h3,
.starlink-kit-section h2,
.starlink-kit-section h3 {
  font-family: var(--font-serif);
  font-weight: 600;
}

.immersive-panel-heading h2 {
  font-family: var(--font-ui);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
}

.wifi-questionnaire-section .immersive-panel-heading h2,
.starlink-kit-section .immersive-panel-heading h2 {
  font-family: var(--font-serif);
  font-weight: 600;
}

.starlink-kit-section .immersive-panel-heading h2 {
  color: var(--color-ink);
  font-family: var(--font-ui);
  font-weight: 900;
}

.decision-card {
  display: grid;
  gap: 22px;
}

.decision-step h3 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.05;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-pill {
  min-height: 54px;
  display: inline-flex;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: -1px;
  padding: 0;
  border: 0;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.choice-pill span {
  cursor: pointer !important;
}

.choice-pill:has(input:checked) {
  border-color: rgba(95, 134, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(225, 232, 255, 0.54)),
    rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(95, 134, 255, 0.2);
}

html[data-theme="dark"] .choice-pill {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(246, 247, 251, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(12, 22, 36, 0.54);
}

html[data-theme="dark"] .choice-pill:has(input:checked) {
  border-color: rgba(127, 164, 255, 0.62);
  background:
    linear-gradient(145deg, rgba(95, 134, 255, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(18, 32, 54, 0.72);
  box-shadow: inset 0 0 0 1px rgba(127, 164, 255, 0.22);
}

.decision-result {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border: 1px solid rgba(95, 134, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.decision-result h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.02;
}

.decision-result p,
.decision-result span {
  color: var(--color-muted);
  font-weight: 650;
}

.decision-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.lookup-inline {
  display: grid;
  gap: 18px;
}

.lookup-head h3 {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

/* Starlink comparison */
.starlink-pack-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: none;
}

.starlink-kit-option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin-bottom: 18px;
}

.starlink-kit-option img {
  max-height: 150px;
  object-fit: contain;
}

.starlink-pack-card dl {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.starlink-pack-card dl > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
  border-top: 1px solid rgba(5, 5, 5, 0.1);
  padding-top: 12px;
}

.starlink-pack-card dt {
  color: rgba(5, 5, 5, 0.58);
  font-weight: 800;
}

.starlink-pack-container {
  width: min(100% - 72px, var(--container));
}

.starlink-pack-section {
  padding-block: clamp(46px, 6vw, 82px);
}

.starlink-pack-section .section-heading {
  margin-bottom: 24px;
}

.starlink-pack-card {
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 230, 0.76)),
    var(--color-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 62px rgba(29, 24, 18, 0.11);
}

.starlink-pack-card h3 {
  max-width: 12ch;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 0.98;
}

.starlink-pack-card-head p {
  max-width: 36ch;
  margin-top: 12px;
  line-height: 1.28;
}

.starlink-pack-table-wrap,
.pricing-pack-table-card,
.table-card {
  overflow-x: auto;
}

.pricing-dense-table-card {
  overflow-x: hidden;
}

.starlink-pack-table-wrap {
  margin-top: 26px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-pack-table {
  min-width: 760px;
}

.pricing-pack-table-card {
  padding: 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 40px rgba(29, 24, 18, 0.08);
}

.pricing-pack-table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
}

.pricing-pack-table th,
.pricing-pack-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  text-align: center;
  vertical-align: middle;
}

.pricing-pack-table th:first-child,
.pricing-pack-table td:first-child {
  text-align: left;
}

.pricing-pack-table thead th {
  background: rgba(95, 134, 255, 0.12);
  color: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

html[data-theme="dark"] .pricing-pack-table thead th,
html[data-theme="dark"] .starlink-pack-table thead th {
  background: rgba(95, 134, 255, 0.16);
  color: rgba(246, 247, 251, 0.78);
}

.pricing-pack-table tbody th {
  color: var(--color-ink);
  font-weight: 850;
}

.pricing-pack-table tbody td {
  color: rgba(5, 5, 5, 0.7);
  font-weight: 850;
}

html[data-theme="dark"] .pricing-pack-table tbody th,
html[data-theme="dark"] .pricing-pack-table tbody td,
html[data-theme="dark"] .starlink-pack-table th,
html[data-theme="dark"] .starlink-pack-table td,
html[data-theme="dark"] .pricing-dense-table-card th,
html[data-theme="dark"] .pricing-dense-table-card td {
  color: rgba(246, 247, 251, 0.82);
}

.pricing-pack-table tbody tr:nth-child(even) th,
.pricing-pack-table tbody tr:nth-child(even) td {
  background: rgba(95, 134, 255, 0.055);
}

html[data-theme="dark"] .pricing-pack-table tbody tr:nth-child(even) th,
html[data-theme="dark"] .pricing-pack-table tbody tr:nth-child(even) td,
html[data-theme="dark"] .starlink-pack-table tbody tr:nth-child(even) th,
html[data-theme="dark"] .starlink-pack-table tbody tr:nth-child(even) td {
  background: rgba(95, 134, 255, 0.08);
}

.pricing-pack-table tbody tr:hover th,
.pricing-pack-table tbody tr:hover td {
  background: rgba(95, 134, 255, 0.095);
}

.pricing-pack-table tbody tr:last-child th,
.pricing-pack-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-pack-price-row th,
.pricing-pack-price-row td {
  background: rgba(95, 134, 255, 0.12) !important;
  color: var(--color-pixel-blue-deep);
  font-weight: 950;
}

html[data-theme="dark"] .pricing-pack-price-row th,
html[data-theme="dark"] .pricing-pack-price-row td {
  color: #9fb8ff;
}

.starlink-pack-table {
  min-width: 760px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  border: 1px solid rgba(95, 134, 255, 0.2);
  background: rgba(255, 255, 255, 0.74);
}

.starlink-pack-table th,
.starlink-pack-table td {
  border-bottom-color: rgba(95, 134, 255, 0.16);
  background: rgba(255, 255, 255, 0.64);
  text-align: center;
  vertical-align: middle;
}

.starlink-pack-table th:first-child,
.starlink-pack-table td:first-child {
  text-align: center;
}

.starlink-pack-table thead th {
  background: rgba(95, 134, 255, 0.16);
  color: var(--color-pixel-blue-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.starlink-pack-table tbody tr:nth-child(even) th,
.starlink-pack-table tbody tr:nth-child(even) td {
  background: rgba(95, 134, 255, 0.07);
}

html[data-theme="dark"] .starlink-pack-table {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 16, 28, 0.82);
}

html[data-theme="dark"] .starlink-pack-table thead th {
  background: rgba(95, 134, 255, 0.18);
  color: rgba(246, 247, 251, 0.86);
}

html[data-theme="dark"] .starlink-pack-table th,
html[data-theme="dark"] .starlink-pack-table td {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(246, 247, 251, 0.76);
  background: rgba(12, 22, 36, 0.86);
}

html[data-theme="dark"] .starlink-pack-table tbody tr:nth-child(even) th,
html[data-theme="dark"] .starlink-pack-table tbody tr:nth-child(even) td {
  background: rgba(24, 38, 60, 0.86);
}

.pricing-services-table-card table {
  min-width: 0;
  table-layout: fixed;
}

.pricing-services-table-card th:nth-child(2),
.pricing-services-table-card td:nth-child(2) {
  width: 160px;
  white-space: nowrap;
}

.pricing-services-table-card th:nth-child(3),
.pricing-services-table-card td:nth-child(3) {
  width: 34%;
}

.pricing-table-note,
.pricing-pack-note {
  max-width: 780px;
  margin-top: 14px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

html[data-theme="dark"] .pricing-table-note,
html[data-theme="dark"] .pricing-pack-note {
  color: rgba(246, 247, 251, 0.62);
}

.pricing-pack-table th:first-child {
  width: 42%;
}

.immersive-starlink-form {
  margin-block: 24px 0;
}

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

.ev-offer-card,
.pricing-credit-card {
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

html[data-theme="dark"] .pricing-credit-card,
html[data-theme="dark"] .ev-offer-card {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(12, 22, 36, 0.92);
}

/* SEO / zone / legal */
.editorial-page,
.legal-page {
  background: var(--color-canvas);
}

.seo-problem-page.section {
  padding-block: clamp(22px, 3vw, 40px) clamp(42px, 5vw, 70px);
}

.editorial-hero,
.legal-container,
.seo-problem-container {
  padding-block: clamp(72px, 10vw, 132px);
}

.contact-editorial-hero {
  padding-block: clamp(42px, 6vw, 72px) clamp(24px, 4vw, 42px);
}

.contact-page .form-card {
  margin-block: 0 0;
}

.contact-page textarea[name="message"] {
  resize: none;
}

.contact-page .contact-submit {
  width: 100%;
  margin-top: 22px;
}

.contact-consent-note {
  margin-top: 10px;
  margin-bottom: clamp(58px, 8vw, 110px);
}

.contact-hero .seo-link-item-arrow {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--color-pixel-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(95, 134, 255, 0.28);
}

.seo-problem-container {
  padding-block: 0 clamp(52px, 7vw, 86px);
}

.seo-problem-hero {
  margin-bottom: clamp(34px, 4vw, 48px);
}

.seo-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.seo-link-list-single,
.seo-link-list-full {
  grid-template-columns: 1fr;
}

.seo-link-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

html[data-theme="dark"] .seo-link-item {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-ink);
}

.seo-link-item-arrow {
  font-weight: 900;
}

.seo-problem-sections {
  display: grid;
  gap: 18px;
}

.seo-problem-page .seo-problem-links-section {
  padding-block: clamp(26px, 3.5vw, 42px) clamp(18px, 2.8vw, 32px);
}

.seo-problem-page .seo-problem-cta-section {
  padding-block: clamp(18px, 2.8vw, 32px) 0;
}

.seo-problem-page .seo-problem-faq-section {
  padding-block: clamp(30px, 4vw, 48px) 0;
}

.seo-problem-page .seo-problem-faq-section .section-heading {
  margin-bottom: 18px;
}

.seo-problem-page .seo-problem-faq-section .section-heading h2 {
  max-width: none;
  font-size: clamp(30px, 3.2vw, 46px);
}

.seo-problem-page .seo-problem-faq-section .seo-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-problem-page .seo-problem-faq-section .seo-faq-card {
  min-height: 190px;
}

.seo-problem-page .seo-problem-faq-section .seo-faq-card h3 {
  font-family: var(--font-ui);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1.08;
}

.seo-problem-page .seo-problem-faq-section .seo-faq-card p {
  font-size: 15px;
  line-height: 1.36;
}

.seo-problem-page .seo-problem-faq-section .seo-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
}

.seo-problem-page .seo-problem-faq-section .seo-cta-card p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 850;
  line-height: 1.28;
}

.seo-problem-page .seo-problem-faq-section .seo-cta-card .hero-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.seo-problem-page .seo-problem-faq-section .seo-cta-card .button {
  min-height: 42px;
}

.seo-problem-card-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.seo-problem-index {
  color: rgba(5, 5, 5, 0.18);
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 0.9;
}

html[data-theme="dark"] .seo-problem-index,
html[data-theme="dark"] .legal-card::before,
html[data-theme="dark"] .pro-feature-card span {
  color: rgba(246, 247, 251, 0.18);
}

.legal-container {
  counter-reset: legal-section;
  padding-block: clamp(28px, 4.2vw, 54px) clamp(46px, 7vw, 92px);
}

.legal-hero {
  margin-bottom: clamp(34px, 4.5vw, 56px);
}

.legal-hero .eyebrow {
  margin-bottom: 12px;
}

.legal-card {
  counter-increment: legal-section;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  align-items: start;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 38px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

html[data-theme="dark"] .legal-card {
  background: rgba(255, 255, 255, 0.08);
}

.legal-card::before {
  content: counter(legal-section, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-top: -2px;
  color: rgba(5, 5, 5, 0.18);
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 0.9;
}

.legal-card > * {
  grid-column: 2;
}

.legal-card h2 {
  font-family: var(--font-ui);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.1;
}

.legal-card p,
.legal-card li {
  color: rgba(5, 5, 5, 0.82);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.42;
}

html[data-theme="dark"] .legal-card p,
html[data-theme="dark"] .legal-card li {
  color: rgba(246, 247, 251, 0.78);
}

.legal-card p + p,
.legal-card ul + p {
  margin-top: 4px;
}

.legal-card ul {
  display: grid;
  gap: 4px;
  margin: 2px 0 0;
  padding-left: 18px;
}

.legal-card + .legal-card {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .legal-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .legal-card::before,
  .legal-card > * {
    grid-column: 1;
  }

  .legal-card::before {
    grid-row: auto;
    margin-top: 0;
  }
}

.zone-layout,
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.zone-page {
  padding-block: clamp(36px, 5vw, 64px) clamp(52px, 7vw, 92px);
}

.zone-page .zone-hero {
  max-width: 900px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.zone-page .zone-hero h1 {
  max-width: 13ch;
  font-family: var(--font-ui);
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 950;
  line-height: 0.96;
}

.zone-page .zone-hero .lead {
  max-width: 760px;
  color: rgba(5, 5, 5, 0.68);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 800;
  line-height: 1.25;
}

html[data-theme="dark"] .zone-page .zone-hero .lead {
  color: rgba(246, 247, 251, 0.72);
}

.zone-page .zone-seo-intro {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

.zone-page .zone-mini-card {
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.zone-page .zone-mini-card p {
  margin-top: 10px;
  color: rgba(5, 5, 5, 0.68);
  font-weight: 700;
  line-height: 1.35;
}

html[data-theme="dark"] .zone-page .zone-mini-card {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .zone-page .zone-mini-card p {
  color: rgba(246, 247, 251, 0.7);
}

.zone-page .zone-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: clamp(16px, 2.4vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(245, 241, 234, 0.28)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.68) inset,
    0 28px 76px rgba(29, 24, 18, 0.12);
  backdrop-filter: blur(22px) saturate(1.04);
  margin-bottom: clamp(30px, 5vw, 56px);
}

html[data-theme="dark"] .zone-page .zone-layout {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.zone-page .zone-map-card,
.zone-page .zone-search-card {
  border-color: rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

html[data-theme="dark"] .zone-page .zone-map-card,
html[data-theme="dark"] .zone-page .zone-search-card,
html[data-theme="dark"] .home-zone-dialog .zone-map-card,
html[data-theme="dark"] .home-zone-dialog .zone-search-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.zone-page .zone-map-card {
  display: grid;
  gap: 16px;
  padding: clamp(14px, 2vw, 20px);
}

.zone-page .zone-search-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin: 0;
  padding: clamp(18px, 2.4vw, 24px);
}

.zone-page .zone-map-shell,
.zone-page .zone-map {
  min-height: 380px;
}

.zone-page .zone-map-shell {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-md);
}

.zone-page .zone-legend {
  gap: 12px;
}

.zone-page .zone-search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.zone-page .zone-search-input {
  min-height: 52px;
  border-color: rgba(95, 134, 255, 0.32);
  background: rgba(255, 255, 255, 0.76);
}

html[data-theme="dark"] .zone-page .zone-search-input {
  border-color: rgba(148, 173, 255, 0.34);
  color: var(--color-ink);
  background: rgba(10, 18, 30, 0.72);
}

html[data-theme="dark"] .zone-page .zone-search-input::placeholder {
  color: rgba(246, 247, 251, 0.5);
}

.zone-page .zone-city-suggestions {
  position: static;
  z-index: 5;
  margin-top: -4px;
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.14);
}

.zone-page .zone-search-form .button {
  width: 100%;
}

.zone-page [data-zone-result] {
  margin-top: 20px;
}

.zone-page .zone-result {
  display: grid;
  gap: 14px;
}

.zone-page .zone-city-title {
  font-size: 28px;
  line-height: 1.05;
}

.zone-page .zone-status-cards {
  display: grid;
  gap: 8px;
}

.zone-page .zone-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.58);
}

html[data-theme="dark"] .zone-page .zone-status-card,
html[data-theme="dark"] .home-zone-dialog .zone-status-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.zone-page .zone-status-label {
  color: rgba(5, 5, 5, 0.72);
  font-weight: 760;
}

html[data-theme="dark"] .zone-page .zone-status-label,
html[data-theme="dark"] .home-zone-dialog .zone-status-label {
  color: rgba(246, 247, 251, 0.74);
}

.zone-page .zone-status-card strong {
  color: #137c3c;
  font-weight: 900;
}

.zone-page .zone-status-card.is-no strong {
  color: #8c6417;
}

.zone-page .zone-result-actions {
  display: grid;
  gap: 10px;
}

.zone-page .zone-result-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.zone-page .zone-contact-button {
  border-color: rgba(5, 5, 5, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #050505;
  box-shadow: none;
}

.zone-page .zone-whatsapp-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(30, 142, 82, 0.32);
  border-radius: var(--radius-md);
  padding: 9px 16px;
  background: linear-gradient(145deg, rgba(44, 166, 100, 0.96), rgba(30, 142, 82, 0.9));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(30, 142, 82, 0.18);
}

.zone-page .zone-whatsapp-button img {
  width: 20px;
  height: 20px;
  order: -1;
}

.zone-page .zone-result-actions .button,
.zone-page .zone-whatsapp-button,
.zone-page .zone-contact-full,
.zone-page .home-zone-full-link {
  width: 100%;
}

.zone-page .zone-contact-full {
  border-color: rgba(95, 134, 255, 0.42);
  background: linear-gradient(145deg, var(--color-pixel-blue), var(--color-pixel-blue-deep));
  color: #fff;
  box-shadow: 0 16px 32px rgba(95, 134, 255, 0.22);
}

.zone-page .zone-seo-card {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
}

@media (max-width: 900px) {
  .zone-page {
    padding-block: clamp(28px, 7vw, 48px) clamp(44px, 9vw, 70px);
  }

  .zone-page .zone-hero h1 {
    max-width: 10.8ch;
    font-size: clamp(42px, 11vw, 58px);
  }

  .zone-page .zone-seo-intro,
  .zone-page .zone-layout,
  .zone-page .zone-legend {
    grid-template-columns: 1fr;
  }

  .zone-page .zone-layout {
    padding: 14px;
  }

  .zone-page .zone-map-card,
  .zone-page .zone-search-card {
    width: 100%;
  }

  .zone-page .zone-map-shell,
  .zone-page .zone-map {
    min-height: 320px;
  }

  .zone-page .zone-search-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  [data-callback-dialog].quote-custom-dialog {
    width: min(100% - 18px, 520px);
  }

  .home-callback-dialog-form {
    padding: 24px;
  }

  .home-callback-dialog-form h2 {
    max-width: none;
    margin-right: 38px;
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .home-callback-dialog-form form {
    grid-template-columns: 1fr;
  }

  .home-callback-dialog-form form > label,
  .home-callback-dialog-form form > .inline-form,
  .home-callback-dialog-form form > .micro-note {
    grid-column: 1;
    grid-row: auto;
  }

  .home-callback-dialog-form form > .inline-form .button {
    width: 100%;
  }
}

.zone-map-shell {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.zone-map {
  min-height: 360px;
}

.zone-legend {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.home-zone-dialog {
  width: min(940px, calc(100% - 32px));
}

.home-zone-dialog-panel {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  padding: clamp(18px, 2.6vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(245, 241, 234, 0.34)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.66) inset,
    0 34px 82px rgba(5, 5, 5, 0.2);
  backdrop-filter: blur(30px) saturate(1.06);
}

.home-zone-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(310px, 0.78fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: stretch;
}

.home-zone-dialog .zone-map-card,
.home-zone-dialog .zone-search-card {
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.home-zone-dialog .zone-map-card {
  display: grid;
  gap: 16px;
  padding: clamp(14px, 2vw, 20px);
}

.home-zone-dialog .zone-search-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin: 0;
  padding: clamp(18px, 2.4vw, 24px);
}

.home-zone-dialog .zone-map-shell,
.home-zone-dialog .zone-map {
  min-height: 340px;
}

.home-zone-dialog .zone-map-shell {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-md);
}

.home-zone-dialog .zone-legend {
  gap: 12px;
}

.home-zone-dialog .zone-mini-card {
  min-width: 0;
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.home-zone-dialog .zone-search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-zone-dialog .zone-search-input {
  min-height: 52px;
  border-color: rgba(95, 134, 255, 0.36);
  background: rgba(255, 255, 255, 0.72);
}

.home-zone-dialog .zone-city-suggestions {
  position: static;
  z-index: 5;
  margin-top: -4px;
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.14);
}

.home-zone-dialog .zone-search-form .button {
  width: 100%;
}

.home-zone-dialog [data-zone-result] {
  margin-top: 18px;
}

.home-zone-dialog .zone-result {
  display: grid;
  gap: 14px;
}

.home-zone-dialog .zone-city-title {
  font-size: 28px;
  line-height: 1.05;
}

.home-zone-dialog .zone-status-cards {
  display: grid;
  gap: 8px;
}

.home-zone-dialog .zone-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.52);
}

.home-zone-dialog .zone-status-label {
  color: rgba(5, 5, 5, 0.72);
  font-weight: 760;
}

.home-zone-dialog .zone-status-card strong {
  color: #137c3c;
  font-weight: 900;
}

.home-zone-dialog .zone-status-card.is-no strong {
  color: #8c6417;
}

.home-zone-dialog .zone-result-actions {
  display: grid;
  gap: 10px;
}

.home-zone-dialog .zone-result-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.home-zone-dialog .zone-contact-button {
  width: 100%;
  border-color: rgba(5, 5, 5, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #050505;
  box-shadow: none;
}

.home-zone-dialog .zone-whatsapp-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(30, 142, 82, 0.32);
  border-radius: var(--radius-md);
  padding: 9px 16px;
  background: linear-gradient(145deg, rgba(44, 166, 100, 0.96), rgba(30, 142, 82, 0.9));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(30, 142, 82, 0.18);
}

.home-zone-dialog .zone-whatsapp-button img {
  width: 20px;
  height: 20px;
  order: -1;
}

.home-zone-dialog .zone-result-actions .button,
.home-zone-dialog .zone-whatsapp-button,
.home-zone-dialog .zone-contact-full {
  width: 100%;
}

.home-zone-dialog .zone-contact-full {
  border-color: rgba(95, 134, 255, 0.42);
  background: linear-gradient(145deg, var(--color-pixel-blue), var(--color-pixel-blue-deep));
  color: #fff;
  box-shadow: 0 16px 32px rgba(95, 134, 255, 0.22);
}

.home-zone-dialog .home-zone-full-link {
  display: none;
}

.badge-success {
  color: #137c3c;
}

.badge-warning {
  color: #8c6417;
}

.badge-info {
  color: var(--color-pixel-blue-deep);
}

/* Dialogs and feedback */
.quote-custom-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 24px);
  overflow: auto;
  border: 0;
  border-radius: var(--radius-xl);
  padding: 0;
  background: transparent;
}

dialog.home-zone-dialog {
  width: min(940px, calc(100% - 32px));
}

[data-callback-dialog].quote-custom-dialog {
  width: min(720px, calc(100% - 24px));
}

.quote-custom-dialog::backdrop {
  background: rgba(5, 5, 5, 0.36);
  backdrop-filter: blur(10px);
}

.home-callback-dialog-form {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 238, 0.92)),
    var(--color-card);
}

.home-callback-dialog-form h2 {
  max-width: none;
  margin: 0 44px 8px 0;
  font-size: clamp(31px, 4.2vw, 44px);
  line-height: 0.95;
  white-space: nowrap;
}

.home-callback-dialog-form > .micro-note {
  max-width: 520px;
  margin-bottom: 20px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 16px;
}

.home-callback-dialog-form form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: end;
}

.home-callback-dialog-form form > label {
  display: grid;
  grid-column: 1;
  gap: 8px;
  margin: 0;
}

.home-callback-dialog-form form > label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-callback-input-wrap {
  min-height: 54px;
  border-color: rgba(5, 5, 5, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 800;
}

.home-callback-dialog-form form > .inline-form {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.home-callback-dialog-form form > .inline-form .button {
  min-height: 54px;
  padding-inline: 22px;
  white-space: nowrap;
}

.home-callback-dialog-form form > .micro-note {
  display: none;
}

.home-callback-dialog-close,
.home-callback-popin-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  min-height: 38px;
  border-radius: 50%;
  padding: 0;
}

.home-callback-popin {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(380px, calc(100% - 36px));
  border-radius: var(--radius-lg);
  padding: 18px 58px 18px 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.home-callback-popin-copy strong {
  display: block;
  font-weight: 900;
}

.home-callback-popin-copy p {
  color: var(--color-muted);
  font-weight: 650;
}

@media (max-width: 680px) {
  [data-callback-dialog].quote-custom-dialog {
    width: min(100% - 18px, 520px);
  }

  .home-callback-dialog-form {
    padding: 24px;
  }

  .home-callback-dialog-form h2 {
    margin-right: 38px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1;
    white-space: normal;
  }

  .home-callback-dialog-form > .micro-note {
    max-width: 28ch;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.35;
  }

  .home-callback-dialog-form form {
    grid-template-columns: 1fr;
  }

  .home-callback-dialog-form form > label,
  .home-callback-dialog-form form > .inline-form {
    grid-column: 1;
    grid-row: auto;
  }

  .home-callback-dialog-form form > .inline-form .button {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  padding-block: 48px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  background: rgba(232, 226, 218, 0.88);
  color: var(--color-ink);
  backdrop-filter: blur(16px) saturate(1.08);
}

html[data-theme="dark"] .site-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
  background: rgba(7, 17, 29, 0.88);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-intro {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand-logo img {
  width: 160px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2,
.footer-column h3 {
  color: var(--color-ink);
  font-size: 15px;
}

.footer-column a,
.footer-column p,
.footer-intro p {
  color: rgba(5, 5, 5, 0.68);
  font-weight: 650;
}

html[data-theme="dark"] .footer-column a,
html[data-theme="dark"] .footer-column p,
html[data-theme="dark"] .footer-intro p {
  color: rgba(246, 247, 251, 0.68);
}

.footer-theme-block {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.theme-toggle,
.footer-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--color-ink);
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .footer-theme-toggle {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.theme-toggle-option {
  position: relative;
  z-index: 1;
  min-width: 78px;
  padding: 8px 12px;
  color: rgba(5, 5, 5, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.theme-toggle-thumb {
  position: absolute;
  inset-block: 2px;
  left: 2px;
  width: calc(50% - 2px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(5, 5, 5, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle[aria-pressed="true"] .theme-toggle-thumb,
.footer-theme-toggle[aria-pressed="true"] .theme-toggle-thumb {
  transform: translateX(100%);
  background: rgba(127, 164, 255, 0.95);
}

html[data-theme="dark"] .theme-toggle-option {
  color: rgba(246, 247, 251, 0.78);
}

/* Tablet */
@media (max-width: 1240px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    inset: var(--header-h) 16px auto 16px;
    z-index: 70;
    display: grid;
    gap: 8px;
    max-height: calc(100dvh - var(--header-h) - 32px);
    overflow-y: auto;
    border-radius: 18px;
    padding: 12px;
    background: rgba(248, 246, 242, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open a {
    justify-content: flex-start;
    border-radius: 12px;
  }

  .main-nav.is-open .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 8px;
    font-weight: 900;
  }

  .main-nav.is-open .mobile-nav-close {
    width: 38px;
    min-height: 38px;
    display: inline-flex;
    border-radius: 50%;
    padding: 0;
  }

  .main-nav.is-open .mobile-nav-callback,
  .main-nav.is-open .mobile-nav-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  .main-nav.is-open .mobile-nav-callback {
    border: 1px solid rgba(5, 5, 5, 0.12);
    background: rgba(255, 255, 255, 0.82);
    font-weight: 850;
  }

  .main-nav.is-open .mobile-nav-cta {
    color: #fff;
    background: var(--color-pixel-blue);
    font-weight: 850;
  }

  .visual-hero-copy,
  .pro-hero-copy {
    width: min(100% - 48px, 760px);
  }

  .services-grid,
  .icon-grid-4,
  .cards-grid,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icon-grid-3,
  .pricing-frequent-grid,
  .seo-faq-grid,
  .pricing-pack-columns,
  .starlink-pack-cards,
  .home-problems-stage,
  .home-contact-layout,
  .pro-feature-scroll-inner,
  .pro-form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1365px) and (min-width: 1101px) {
  .main-nav a {
    padding-inline: 11px;
    font-size: 13px;
  }

  .header-callback-cta,
  .header-cta {
    padding-inline: 14px;
    font-size: 14px;
  }

  .brand-logo-image {
    width: 154px;
  }

  .visual-hero-copy {
    width: min(680px, 54vw);
    padding-inline: clamp(42px, 4.5vw, 72px);
  }

  .visual-hero-copy h1,
  .home-manifesto-title h1 {
    font-size: clamp(56px, 5.2vw, 84px);
  }

  .visual-hero-copy p {
    font-size: clamp(18px, 1.45vw, 23px);
  }

  .home-problems-grid,
  .icon-grid-4,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .services-grid,
  .icon-grid-3,
  .pricing-frequent-grid,
  .seo-faq-grid,
  .pricing-pack-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 741px) and (max-width: 1100px) {
  .icon-grid-3,
  .pricing-frequent-grid,
  .seo-faq-grid,
  .pricing-pack-columns,
  .starlink-pack-cards,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-hero-copy {
    width: min(100% - 48px, 680px);
    padding: clamp(54px, 7vh, 82px) 32px 48px;
  }

  .visual-hero-copy h1,
  .home-manifesto-title h1 {
    font-size: clamp(52px, 8vw, 68px);
    line-height: 1;
  }

  .pricing-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-intro-panel {
    max-width: 560px;
  }

  .choice-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-pill {
    width: 100%;
  }

  .footer-intro {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (min-width: 741px) and (max-width: 1024px) and (orientation: landscape) {
  .home-manifesto-copy {
    right: 32px;
    bottom: 32px;
    width: min(460px, calc(100% - 64px));
  }

  .home-hero-intents a {
    min-height: 68px;
    padding: 13px 14px;
  }
}

/* Phone */
@media (max-width: 740px) {
  :root {
    --header-h: 82px;
  }

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

  .site-header {
    min-height: var(--header-h);
  }

  .header-inner {
    min-height: var(--header-h);
    justify-content: flex-start;
  }

  .brand-logo-image {
    width: 132px;
  }

  .header-actions {
    position: absolute;
    right: 0;
    gap: 8px;
  }

  .header-callback-cta {
    min-height: 44px;
    order: 1;
    padding-inline: 14px;
    font-size: 14px;
  }

  .header-callback-label-desktop {
    display: none;
  }

  .header-callback-label-mobile {
    display: inline;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    order: 2;
  }

  .visual-hero,
  .home-manifesto-hero,
  .pro-hero,
  .visual-hero-frame,
  .home-manifesto-panel {
    min-height: calc(100svh - var(--header-h));
  }

  .home-manifesto-hero,
  .home-manifesto-panel {
    min-height: auto;
  }

  .home-manifesto-panel {
    overflow: visible;
    padding-bottom: 34px;
  }

  .visual-hero-copy {
    width: 100%;
    min-height: calc(100svh - var(--header-h));
    padding: clamp(48px, 8vh, 76px) 24px 42px;
  }

  .visual-hero-copy h1,
  .home-manifesto-title h1 {
    max-width: 11ch;
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.02;
  }

  .visual-hero-copy p {
    max-width: none;
    font-size: clamp(17px, 4.2vw, 20px);
    line-height: 1.32;
  }

  .visual-hero-actions,
  .pro-hero-actions,
  .pricing-intro-actions,
  .pricing-quick-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .visual-hero-actions .button,
  .pro-hero-actions .button,
  .pricing-intro-actions .button,
  .pricing-quick-actions .button,
  .hero-actions .button,
  .footer-whatsapp-button {
    width: 100%;
  }

  .pricing-intro-section {
    padding-block: 28px 30px;
  }

  .pricing-intro-copy h1 {
    max-width: 10.5ch;
    margin-top: 12px;
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1;
  }

  .pricing-intro-copy .lead {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.28;
  }

  .pricing-intro-panel {
    padding: 0;
  }

  .pricing-rate-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-rate-summary div {
    display: block;
    border-right: 1px solid rgba(5, 5, 5, 0.08);
    border-bottom: 0;
    padding: 12px 12px;
  }

  .pricing-rate-summary div:first-child {
    padding-top: 12px;
    padding-left: 12px;
  }

  .pricing-rate-summary div:last-child {
    border-right: 0;
    padding-bottom: 12px;
  }

  .starlink-location-grid:has([data-copper-reset]:not([hidden])) {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .starlink-location-grid:has([data-copper-reset]:not([hidden])) label:first-child {
    grid-column: 1 / -1;
  }

  .starlink-location-grid:has([data-copper-reset]:not([hidden])) label:nth-child(2) {
    grid-column: 1;
  }

  .starlink-location-grid:has([data-copper-reset]:not([hidden])) .starlink-reset-inline {
    grid-column: 2;
    min-height: 50px;
    padding-inline: 12px;
  }

  .pricing-rate-summary span {
    display: block;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.15;
  }

  .pricing-rate-summary strong {
    display: block;
    margin-top: 7px;
    font-size: clamp(14px, 4.2vw, 17px);
    font-weight: 850;
    line-height: 1.08;
    white-space: normal;
  }

  .pricing-assurance-strip,
  .pricing-main-grid {
    grid-template-columns: 1fr;
  }

  .pricing-assurance-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
    padding: 13px 14px;
  }

  .pricing-assurance-strip div:last-child {
    border-bottom: 0;
  }

  .pricing-side-panel {
    position: static;
    padding: 18px;
  }

  .pricing-dense-table-card {
    border-radius: 12px;
  }

  .pricing-dense-table-card th,
  .pricing-dense-table-card td {
    padding: 0;
  }

  .home-manifesto-title {
    width: min(100% - 32px, 760px);
    padding-top: clamp(34px, 5.5vh, 58px);
  }

  .home-manifesto-title h1 {
    font-size: clamp(40px, 10.4vw, 54px);
  }

  .home-manifesto-copy {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 32px, 760px);
    margin: 18px auto 22px;
    padding: 14px;
    background: rgba(238, 234, 228, 0.34);
    backdrop-filter: blur(10px) saturate(1.04);
  }

  .home-hero-intents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .home-hero-intents a {
    min-height: 58px;
    align-content: center;
    padding: 12px 13px;
  }

  .home-hero-intents span {
    font-size: 15px;
    line-height: 1.12;
  }

  .home-hero-intents strong {
    display: none;
  }

  .home-problem-search-row {
    grid-template-columns: 1fr 48px;
  }

  .home-problem-search-row input {
    padding-block: 16px;
    font-size: 16px;
  }

  .home-problems-stage,
  .home-problems-grid,
  .home-contact-layout,
  .services-grid,
  .icon-grid,
  .cards-grid,
  .pricing-frequent-grid,
  .pricing-intro,
  .pricing-pack-columns,
  .starlink-pack-cards,
  .seo-faq-grid,
  .footer-layout,
  .pro-feature-grid,
  .pro-card-grid,
  .pro-feature-scroll-inner,
  .pro-form-shell,
  .zone-layout,
  .two-columns,
  .form-grid,
  .seo-link-list,
  .ev-offers-grid {
    grid-template-columns: 1fr;
  }

  .starlink-pack-cards {
    display: grid;
  }

  .starlink-pack-table-wrap {
    display: none;
  }

  .home-problems-section,
  .icon-section,
  .pricing-section,
  .seo-faq-section,
  .starlink-pack-section,
  .pro-editorial-section,
  .pro-method-section,
  .pro-form-section {
    padding-block: 54px;
  }

  .pricing-page .pricing-main-section {
    padding-bottom: 18px;
  }

  .pricing-page .pricing-packs-section {
    padding-block: 28px 24px;
  }

  .pricing-page .pricing-needs-section {
    padding-block: 24px 12px;
  }

  .seo-problem-page .seo-problem-faq-section {
    padding-block: 30px 0;
  }

  .seo-problem-page .seo-problem-faq-section .seo-faq-grid {
    grid-template-columns: 1fr;
  }

  .seo-problem-page .seo-problem-faq-section .seo-cta-card {
    display: grid;
    padding: 18px;
  }

  .seo-problem-page .seo-problem-faq-section .seo-cta-card .hero-actions {
    width: 100%;
  }

  .seo-problem-page .seo-problem-faq-section .seo-cta-card .button {
    width: 100%;
  }

  .home-problems-section {
    padding-block: 34px 54px;
  }

  .home-problem-card,
  .icon-card,
  .pricing-case-card,
  .pro-feature-card,
  .pro-small-card {
    min-height: auto;
  }

  .pro-hero-inner {
    min-height: calc(100svh - var(--header-h));
    align-items: end;
    padding-block: clamp(210px, 36vh, 300px) 34px;
  }

  .pro-hero-copy {
    width: min(100% - 48px, 760px);
    margin-inline: auto;
  }

  .pro-hero-copy h1 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .pro-hero-copy p {
    font-size: 17px;
  }

  .pro-hero-points {
    gap: 8px;
  }

  .pro-hero-points li {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .immersive-questionnaire-panel {
    padding: 24px;
    border-radius: 18px;
  }

  .immersive-questionnaire-inner {
    align-items: flex-start;
    padding-block: 48px;
  }

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

  .choice-pill {
    width: 100%;
  }

  .decision-result {
    grid-template-columns: 1fr;
  }

  .starlink-pack-card dl > div,
  .starlink-pack-table-wrap table,
  .starlink-pack-table-wrap tbody,
  .starlink-pack-table-wrap tr,
  .starlink-pack-table-wrap td,
  .starlink-pack-table-wrap th,
  .pricing-pack-table-card table,
  .pricing-pack-table-card tbody,
  .pricing-pack-table-card tr,
  .pricing-pack-table-card td,
  .pricing-pack-table-card th,
  .pricing-services-table-card table,
  .pricing-services-table-card tbody,
  .pricing-services-table-card tr,
  .pricing-services-table-card td,
  .pricing-services-table-card th {
    display: block;
  }

  .starlink-pack-table-wrap table,
  .pricing-pack-table-card table,
  .pricing-services-table-card table {
    min-width: 0;
  }

  .starlink-pack-table-wrap thead,
  .pricing-pack-table-card thead,
  .pricing-services-table-card thead {
    display: none;
  }

  .pricing-services-table-card tr,
  .pricing-pack-table-card tr,
  .starlink-pack-table-wrap tr {
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.76);
  }

  .pricing-services-table-card tr + tr,
  .pricing-pack-table-card tr + tr,
  .starlink-pack-table-wrap tr + tr {
    margin-top: 12px;
  }

  .pricing-services-table-card th,
  .pricing-services-table-card td,
  .pricing-pack-table-card th,
  .pricing-pack-table-card td,
  .starlink-pack-table-wrap th,
  .starlink-pack-table-wrap td {
    border: 0;
    padding: 0;
  }

  .pricing-services-table-card td + td,
  .pricing-pack-table-card td,
  .starlink-pack-table-wrap td {
    margin-top: 10px;
  }

  .pricing-services-table-card td:first-child,
  .pricing-pack-table-card th,
  .starlink-pack-table-wrap th {
    color: var(--color-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.18;
  }

  .pricing-services-table-card td:nth-child(2) {
    display: inline-flex;
    width: auto;
    margin-top: 10px;
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--color-pixel-blue-deep);
    background: rgba(95, 134, 255, 0.14);
    font-weight: 900;
  }

  .pricing-services-table-card td:nth-child(3) {
    margin-top: 12px;
    color: rgba(5, 5, 5, 0.62);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
  }

  .pricing-dense-table-card tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 10px;
    align-items: start;
    border-radius: 10px;
    padding: 12px;
  }

  .pricing-dense-table-card tr + tr {
    margin-top: 8px;
  }

  .pricing-dense-table-card td:first-child {
    font-size: 15px;
    line-height: 1.22;
  }

  .pricing-dense-table-card td:nth-child(2) {
    justify-self: end;
    margin-top: 0;
    padding: 7px 10px;
    font-size: 14px;
  }

  .pricing-dense-table-card td:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 0;
    font-size: 13px;
  }

  .pricing-pack-table-card td,
  .starlink-pack-table-wrap td {
    display: grid;
    grid-template-columns: minmax(92px, 0.45fr) minmax(0, 0.55fr);
    gap: 10px;
    align-items: start;
    color: var(--color-muted);
    font-weight: 800;
  }

  .pricing-pack-table-card td:nth-child(2)::before {
    content: "Essentiel";
  }

  .pricing-pack-table-card td:nth-child(3)::before {
    content: "Confort";
  }

  .pricing-pack-table-card td:nth-child(4)::before {
    content: "Sérénité";
  }

  .starlink-pack-table-wrap td:nth-child(2)::before {
    content: "Standard";
  }

  .starlink-pack-table-wrap td:nth-child(3)::before {
    content: "Mini";
  }

  .pricing-pack-table-card td::before,
  .starlink-pack-table-wrap td::before {
    color: rgba(5, 5, 5, 0.58);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .starlink-pack-table-wrap .starlink-kit-row {
    display: none;
  }

  .pricing-pack-table-card {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .pricing-pack-table-card tr {
    display: grid;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.82);
  }

  .pricing-pack-table-card th {
    max-width: none;
    padding: 0 0 2px;
    background: transparent !important;
    font-size: 18px;
    line-height: 1.12;
  }

  .pricing-pack-table-card td {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-top: 0;
    border-radius: 10px;
    padding: 9px 12px;
    background: rgba(95, 134, 255, 0.075);
  }

  .pricing-pack-table-card td + td {
    margin-top: 0;
  }

  .pricing-pack-table-card td::before {
    color: rgba(5, 5, 5, 0.62);
    font-size: 12px;
  }

  .pricing-pack-table-card .pack-check,
  .pricing-pack-table-card .pack-cross {
    justify-self: end;
    min-width: 1.2rem;
    text-align: center;
  }

  .pricing-pack-table-card .pricing-pack-price-row td {
    background: rgba(95, 134, 255, 0.13) !important;
    color: var(--color-pixel-blue-deep);
  }

  .section-heading h1,
  .section-heading h2,
  .editorial-hero h1,
  .legal-hero h1,
  .zone-hero h1,
  .pricing-intro h1,
  .pro-large-title {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 0.98;
  }

  .card,
  .form-card,
  .table-card,
  .mini-card,
  .icon-card,
  .pricing-case-card,
  .pricing-pack-summary,
  .pricing-pack-table-card,
  .seo-links-card,
  .pricing-cta-card,
  .seo-cta-card,
  .quote-custom-form,
  .wifi-questionnaire-card,
  .starlink-pack-card {
    border-radius: 16px;
    padding: 22px;
  }

  .site-footer {
    padding-block: 36px calc(36px + env(safe-area-inset-bottom));
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-whatsapp-button {
    width: 100%;
    justify-self: stretch;
  }

  .footer-column {
    gap: 12px;
  }

  .footer-column a {
    min-height: 38px;
    display: flex;
    align-items: center;
  }

  .zone-map-shell,
  .zone-map {
    min-height: 220px;
  }

  .zone-legend {
    grid-template-columns: 1fr;
  }

  .home-zone-dialog-grid {
    grid-template-columns: 1fr;
  }

  .home-zone-dialog-panel {
    padding: 14px;
  }

  .home-zone-dialog .zone-map-shell,
  .home-zone-dialog .zone-map {
    min-height: 240px;
  }

  .zone-search-form {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand-logo-image {
    width: 118px;
  }

  .header-callback-cta {
    padding-inline: 10px;
  }

  .home-hero-intents {
    grid-template-columns: 1fr;
  }

  .home-hero-intents a {
    min-height: 64px;
  }

  .home-hero-intents strong {
    display: block;
    font-size: 12px;
    line-height: 1.18;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  :root {
    --header-h: 70px;
  }

  .site-header,
  .header-inner {
    min-height: var(--header-h);
  }

  .brand-logo-image {
    width: 124px;
  }

  .header-callback-cta,
  .nav-toggle {
    min-height: 40px;
    height: 40px;
  }

  .header-callback-cta {
    order: 1;
  }

  .nav-toggle {
    order: 2;
  }

  .visual-hero,
  .visual-hero-frame,
  .home-manifesto-hero,
  .home-manifesto-panel,
  .pro-hero,
  .pro-hero-inner,
  .immersive-questionnaire-section,
  .immersive-questionnaire-card,
  .immersive-questionnaire-inner {
    min-height: auto;
    overflow: visible;
  }

  .visual-hero-copy,
  .pro-hero-inner {
    min-height: auto;
    padding-block: 28px;
  }

  .home-manifesto-title {
    padding-top: 28px;
  }

  .home-manifesto-copy {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 32px, 760px);
    margin: 20px auto 28px;
  }

  .visual-hero-copy h1,
  .home-manifesto-title h1,
  .pro-hero-copy h1 {
    font-size: clamp(34px, 7vw, 46px);
  }

  .visual-hero-copy p,
  .pro-hero-copy p {
    font-size: 16px;
  }

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

body.site-body a[href],
body.site-body a[href] *,
body.site-body button,
body.site-body button *,
body.site-body .button,
body.site-body .button *,
body.site-body [role="button"],
body.site-body [role="button"] *,
body.site-body summary,
body.site-body summary *,
body.site-body label,
body.site-body label *,
body.site-body input[type="button"],
body.site-body input[type="submit"],
body.site-body input[type="reset"],
body.site-body input[type="checkbox"],
body.site-body input[type="radio"],
body.site-body input[type="range"],
body.site-body input[type="file"],
body.site-body input[type="color"],
body.site-body select {
  cursor: pointer !important;
}

body.site-body input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]):not([type="color"]),
body.site-body textarea {
  cursor: text !important;
}

body.site-body button:disabled,
body.site-body button:disabled *,
body.site-body .button[disabled],
body.site-body .button[disabled] *,
body.site-body input:disabled,
body.site-body select:disabled,
body.site-body textarea:disabled {
  cursor: not-allowed !important;
}
