
:root {
  --primary: #2f8fd7;
  --primary-dark: #0a1b33;
  --primary-deep: #102544;
  --accent: #6cc4ff;
  --text: #10233f;
  --muted: #5e7088;
  --surface: #f4f8fc;
  --surface-2: #eef4fb;
  --white: #ffffff;
  --border: rgba(16, 35, 63, 0.12);
  --shadow: 0 18px 50px rgba(7, 25, 46, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-deep); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary-dark);
  color: white;
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
}
.topbar__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.topbar__links, .topbar__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.9); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(16,35,63,0.08);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(13, 31, 56, 0.08); }
.site-header__brand-row {
  background: rgba(255,255,255,0.96);
}
.site-header__brand-inner {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  gap: 16px 24px;
  align-items: center;
  padding: 16px 0;
}
.logo-wrap {
  display: inline-flex;
  align-items: center;
}
.logo-wrap img {
  width: 240px;
  height: auto;
}
.site-header__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 420px;
}
.site-header__brand-copy strong {
  font-size: 1.12rem;
  line-height: 1.15;
  color: var(--primary-dark);
}
.site-header__brand-copy span {
  color: var(--muted);
  font-size: 0.96rem;
}
.site-header__nav-row {
  border-top: 1px solid rgba(16,35,63,0.08);
  background: rgba(255,255,255,0.98);
}
.site-header__nav-inner {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.site-nav {
  width: 100%;
}
.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav__menu li {
  display: flex;
}
.site-nav__menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--text);
  font-weight: 700;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.site-nav__menu a:hover,
.site-nav__menu a.is-active {
  background: rgba(47, 143, 215, 0.14);
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px rgba(47, 143, 215, 0.14);
}
.site-header__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--primary-dark);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg) translate(1px, 1px); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg) translate(2px, -2px); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary {
  background: linear-gradient(135deg, var(--primary), #4aa9ef);
  color: white;
  box-shadow: 0 14px 32px rgba(47, 143, 215, 0.28);
}
.button--primary:hover { color: white; box-shadow: 0 18px 35px rgba(47, 143, 215, 0.32); }
.button--secondary {
  background: rgba(47, 143, 215, 0.08);
  color: var(--primary-dark);
  border-color: rgba(47, 143, 215, 0.20);
}
.button--secondary-light {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.24);
}
.button--secondary-light:hover { color: white; background: rgba(255,255,255,0.14); }
.button--light { background: white; color: var(--primary-dark); }
.button--light:hover { color: var(--primary-dark); }
.button--ghost { background: white; border-color: var(--border); color: var(--text); }
.button--full { width: 100%; }
main { overflow: clip; }
.hero {
  position: relative;
  padding: 92px 0 68px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(108,196,255,0.24), rgba(108,196,255,0));
  z-index: -1;
}
.hero--home::before {
  background:
    linear-gradient(135deg, rgba(8, 19, 36, 0.92), rgba(12, 31, 60, 0.84)),
    url('../assets/images/hero-network.jpg') center/cover no-repeat;
}
.hero--page.hero--dark::before {
  background: radial-gradient(circle at top left, rgba(108,196,255,0.18), transparent 28%), linear-gradient(135deg, #081628, #102544 55%, #14345d);
}
.hero--page.hero--light::before {
  background: radial-gradient(circle at top left, rgba(47,143,215,0.18), transparent 22%), linear-gradient(180deg, #f6fbff 0%, #eef5fb 100%);
}
.hero--page.hero--light h1,
.hero--page.hero--light .hero__lead,
.hero--page.hero--light .eyebrow { color: var(--text); }
.hero--page.hero--dark h1,
.hero--page.hero--dark .hero__lead,
.hero--page.hero--dark .eyebrow { color: white; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 32px;
  align-items: center;
}
.hero__content,
.hero__page-wrap {
  position: relative;
  z-index: 1;
}
.hero__page-wrap { max-width: 860px; }
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
}
.hero .eyebrow { color: rgba(255,255,255,0.78); }
.section-heading .eyebrow { color: var(--primary); }
.cta-banner .eyebrow { color: rgba(255,255,255,0.74); }
.hero h1,
.hero__page-wrap h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.05;
  color: white;
}
.hero__lead {
  font-size: 1.12rem;
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  margin: 20px 0 0;
}
.hero__actions, .button-row, .button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.hero__chips li,
.mini-badges span,
.tag-cloud span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}
.hero__chips li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  font-size: 0.95rem;
}
.card {
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.glass-card {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 26px 60px rgba(4, 12, 22, 0.28);
  backdrop-filter: blur(18px);
  color: white;
  padding: 28px;
}
.glass-card h2, .glass-card p, .glass-card a { color: white; }
.card__kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.74;
}
.quick-contact {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.quick-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
}
.quick-contact a:hover { background: rgba(255,255,255,0.18); color: white; }
.mini-badges, .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.mini-badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  font-size: 0.88rem;
}
.trust-strip {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-strip__grid article {
  background: white;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.trust-strip__grid strong,
.trust-card strong {
  display: block;
  font-size: 1.04rem;
  margin-bottom: 6px;
}
.trust-strip__grid span,
.trust-card span { color: var(--muted); }
.section { padding: 88px 0; }
.section--compact { padding-bottom: 0; }
.section--light { background: linear-gradient(180deg, #f6fbff 0%, #eef5fb 100%); }
.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0;
}
.section-heading p:last-child { margin: 14px 0 0; color: var(--muted); }
.pricing-grid,
.feature-grid,
.testimonial-grid,
.steps-grid,
.contact-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.price-card, .feature-card, .testimonial, .step-card, .contact-card, .gallery-card, .form-card, .info-panel, .embed-card, .prose-card {
  padding: 28px;
}
.price-card h2, .price-card h3, .feature-card h2, .feature-card h3, .contact-card h2, .testimonial h3, .step-card h3, .info-panel h2, .info-panel h3, .embed-card h2, .prose-card h2 { margin-top: 0; }
.price-card__speed {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.price-card__price {
  margin: 10px 0 18px;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
  color: var(--primary-dark);
}
.price-card__price small { font-size: 1rem; font-weight: 700; color: var(--muted); }
.price-card__note { color: var(--muted); font-weight: 700; }
.featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(47,143,215,0.24);
}
.featured::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.dark-card {
  background: linear-gradient(165deg, #0b1e38, #14345d);
  color: white;
  border-color: rgba(255,255,255,0.08);
}
.dark-card h3, .dark-card p, .dark-card li, .dark-card .price-card__speed, .dark-card .price-card__note { color: white; }
.dark-card .check-list li::before { background: rgba(255,255,255,0.18); color: white; }
.section-note {
  margin: 20px 0 0;
  color: var(--muted);
  text-align: center;
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47,143,215,0.14), rgba(108,196,255,0.22));
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 16px;
}
.feature-list { display: grid; gap: 18px; }
.feature-item {
  padding: 22px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.feature-item h3 { margin-top: 0; margin-bottom: 8px; }
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}
.split-layout--media { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.info-panel {
  background: linear-gradient(180deg, #0f2442 0%, #16365f 100%);
  color: white;
  border-color: rgba(255,255,255,0.06);
}
.info-panel p, .info-panel a, .info-panel li { color: rgba(255,255,255,0.9); }
.info-panel__box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.tag-cloud span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  font-size: 0.92rem;
}
.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 36px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,143,215,0.14);
  color: var(--primary-dark);
  font-weight: 800;
}
.testimonial p, .feature-card p, .contact-card p, .step-card p, .price-card p, .info-panel p, .prose-card p { color: var(--muted); }
.testimonial h3 { font-size: 1.1rem; }
.step-card {
  text-align: center;
}
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 1.28rem;
  font-weight: 900;
}
.cta-banner {
  padding: 0 0 88px;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0a1b33, #17395f 65%, #2f8fd7);
  color: white;
  box-shadow: 0 24px 60px rgba(8, 23, 43, 0.22);
}
.cta-banner__inner h2 { margin: 0; font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-banner__inner p:not(.eyebrow) { color: rgba(255,255,255,0.84); }
.form-card, .embed-card {
  padding: 32px;
}
.styled-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.styled-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.styled-form input,
.styled-form select,
.styled-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16,35,63,0.16);
  background: #fbfdff;
  color: var(--text);
}
.styled-form textarea { min-height: 128px; resize: vertical; }
.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
  outline: 3px solid rgba(47,143,215,0.16);
  border-color: rgba(47,143,215,0.42);
}
.small-note {
  margin: 14px 0 0;
  font-size: 0.96rem;
  color: var(--muted);
}
.embed-shell {
  min-height: 320px;
  margin-top: 18px;
  border-radius: 24px;
  border: 2px dashed rgba(47,143,215,0.26);
  background: linear-gradient(180deg, rgba(47,143,215,0.06), rgba(108,196,255,0.08));
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}
.embed-shell--medium { min-height: 260px; }
.embed-shell--tall { min-height: 420px; }
.embed-shell__label {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47,143,215,0.14);
  color: var(--primary-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.contact-card a { font-size: 1.1rem; font-weight: 800; }
.faq-list {
  max-width: 900px;
}
.faq-list details {
  padding: 20px 22px;
  margin-bottom: 14px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding-right: 36px;
  position: relative;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.5rem;
  color: var(--primary);
}
.faq-list details[open] summary::after { content: "−"; }
.prose-card { max-width: 900px; }
.gallery-card {
  overflow: hidden;
  padding: 0;
}
.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.gallery-card figcaption { padding: 18px 22px 24px; color: var(--muted); }
.site-footer {
  background: #071527;
  color: rgba(255,255,255,0.82);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 1fr)) minmax(220px, 1fr);
  gap: 28px;
}
.site-footer h2,
.site-footer h3,
.site-footer a,
.site-footer strong { color: white; }
.footer-logo img { width: 220px; }
.footer-nav,
.footer-services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-contact {
  display: grid;
  gap: 10px;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.68);
}
.legal-links { display: flex; gap: 14px; flex-wrap: wrap; }
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  display: none;
  gap: 10px;
  background: rgba(7, 21, 39, 0.88);
  backdrop-filter: blur(18px);
}
.mobile-cta .button { flex: 1; min-width: 0; }
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 96;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #25d366;
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.30);
}
@media (max-width: 1120px) {
  .site-header__brand-inner {
    grid-template-columns: auto auto;
    align-items: center;
  }
  .site-header__brand-copy {
    grid-column: 1 / -1;
    max-width: none;
  }
  .site-header__cta { display: none; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    grid-column: 2;
    justify-self: end;
  }
  .site-header__nav-row {
    border-top: 0;
  }
  .site-header__nav-inner {
    padding: 0;
    height: 0;
  }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav__menu {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: white;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .site-nav__menu a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    border-radius: 16px;
  }
}
@media (max-width: 960px) {
  .hero__grid,
  .split-layout,
  .split-layout--media,
  .cta-banner__inner,
  .footer-grid,
  .trust-strip__grid,
  .pricing-grid,
  .feature-grid--3,
  .feature-grid--4,
  .testimonial-grid,
  .steps-grid,
  .steps-grid--4,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 76px; }
  .trust-strip { margin-top: 0; padding-top: 24px; }
  .cta-banner__inner { text-align: left; }
}
@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .topbar__inner { flex-direction: column; align-items: flex-start; }
  .site-header__brand-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
  }
  .logo-wrap { align-items: flex-start; }
  .logo-wrap img { width: min(190px, 100%); }
  .site-header__brand-copy strong { font-size: 1rem; }
  .site-header__brand-copy span { font-size: 0.92rem; }
  .site-nav {
    left: 12px;
    right: 12px;
  }
  .section { padding: 68px 0; }
  .glass-card,
  .price-card,
  .feature-card,
  .testimonial,
  .step-card,
  .contact-card,
  .gallery-card,
  .form-card,
  .info-panel,
  .embed-card,
  .prose-card,
  .trust-strip__grid article { padding: 22px; }
  .hero__chips li { width: 100%; }
  .button-row, .button-stack, .hero__actions { flex-direction: column; align-items: stretch; }
  .mobile-cta { display: flex; }
  .floating-wa { bottom: 86px; }
  body { padding-bottom: 86px; }
}

.section--coverage-results {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}
.coverage-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
}
.coverage-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(16,35,63,0.08);
  background: white;
  box-shadow: 0 20px 50px rgba(7, 25, 46, 0.12);
}
.coverage-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
}
.coverage-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
}
.coverage-card__label {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
}
.coverage-card__head h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--primary-dark);
}
.coverage-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  color: white;
}
.coverage-card__body {
  padding: 0 24px 24px;
}
.coverage-alert {
  padding: 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}
.coverage-alert strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.coverage-alert p {
  margin: 0;
  color: inherit;
}
.coverage-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}
.coverage-points li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
}
.coverage-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 900;
}
.coverage-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.coverage-card__actions .button {
  flex: 1 1 180px;
}
.coverage-card--ftth::before {
  background: linear-gradient(90deg, #00c389, #00a7e1);
}
.coverage-card--ftth .coverage-card__status {
  background: linear-gradient(135deg, #00c389, #00a7e1);
}
.coverage-card--ftth .coverage-alert {
  background: linear-gradient(180deg, rgba(0, 195, 137, 0.12), rgba(0, 167, 225, 0.14));
  border-color: rgba(0, 180, 143, 0.22);
  color: #0d4d46;
}
.coverage-card--ftth .coverage-points li::before {
  background: rgba(0, 195, 137, 0.14);
  color: #00a173;
}
.coverage-card--vdsl::before {
  background: linear-gradient(90deg, #ffb800, #ff8f1f);
}
.coverage-card--vdsl .coverage-card__status {
  background: linear-gradient(135deg, #ffb800, #ff8f1f);
}
.coverage-card--vdsl .coverage-alert {
  background: linear-gradient(180deg, rgba(255, 184, 0, 0.14), rgba(255, 143, 31, 0.14));
  border-color: rgba(255, 166, 0, 0.20);
  color: #714d00;
}
.coverage-card--vdsl .coverage-points li::before {
  background: rgba(255, 184, 0, 0.16);
  color: #e08a00;
}
.coverage-card--evdsl::before {
  background: linear-gradient(90deg, #7b61ff, #4b8df8);
}
.coverage-card--evdsl .coverage-card__status {
  background: linear-gradient(135deg, #7b61ff, #4b8df8);
}
.coverage-card--evdsl .coverage-alert {
  background: linear-gradient(180deg, rgba(123, 97, 255, 0.12), rgba(75, 141, 248, 0.14));
  border-color: rgba(99, 112, 255, 0.20);
  color: #3b3e8f;
}
.coverage-card--evdsl .coverage-points li::before {
  background: rgba(123, 97, 255, 0.14);
  color: #5d4ef4;
}
@media (max-width: 960px) {
  .coverage-results-grid {
    grid-template-columns: 1fr;
  }
}
                /* =========================================================
   WIFIMULTIMEDIA - HEADER MOBILE PROFESSIONALE
   ========================================================= */

@media (max-width: 768px) {

  /* Nasconde i riferimenti aziendali in alto su smartphone */
  .topbar {
    display: none !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 35, 63, 0.10);
    box-shadow: 0 10px 28px rgba(7, 25, 46, 0.08);
  }

  .site-header__brand-row {
    background: #ffffff;
  }

  .site-header__brand-inner {
    width: min(100% - 28px, 520px);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0 18px;
    position: relative;
  }

  .logo-wrap {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .logo-wrap img {
    width: min(100%, 430px) !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 128px;
    object-fit: contain;
    object-position: center;
  }

  .site-header__brand-copy {
    width: 100%;
    max-width: 100% !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 4px;
  }

  .site-header__brand-copy strong {
    display: block;
    font-size: clamp(1.18rem, 5.2vw, 1.55rem);
    line-height: 1.15;
    font-weight: 900;
    color: #0a1b33;
    letter-spacing: -0.02em;
  }

  .site-header__brand-copy span {
    display: block;
    font-size: clamp(0.98rem, 4vw, 1.15rem);
    line-height: 1.25;
    color: #5e7088;
    font-weight: 600;
  }

  .site-header__cta {
    display: none !important;
  }

  .nav-toggle {
    display: inline-grid !important;
    place-items: center;
    align-self: flex-end;
    width: 58px;
    height: 58px;
    margin-top: 4px;
    border-radius: 20px;
    border: 1px solid rgba(16, 35, 63, 0.14);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(7, 25, 46, 0.12);
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #0a1b33;
  }

  .nav-toggle::before {
    transform: translateY(-8px);
  }

  .nav-toggle::after {
    transform: translateY(5px);
  }

  .site-header__nav-row {
    border-top: 0 !important;
    background: transparent !important;
  }

  .site-header__nav-inner {
    height: 0;
    padding: 0;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__menu {
    display: grid !important;
    gap: 8px;
    padding: 14px;
    margin: 0;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(16, 35, 63, 0.12);
    box-shadow: 0 22px 55px rgba(7, 25, 46, 0.18);
  }

  .site-nav__menu li {
    display: block;
    width: 100%;
  }

  .site-nav__menu a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 1.02rem;
    font-weight: 800;
    color: #0a1b33;
    white-space: normal;
  }

  .site-nav__menu a:hover,
  .site-nav__menu a.is-active {
    background: linear-gradient(135deg, rgba(47, 143, 215, 0.16), rgba(108, 196, 255, 0.18));
    color: #0a1b33;
    box-shadow: inset 0 0 0 1px rgba(47, 143, 215, 0.20);
  }

  .hero {
    padding-top: 62px;
  }
}