:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #050712;
  --panel: rgba(15, 23, 42, 0.78);
  --text: #f8fafc;
  --muted: #a7b0c5;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --lime: #a3e635;
  --line: rgba(148, 163, 184, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.35), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(34, 211, 238, 0.22), transparent 24rem),
    linear-gradient(135deg, #020617 0%, #07111f 48%, #071827 100%);
  color: var(--text);
}

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

code {
  color: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  font-weight: 900;
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
}

.brand strong {
  display: block;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

nav a {
  color: var(--muted);
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  transition: 180ms ease;
}

nav a:hover,
.portal-link {
  color: var(--text);
  background: rgba(148, 163, 184, 0.12);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.4rem;
}

main {
  overflow: hidden;
}

.hero,
.section {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  min-height: 760px;
  padding: 5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}

h3 {
  letter-spacing: -0.025em;
}

.lead,
.section-heading p,
.highlight p,
.contact-card p,
.service-card p,
.faq p,
footer p,
footer span {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 650px;
  font-size: 1.18rem;
}

.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #dbeafe;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.5);
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  border: 0;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button.compact {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
}

.hero-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 2rem;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(34, 211, 238, 0.16), transparent 36%),
    rgba(15, 23, 42, 0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 63%);
  filter: blur(8px);
}

.signal-orb {
  position: relative;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.55);
  color: var(--cyan);
  font-size: 5rem;
}

.metric {
  position: relative;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.55);
}

.metric span {
  display: block;
  font-size: 1.8rem;
  font-weight: 950;
}

.metric small {
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 2rem;
  max-width: none;
  align-items: end;
}

.service-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.faq article,
.plan-card,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.service-card,
.faq article {
  padding: 1.5rem;
}

.card-icon,
.plan-icon {
  color: var(--cyan);
  font-size: 1.8rem;
}

.tariff-groups {
  display: grid;
  gap: 1.5rem;
}

.plan-category {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 34%),
    rgba(2, 6, 23, 0.28);
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-heading .eyebrow {
  margin-bottom: 0.35rem;
}

.category-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 20px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  font-size: 2rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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


.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 405px;
  padding: 1.25rem;
}

.plan-card.featured {
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.13), rgba(15, 23, 42, 0.82));
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.plan-top span:last-child {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 850;
}

.plan-card small {
  color: var(--muted);
}

.speed {
  color: #dbeafe;
  font-weight: 800;
  font-size: 1.25rem;
}

.price {
  font-size: 2rem;
  font-weight: 950;
  margin-bottom: 1rem;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

ul {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
  color: var(--muted);
}

li {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.notice {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(2, 6, 23, 0.42);
}

.highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(34, 211, 238, 0.14));
}

.highlight div {
  max-width: 760px;
}

.documents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.documents a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  color: #dbeafe;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-card,
.contact-form {
  padding: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #dbeafe;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.62);
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 3rem auto 0;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
}

footer div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

footer a,
footer span {
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin: 1rem 0 0;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 230px;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(2, 6, 23, 0.95);
  }

  nav.open {
    display: flex;
  }

  .hero,
  .section-heading.split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .service-grid,
  .plan-grid,
  .plan-grid.two {
    grid-template-columns: repeat(2, 1fr);
}

  .documents,
  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    border-radius: 24px;
  }

  .brand small {
    display: none;
  }

  .hero-card {
    min-height: 420px;
  }

  .service-grid,
  .plan-grid,
  .plan-grid.two,
  .faq-grid,
  .documents,
  footer {
    grid-template-columns: 1fr;
}

  .highlight {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Light refresh for UltraConnect */
:root {
  color-scheme: light;
  --bg: #f4f9ff;
  --panel: rgba(255, 255, 255, 0.88);
  --text: #0f172a;
  --muted: #526174;
  --cyan: #0891b2;
  --blue: #2563eb;
  --lime: #16a34a;
  --line: rgba(37, 99, 235, 0.14);
  --shadow: 0 28px 80px rgba(37, 99, 235, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 0%, rgba(37, 99, 235, 0.16), transparent 26rem),
    linear-gradient(135deg, #f8fcff 0%, #eef7ff 48%, #f8fbff 100%);
  color: var(--text);
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
}

nav a {
  color: #526174;
}

nav a:hover,
.portal-link {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.menu-toggle {
  color: var(--text);
}

.brand-mark,
.button.primary,
.to-top {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.hero-card,
.service-card,
.faq article,
.plan-card,
.contact-card,
.contact-form {
  background: rgba(255, 255, 255, 0.9);
}

.hero-card {
  background:
    linear-gradient(160deg, rgba(34, 211, 238, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.86);
}

.metric,
.plan-category,
.notice,
.documents a {
  background: rgba(255, 255, 255, 0.78);
}

.signal-orb {
  background: rgba(255, 255, 255, 0.8);
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.16), rgba(255, 255, 255, 0.92));
}

.button.secondary {
  background: rgba(37, 99, 235, 0.06);
  color: var(--blue);
}

.speed,
.documents a,
.contact-list a,
.contact-list span {
  color: #1e3a8a;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.16));
}

/* New visual sections */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-grid article {
  position: relative;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-grid article::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.14));
  color: var(--blue);
  font-weight: 950;
}

.coverage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.coverage-copy,
.coverage-map {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.coverage-copy {
  padding: 2rem;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}

.coverage-tags span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  color: #1e3a8a;
  font-weight: 800;
}

.coverage-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(37, 99, 235, 0.08)),
    #f8fbff;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.coverage-ring {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(34, 211, 238, 0.42);
  border-radius: 50%;
}

.ring-one {
  width: 150px;
  height: 150px;
}

.ring-two {
  width: 260px;
  height: 260px;
  border-color: rgba(37, 99, 235, 0.24);
}

.ring-three {
  width: 370px;
  height: 370px;
  border-color: rgba(22, 163, 74, 0.2);
}

.map-pin {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #0f172a;
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.map-pin::before {
  content: '';
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: #22d3ee;
}

.map-pin.main {
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.map-pin.north {
  left: 34%;
  top: 24%;
}

.map-pin.east {
  right: 16%;
  top: 43%;
}

.map-pin.south {
  left: 24%;
  bottom: 18%;
}

@media (max-width: 980px) {
  .process-grid,
  .coverage {
    grid-template-columns: 1fr 1fr;
  }

  nav {
    background: rgba(255, 255, 255, 0.96);
  }
}

@media (max-width: 640px) {
  .process-grid,
  .coverage {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 340px;
  }
}

/* UltraConnect light visual refresh */
:root {
  color-scheme: light;
  --bg: #f4f9ff;
  --panel: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
  --muted: #526174;
  --cyan: #0891b2;
  --blue: #2563eb;
  --lime: #16a34a;
  --line: rgba(37, 99, 235, 0.14);
  --shadow: 0 28px 80px rgba(37, 99, 235, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 0%, rgba(37, 99, 235, 0.16), transparent 26rem),
    linear-gradient(135deg, #f8fcff 0%, #eef7ff 48%, #f8fbff 100%);
  color: var(--text);
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
}

nav a {
  color: #526174;
}

nav a:hover,
.portal-link {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.menu-toggle {
  color: var(--text);
}

.brand-mark,
.button.primary,
.to-top {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.hero-card,
.service-card,
.faq article,
.plan-card,
.contact-card,
.contact-form {
  background: rgba(255, 255, 255, 0.9);
}

.hero-card {
  background:
    linear-gradient(160deg, rgba(34, 211, 238, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.86);
}

.metric,
.plan-category,
.notice,
.documents a {
  background: rgba(255, 255, 255, 0.78);
}

.signal-orb {
  background: rgba(255, 255, 255, 0.8);
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.16), rgba(255, 255, 255, 0.92));
}

.button.secondary {
  background: rgba(37, 99, 235, 0.06);
  color: var(--blue);
}

.speed,
.documents a,
.contact-list a,
.contact-list span {
  color: #1e3a8a;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.16));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-grid article {
  position: relative;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-grid article::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.14));
  color: var(--blue);
  font-weight: 950;
}

.coverage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.coverage-copy,
.coverage-map {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.coverage-copy {
  padding: 2rem;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}

.coverage-tags span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  color: #1e3a8a;
  font-weight: 800;
}

.coverage-map {
  min-height: 430px;
  overflow: hidden;
}

.coverage-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

@media (max-width: 980px) {
  .process-grid,
  .coverage {
    grid-template-columns: 1fr 1fr;
  }

  nav {
    background: rgba(255, 255, 255, 0.96);
  }
}

@media (max-width: 640px) {
  .process-grid,
  .coverage {
    grid-template-columns: 1fr;
  }

  .coverage-map,
  .coverage-map iframe {
    min-height: 340px;
  }
}

/* Full width Google coverage map */
.coverage-full {
  padding-top: 4rem;
}

.google-map-large {
  width: 100%;
  height: min(72vh, 720px);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.google-map-large iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .google-map-large {
    min-height: 420px;
    border-radius: 24px;
  }
}

/* Business section */
.business {
  position: relative;
}

.business-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.business-hero > div:first-child,
.business-speed-card,
.business-card,
.business-panel {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.business-hero > div:first-child {
  padding: 2rem;
}

.business-speed-card {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 2rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.22), transparent 12rem),
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.94));
}

.business-speed-card span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.business-speed-card strong {
  display: block;
  margin: 0.4rem 0;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: #1e3a8a;
}

.business-speed-card small {
  color: var(--muted);
  line-height: 1.6;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.business-card {
  padding: 1.35rem;
}

.business-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.14));
  color: var(--blue);
  font-size: 1.7rem;
  font-weight: 950;
}

.business-card p,
.business-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.business-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.92);
}

.business-panel h3,
.business-panel p {
  margin-bottom: 0.35rem;
}

@media (max-width: 980px) {
  .business-hero,
  .business-grid {
    grid-template-columns: 1fr 1fr;
  }

  .business-hero > div:first-child {
    grid-column: 1 / -1;
  }

  .business-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .business-hero,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-speed-card strong {
    font-size: 3.4rem;
  }
}
