@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@500;600;700;800&display=swap');

:root {
  --xm-electric-blue: #0000EB;
  --xm-bright-blue: #2B57FF;
  --xm-deep-blue: #10178F;
  --xm-navy-dark: #0A0E27;
  --xm-navy-card: #141a3d;
  --xm-black-box: #0D0D14;
  --xm-black: #000000;
  --xm-charcoal: #17171B;
  --xm-white: #FFFFFF;
  --xm-off-white: #F5F5F7;
  --xm-light-gray: #E7E7EB;
  --xm-medium-gray: #6D6D75;
  --xm-text: #17171B;
  --xm-purple-accent: #6236FF;
  --xm-pink-accent: #E93CAC;
  --xm-orange-accent: #FF7A33;
  --xm-red: #E8432C;
  --xm-red-dark: #C7311D;

  --container: 1240px;
  --radius-card: 20px;
  --radius-btn: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--xm-text);
  background: var(--xm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Inter Tight", Arial, sans-serif;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-weight: 800; }
h2, h3 { font-weight: 700; }

p { margin: 0 0 1em; color: var(--xm-medium-gray); }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--xm-bright-blue);
  margin-bottom: 12px;
}

section { position: relative; }

.section-pad { padding: 72px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
}

.section-head {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 4px;
  border-radius: 4px;
  background: var(--xm-bright-blue);
}
.section-head p { font-size: 16px; margin-top: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--radius-btn);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
  white-space: nowrap;
}

.btn-white {
  background: var(--xm-white);
  color: var(--xm-navy-dark);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.btn-primary {
  background: var(--xm-electric-blue);
  color: var(--xm-white);
}
.btn-primary:hover {
  background: var(--xm-bright-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(35, 61, 255, 0.35);
}

.btn-lg {
  min-height: 56px;
  padding: 0 36px;
  font-size: 18px;
}
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--xm-white);
  transition: box-shadow 240ms ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-wrap: nowrap;
  gap: 10px;
}

.logo {
  font-family: "Inter Tight", Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .logo { font-size: 20px; }
}
.logo .logo-xmradio { color: var(--xm-text); }
.logo .logo-sites { color: var(--xm-electric-blue); }
.logo-on-dark .logo-xmradio { color: var(--xm-white); }
.logo-on-dark .logo-sites { color: var(--xm-bright-blue); }

.main-nav {
  display: none;
  gap: 18px;
  list-style: none;
  margin: 0; padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--xm-text);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--xm-electric-blue); }

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

@media (min-width: 820px) {
  .main-nav { display: flex; }
}
@media (min-width: 1080px) {
  .main-nav { gap: 28px; }
  .main-nav a { font-size: 15px; }
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--xm-red);
  color: var(--xm-white);
  font-weight: 700;
  font-size: 12.5px;
  padding: 9px 14px;
  border-radius: var(--radius-btn);
  transition: background 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.call-pill:hover { background: var(--xm-red-dark); transform: translateY(-1px); }
.call-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.call-pill .call-label { opacity: 0.85; font-weight: 600; }
@media (min-width: 480px) {
  .call-pill { font-size: 14px; padding: 10px 18px; gap: 8px; }
  .call-pill svg { width: 16px; height: 16px; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--xm-navy-dark);
  color: var(--xm-white);
  padding: 56px 0 40px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 100%, rgba(43, 87, 255, 0.35), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(98, 54, 255, 0.2), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  color: var(--xm-white);
}
.hero-eyebrow-blue {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--xm-bright-blue);
  margin-bottom: 20px;
}
.hero-cta-row { margin-bottom: 16px; }
.hero-trust-line {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin: 14px 0 18px;
}
.cta-disclaimer {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
  max-width: 420px;
}
.cta-disclaimer-dark {
  color: rgba(255,255,255,0.75);
}

/* ---------- Open status badge ---------- */
.open-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.open-status-badge .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #2ED573;
  box-shadow: 0 0 0 rgba(46, 213, 115, 0.5);
  animation: dotPulse 2s infinite;
  flex-shrink: 0;
}
.open-status-badge.is-closed .dot {
  background: var(--xm-medium-gray);
  animation: none;
  box-shadow: none;
}
.open-status-badge-dark {
  color: var(--xm-navy-dark);
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(46, 213, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); }
}

/* ---------- Call pulse + floating FAB ---------- */
@keyframes callPulseShadow {
  0% { box-shadow: 0 0 0 0 rgba(232, 67, 44, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(232, 67, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 67, 44, 0); }
}
.call-pulse { animation: callPulseShadow 2.6s infinite; }

.call-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 260;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--xm-red);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.call-fab svg { width: 24px; height: 24px; }
@media (max-width: 819px) {
  .call-fab { display: flex; }
}
.hero-floating-badge {
  position: absolute;
  top: 8px;
  right: 24px;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--xm-orange-accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(255, 122, 51, 0.4);
  z-index: 3;
}
.hero-floating-badge svg { width: 22px; height: 22px; color: var(--xm-white); }

.hero-media {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-grid-desktop {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: 72px 0 88px; }
  .hero-grid-desktop { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}

/* ---------- Quick support cards ---------- */
.support-cards { background: var(--xm-white); }
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .card-grid-2 { grid-template-columns: 1fr; }
}
.support-card {
  background: var(--xm-white);
  border: 1px solid var(--xm-light-gray);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(23,23,27,0.08);
}
.circle-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--xm-black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.circle-icon svg { width: 26px; height: 26px; color: var(--xm-white); }
.support-card h3 { font-size: 18px; color: var(--xm-text); }
.support-card p { font-size: 14px; margin-bottom: 0; }

/* ---------- Product catalog ---------- */
.product-showcase { background: var(--xm-white); }
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 700px) {
  .product-catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1080px) {
  .product-catalog-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.product-card-item {
  border: 1px solid var(--xm-light-gray);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--xm-white);
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.product-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(23,23,27,0.08);
}
.product-card-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #eef0fb, #f7f7fb);
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body h3 {
  font-size: 15px;
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-spec {
  font-size: 12.5px;
  color: var(--xm-medium-gray);
  margin-bottom: 4px;
}
.product-model {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--xm-bright-blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.btn-block {
  width: 100%;
  margin-top: auto;
  font-size: 13.5px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 10px;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}

/* ---------- What We Do (navy cards) ---------- */
.services { background: var(--xm-white); }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 900px) {
  .service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.service-card {
  position: relative;
  background: var(--xm-navy-card);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.service-icon-badge {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--xm-bright-blue);
  display: flex; align-items: center; justify-content: center;
}
.service-icon-badge svg { width: 24px; height: 24px; color: var(--xm-white); }
.service-card h3 { font-size: 17px; color: var(--xm-white); margin-bottom: 6px; }
.service-card p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 0; }
.service-card-floating-badge {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--xm-orange-accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(255,122,51,0.4);
}
.service-card-floating-badge svg { width: 18px; height: 18px; color: var(--xm-white); }

/* ---------- FAQ ---------- */
/* ---------- Why We Do This ---------- */
.our-story { background: var(--xm-off-white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .story-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Mid-page call CTA ---------- */
.mid-cta {
  background: linear-gradient(135deg, #0000EB 0%, #233DFF 55%, #6236FF 100%);
  padding: 40px 0;
}
.mid-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.mid-cta-copy h3 { color: var(--xm-white); font-size: 22px; margin-bottom: 6px; }
.mid-cta-copy p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 0; }
.mid-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 700px) {
  .mid-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .mid-cta-actions { flex-direction: row; gap: 20px; }
}

/* ---------- Final call CTA ---------- */
.final-cta {
  background: var(--xm-off-white);
  padding: 64px 0;
}
.final-cta-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--xm-navy-dark);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(8, 8, 23, 0.25);
}
.final-cta-card h2 {
  color: var(--xm-white);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  max-width: 600px;
  margin: 0 auto 28px;
}
.final-cta-status {
  justify-content: center;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12.5px;
}

.faq-section { background: var(--xm-white); }
.faq-heading-wrap { position: relative; display: inline-block; }
.faq-floating-badge {
  position: absolute;
  top: -14px;
  right: -50px;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--xm-orange-accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(255,122,51,0.4);
}
.faq-floating-badge svg { width: 20px; height: 20px; color: var(--xm-white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--xm-light-gray);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--xm-text);
  cursor: pointer;
  gap: 20px;
}
.faq-question .plus {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--xm-text);
  color: var(--xm-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.faq-item.is-open .faq-question .plus {
  transform: rotate(45deg);
  background: var(--xm-electric-blue);
  border-color: var(--xm-electric-blue);
  color: var(--xm-white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}
.faq-answer-inner { padding: 0 4px 20px; }
.faq-answer p { margin-bottom: 0; font-size: 15px; }

/* ---------- Disclaimer ---------- */
.disclaimer-section { background: var(--xm-white); padding: 0 0 56px; }
.disclaimer-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--xm-black-box);
  border-radius: var(--radius-card);
  padding: 28px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.disclaimer-box svg { width: 26px; height: 26px; color: rgba(255,255,255,0.7); flex-shrink: 0; margin-top: 2px; }
.disclaimer-box p { color: rgba(255,255,255,0.65); font-size: 13.5px; margin-bottom: 0; }
.disclaimer-box strong { color: rgba(255,255,255,0.9); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--xm-navy-dark);
  color: var(--xm-white);
  padding: 56px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (min-width: 700px) {
  .footer-top { grid-template-columns: 1.4fr 1fr; }
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  max-width: 380px;
  margin-top: 14px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, border-color 200ms ease;
}
.footer-social a:hover { background: var(--xm-bright-blue); border-color: var(--xm-bright-blue); }
.footer-social svg { width: 17px; height: 17px; color: var(--xm-white); }

.footer-col h4 {
  font-size: 15px;
  color: var(--xm-white);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}
.footer-col a:hover { color: var(--xm-bright-blue); }
.footer-col a svg { width: 14px; height: 14px; color: var(--xm-bright-blue); flex-shrink: 0; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-call-bar {
  background: var(--xm-red);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--xm-white);
}
.footer-call-bar svg { width: 18px; height: 18px; }

.business-identity {
  padding: 24px 0 4px;
  border-top: none;
}
.business-identity p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 0;
  text-align: center;
}
.business-identity strong { color: rgba(255,255,255,0.75); }
.business-identity a { color: rgba(255,255,255,0.65); }
.business-identity a:hover { color: var(--xm-bright-blue); }

/* ---------- Legal pages ---------- */
.legal-page {
  padding: 64px 0 96px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}
.legal-page .legal-updated {
  color: var(--xm-medium-gray);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 22px;
  margin-top: 40px;
}
.legal-page p, .legal-page li {
  color: var(--xm-medium-gray);
  font-size: 16px;
  line-height: 1.7;
}
.legal-page ul { padding-left: 20px; }
.legal-page a { color: var(--xm-electric-blue); text-decoration: underline; }

/* ---------- Check Availability modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(8, 8, 23, 0.65);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }
.modal-dialog {
  position: relative;
  background: var(--xm-white);
  border-radius: var(--radius-card);
  padding: 36px 28px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--xm-off-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--xm-text);
}
.modal-close:hover { background: var(--xm-light-gray); }
.modal-close svg { width: 16px; height: 16px; }
.modal-dialog h3 { font-size: 20px; margin-bottom: 6px; }
.modal-product-name {
  font-weight: 700;
  color: var(--xm-text);
  font-size: 14px;
  margin-bottom: 12px;
}
.modal-instructions {
  font-size: 14px;
  margin-bottom: 20px;
}
.recaptcha-scale {
  width: 280px;
  height: 72px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.recaptcha-scale .g-recaptcha {
  transform: scale(0.92);
  transform-origin: 0 0;
}
@media (max-width: 360px) {
  .modal-dialog { padding: 32px 16px 24px; }
  .recaptcha-scale { width: 249px; height: 64px; }
  .recaptcha-scale .g-recaptcha { transform: scale(0.82); }
}
.modal-status {
  font-size: 14px;
  font-weight: 700;
  color: var(--xm-electric-blue);
  min-height: 20px;
  margin-bottom: 12px;
}
