:root {
  --bg: #050a13;
  --panel: rgba(8, 14, 25, .82);
  --panel-2: rgba(12, 21, 36, .72);
  --line: rgba(121, 181, 255, .18);
  --text: #eef6ff;
  --muted: #96a6ba;
  --blue: #77baff;
  --cyan: #00d8ff;
  --green: #38f5b3;
  --shadow: 0 34px 110px rgba(0, 0, 0, .46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 28%, rgba(33, 93, 172, .32), transparent 32%),
    radial-gradient(circle at 84% 22%, rgba(0, 216, 255, .11), transparent 30%),
    linear-gradient(180deg, #071120 0%, #030711 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.55), transparent);
}

#space {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.ticker {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 9, 17, .96);
}

.ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 30s linear infinite;
  color: #c7d4e4;
  font: 800 .72rem JetBrains Mono, monospace;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.ticker a {
  color: var(--blue);
  text-decoration: none;
}

.ticker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0,216,255,.8);
}

.site-header {
  position: fixed;
  left: 50%;
  top: 68px;
  z-index: 40;
  width: min(1280px, calc(100% - 40px));
  min-height: 72px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 12, 22, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.25rem;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
}

.brand span span,
.brand-dot {
  color: var(--cyan);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: #aeb9c9;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
}

.nav a:hover { color: #fff; }

.nav-item {
  position: relative;
  padding: 24px 0;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 66px;
  width: min(560px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border: 1px solid rgba(119,186,255,.24);
  border-radius: 24px;
  background: rgba(5, 9, 17, .96);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(10px);
  transition: .2s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}

.mega-menu b { color: #fff; }
.mega-menu small { color: var(--muted); font-weight: 800; }

.currency-switch {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font: 900 .72rem JetBrains Mono, monospace;
  text-transform: uppercase;
}

.currency-switch select {
  border: 0;
  outline: 0;
  color: #fff;
  background: rgba(0,0,0,.35);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 900;
}

.header-cta,
.btn,
.plan-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  background: rgba(255,255,255,.07);
  transition: transform .2s ease, border-color .2s ease;
}

.header-cta,
.btn.primary,
.plan-btn {
  background: linear-gradient(135deg, #258bff, #00d8ff);
  box-shadow: 0 18px 50px rgba(0, 132, 255, .28);
}

.btn.ghost { background: rgba(255,255,255,.07); }
.btn:hover, .plan-btn:hover, .header-cta:hover { transform: translateY(-2px); }
.nav-toggle { display: none; }

.hero {
  width: min(1280px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 190px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font: 800 .78rem JetBrains Mono, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: .84;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  color: #c8d1de;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  line-height: 1.58;
}

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

.hero-locations {
  margin-top: 48px;
  color: #7f91a8;
  font: 800 .68rem JetBrains Mono, monospace;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-network {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    rgba(5, 10, 20, .62);
  background-size: 28px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-network article {
  position: relative;
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(119,186,255,.18);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  animation: floatCard 8s ease-in-out infinite;
}

.hero-network article:nth-child(2),
.hero-network article:nth-child(4) {
  animation-delay: -2s;
}

.hero-network span {
  color: #b9c5d5;
  font: 900 .72rem JetBrains Mono, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-network b {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #7f94ad;
  font: 900 .76rem JetBrains Mono, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-network i {
  position: absolute;
  right: 16px;
  bottom: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(119,186,255,.9);
}

.section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.section-copy h2,
.support-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.8vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.03em;
}

.section-head p,
.section-copy p,
.support-card p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.75;
}

.metric-strip {
  width: min(1280px, calc(100% - 40px));
  margin: -24px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-strip div,
.service-card,
.status-panel,
.team-card,
.faq-card,
.support-card,
.plan-card,
.category-card,
.feature-card,
.contact-card,
.about-copy,
.about-hologram {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.metric-strip div {
  min-height: 96px;
  padding: 18px;
}

.metric-strip b {
  display: block;
  margin-bottom: 6px;
  font-size: 1.55rem;
}

.metric-strip span {
  color: var(--muted);
  font-weight: 800;
}

.split-section,
.about-cinematic {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}

.section-copy,
.status-panel,
.support-card {
  padding: 38px;
}

.about-cinematic .section-copy {
  padding-left: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.about-cinematic h2 em,
.locations-section h2 em {
  color: #aab3bf;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}

.infra-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(16, 31, 49, .74);
  box-shadow: var(--shadow);
}

.infra-stats div {
  min-height: 122px;
  padding: 24px;
  border-right: 1px solid rgba(119,186,255,.1);
  border-bottom: 1px solid rgba(119,186,255,.1);
}

.infra-stats b {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
}

.infra-stats span {
  color: var(--muted);
  font: 800 .7rem JetBrains Mono, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.infra-stats a {
  grid-column: 1 / -1;
  padding: 18px 24px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
}

.status-panel span {
  color: var(--cyan);
  font: 900 .76rem JetBrains Mono, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  margin: 20px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

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

.status-panel a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

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

.service-card {
  min-height: 220px;
  padding: 24px;
  color: var(--text);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,216,255,.4);
}

.service-card span,
.team-card span,
.category-card span,
.badge,
.plan-name {
  color: var(--cyan);
  font: 900 .75rem JetBrains Mono, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 34px 0 12px;
  font-size: 1.26rem;
}

.service-card p,
.team-card p,
.plan-card li,
.category-card p,
.feature-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.62;
  font-size: .94rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(16, 31, 49, .64);
  box-shadow: var(--shadow);
}

.detail-grid article {
  position: relative;
  min-height: 205px;
  padding: 24px;
  border-right: 1px solid rgba(119,186,255,.1);
  border-bottom: 1px solid rgba(119,186,255,.1);
  background: rgba(255,255,255,.012);
}

.detail-grid article:nth-child(5) {
  background: rgba(119,186,255,.07);
}

.detail-grid span {
  color: var(--blue);
  font: 800 .72rem JetBrains Mono, monospace;
  letter-spacing: .16em;
}

.detail-grid i {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(119,186,255,.62);
}

.detail-grid h3 {
  margin: 34px 0 10px;
  color: #fff;
  font-size: 1.14rem;
  text-transform: uppercase;
}

.detail-grid p {
  color: #b8c7d9;
  line-height: 1.65;
  font-size: .95rem;
}

.faq-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.faq-card {
  padding: 0;
  overflow: hidden;
}

.faq-card summary {
  cursor: pointer;
  padding: 22px;
  list-style: none;
  font-weight: 900;
}

.faq-card summary::-webkit-details-marker { display: none; }
.faq-card p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.7; }

.team-card {
  min-height: 235px;
  padding: 28px;
}

.team-card h3 {
  margin: 46px 0 12px;
  font-size: 1.8rem;
}

.founder {
  border-color: rgba(0,216,255,.36);
}

.support-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    rgba(8, 17, 31, .62);
  background-size: 36px 36px;
  box-shadow: var(--shadow);
}

.support-hub,
.ticket-steps {
  position: relative;
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(5, 8, 14, .74);
  overflow: hidden;
}

.support-icon {
  position: absolute;
  right: 34px;
  top: 34px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119,186,255,.28);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(119,186,255,.08);
  box-shadow: 0 0 30px rgba(119,186,255,.16);
}

.support-hub h2,
.ticket-steps h2 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: .96;
  text-transform: uppercase;
}

.support-online {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: #eef6ff;
  font-weight: 800;
}

.support-online span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #73d5ff;
  box-shadow: 0 0 0 4px rgba(115,213,255,.18);
}

.support-hub blockquote {
  max-width: 500px;
  margin: 0 0 32px;
  color: #d8e1ed;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
}

.support-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 34px;
  border: 1px solid rgba(119,186,255,.25);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(119,186,255,.08);
}

.support-stats div {
  padding: 16px;
  border-right: 1px solid rgba(119,186,255,.18);
}

.support-stats div:last-child {
  border-right: 0;
}

.support-stats b {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.support-stats small {
  color: var(--muted);
  font: 800 .62rem JetBrains Mono, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.support-email {
  display: block;
  margin-top: 18px;
  color: #8ba6c4;
  text-decoration: none;
  font: 800 .76rem JetBrains Mono, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ticket-steps > p {
  color: var(--muted);
  line-height: 1.7;
}

.ticket-steps ol {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.ticket-steps ol::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(119,186,255,.34);
}

.ticket-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
}

.ticket-steps li span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(119,186,255,.46);
  border-radius: 50%;
  color: var(--blue);
  background: #06101f;
  font: 900 .72rem JetBrains Mono, monospace;
}

.ticket-steps b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  text-transform: uppercase;
}

.ticket-steps small {
  color: #a7b5c8;
  line-height: 1.55;
}

.ticket-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ticket-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(119,186,255,.24);
  border-radius: 999px;
  color: #b8c7d9;
  font: 800 .66rem JetBrains Mono, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 70px;
  padding: 74px 0 26px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 20%, rgba(119,186,255,.13), transparent 32%),
    rgba(4, 8, 15, .9);
}

.footer-grid {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.35fr;
  gap: 42px;
}

.footer-brand p,
.footer-col p {
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-badges span {
  padding: 9px 11px;
  border: 1px solid rgba(0,216,255,.25);
  border-radius: 12px;
  color: var(--green);
  background: rgba(56,245,179,.08);
  font: 900 .68rem JetBrains Mono, monospace;
  text-transform: uppercase;
}

.footer-col h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
}

.footer-col a {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin-bottom: 15px;
  color: #c9d5e5;
  text-decoration: none;
  font-weight: 800;
}

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

.footer-bottom {
  width: min(1280px, calc(100% - 40px));
  margin: 42px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.page-hero {
  width: min(1280px, calc(100% - 40px));
  min-height: 55vh;
  margin: 0 auto;
  padding: 180px 0 70px;
  display: grid;
  align-content: end;
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 6.8vw, 6rem);
  line-height: .92;
  letter-spacing: -.04em;
}

.plan-grid,
.category-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-grid.dense { grid-template-columns: repeat(3, 1fr); }
.plan-card, .category-card, .feature-card, .contact-card { padding: 28px; min-height: 250px; }
.plan-card.popular { border-color: rgba(0,216,255,.42); }
.price { font-size: 2rem; font-weight: 900; }
.price span { color: var(--muted); font-size: .95rem; }
.tabs { display: flex; gap: 8px; width: fit-content; margin: 0 auto 28px; padding: 8px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.05); }
.tab { border: 0; cursor: pointer; border-radius: 12px; padding: 12px 16px; color: var(--muted); background: transparent; font-weight: 900; }
.tab.active { color: #fff; background: linear-gradient(135deg, #258bff, #00d8ff); }
.plan-panel { display: none; }
.plan-panel.active { display: block; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pinPulse {
  0%, 100% { scale: 1; }
  50% { scale: 1.12; }
}

@media (max-width: 1100px) {
  .currency-switch span { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; gap: 34px; }
  .hero-network { grid-template-columns: repeat(2, 1fr); }
  .split-section, .footer-grid { grid-template-columns: 1fr; }
  .service-grid, .team-grid, .plan-grid, .plan-grid.dense, .category-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cinematic, .support-shell { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header { top: 54px; border-radius: 22px; }
  .nav-toggle { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; margin-left: auto; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.06); }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; }
  .nav { position: absolute; left: 12px; right: 12px; top: 78px; display: none; flex-direction: column; align-items: stretch; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(5,9,17,.98); }
  .nav.open { display: flex; }
  .nav-item { padding: 0; }
  .mega-menu { position: static; display: none; width: 100%; opacity: 1; visibility: visible; pointer-events: auto; transform: none; grid-template-columns: 1fr; margin-top: 10px; }
  .nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu { display: grid; transform: none; }
  .header-cta { display: none; }
  .hero-network, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .support-shell { grid-template-columns: 1fr; }
  .support-hub, .ticket-steps { min-height: auto; }
}

@media (max-width: 640px) {
  .ticker { height: 36px; }
  .ticker-track { font-size: .62rem; }
  .site-header { width: calc(100% - 24px); }
  .brand span { display: none; }
  .currency-switch { margin-left: 0; }
  .hero, .section, .metric-strip, .page-hero, .footer-grid, .footer-bottom { width: min(100% - 24px, 1280px); }
  .hero { padding-top: 128px; gap: 24px; }
  .hero h1 { font-size: clamp(2.85rem, 15vw, 4.4rem); line-height: .9; }
  .hero-text { font-size: 1rem; line-height: 1.55; }
  .hero-locations { margin-top: 30px; font-size: .58rem; letter-spacing: .13em; }
  .hero-network { padding: 14px; }
  .hero-network article { min-height: 108px; }
  .section { padding: 54px 0; }
  .section-head h2, .section-copy h2, .support-card h2 { font-size: clamp(1.9rem, 10vw, 3rem); }
  .section-copy, .status-panel, .support-card { padding: 24px; }
  .infra-stats { grid-template-columns: 1fr; }
  .metric-strip, .service-grid, .team-grid, .plan-grid, .plan-grid.dense, .category-grid, .feature-grid, .detail-grid, .support-stats { grid-template-columns: 1fr; }
  .support-shell { padding: 14px; }
  .support-hub, .ticket-steps { min-height: auto; padding: 22px; }
  .ticket-steps li { grid-template-columns: 34px 1fr; gap: 14px; }
  .ticket-steps li span { width: 34px; height: 34px; }
  .page-hero { padding-top: 126px; min-height: 44vh; }
  .page-hero h1 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .currency-switch { min-height: 38px; padding: 0 6px; }
  .currency-switch select { padding: 6px; }
  .brand img { width: 40px; height: 40px; }
  .hero-actions .btn { width: 100%; }
}
