﻿:root {
  --navy: #0f172a;
  --navy-2: #111827;
  --blue: #1d4ed8;
  --cyan: #06b6d4;
  --green: #16a34a;
  --orange: #f97316;
  --light: #f8fafc;
  --line: #dbe5ef;
  --text: #111827;
  --muted: #64748b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 229, 239, 0.9);
  backdrop-filter: blur(14px);
}
.brand img { width: 190px; height: auto; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}
.language-switch button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 6px 10px;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}
.language-switch button.active {
  background: var(--blue);
  color: var(--white);
}
.site-nav { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue); border-color: var(--cyan); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 6px; }
.menu-toggle span { display: block; width: 21px; height: 2px; background: var(--navy); margin: 5px auto; }
.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.70) 43%, rgba(15, 23, 42, 0.22));
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 88px 0 120px;
  max-width: 760px;
  margin-left: max(16px, calc((100vw - 1160px) / 2));
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; color: inherit; }
h1 { margin: 0; font-size: clamp(40px, 7vw, 76px); max-width: 780px; }
h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 44px); }
h3 { margin: 0 0 8px; font-size: 20px; }
.hero p { max-width: 720px; font-size: 19px; color: #e2e8f0; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  color: #f8fafc;
  font-weight: 800;
  font-size: 14px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary { background: var(--green); color: var(--white); }
.btn.secondary { background: var(--blue); color: var(--white); }
.btn.ghost { color: var(--white); border-color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.08); }
.band { padding: 72px 0; background: var(--white); }
.band.light { background: var(--light); }
.band.dark { background: var(--navy); color: var(--white); }
.quick-band { padding: 26px 0; border-bottom: 1px solid var(--line); }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.intro-grid, .split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: start;
}
.trust-card, .content-panel, .contact-form, .contact-cards a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.trust-card { padding: 28px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.content-panel { padding: 28px; }
.check-list { padding: 0; margin: 18px 0 0; list-style: none; display: grid; gap: 9px; }
.check-list li { position: relative; padding-left: 26px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}
.section-heading { max-width: 780px; margin-bottom: 28px; }
.section-heading p, .content-panel p, .intro-grid p, .split p { color: var(--muted); }
.dark .section-heading p { color: #cbd5e1; }
.area-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.area-grid span {
  padding: 12px;
  border-radius: 6px;
  background: var(--light);
  border: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}
.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.brand-strip img {
  width: 100%;
  min-height: 84px;
  object-fit: contain;
  padding: 14px;
  border-radius: 8px;
  background: #ffffff;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.media-card iframe,
.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}
.media-card h3,
.media-card p {
  margin-left: 16px;
  margin-right: 16px;
}
.media-card p { color: var(--muted); margin-bottom: 18px; }
.faq-list { display: grid; gap: 10px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 800; color: var(--navy); }
details p { margin: 10px 0 0; color: var(--muted); }
.request-band { background: linear-gradient(135deg, #eff6ff, #ecfeff); }
.contact-form { padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: grid; gap: 7px; font-weight: 800; color: var(--navy); font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: var(--white);
  color: var(--text);
}
textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .btn { width: 100%; margin-top: 16px; }
.contact-cards { display: grid; gap: 12px; margin-top: 22px; }
.contact-cards a { padding: 16px; display: grid; gap: 4px; }
.contact-cards span { color: var(--blue); font-weight: 800; }
.map-embed {
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 34px; }
.footer-logo { width: 210px; background: #fff; border-radius: 6px; padding: 8px; margin-bottom: 18px; }
.site-footer h2 { font-size: 18px; color: var(--white); }
.site-footer a { color: #bfdbfe; }
.footer-links { display: grid; gap: 8px; }
.mobile-call-bar { display: none; }
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .language-switch { margin-left: auto; }
  .hero { min-height: 620px; }
  .hero-content { margin-left: auto; padding-bottom: 104px; }
  .intro-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .card-grid, .form-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .media-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .brand img { width: 150px; }
  .hero { min-height: 640px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(15,23,42,0.94), rgba(15,23,42,0.72)); }
  .hero p { font-size: 17px; }
  .hero-badges span { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .band { padding: 52px 0; }
  .brand-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .mobile-call-bar a {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.14);
  }
  .mobile-call-bar a:nth-child(2) { background: var(--green); }
  .mobile-call-bar a:nth-child(3) { background: var(--blue); }
}


/* AXON 1PRO CONTENT / FOOTER / CTA UPDATE */
.axon-service-detail,
.axon-clients-section,
.axon-map-section,
.axon-final-cta {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.axon-service-grid,
.axon-clients-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.axon-service-detail img,
.axon-clients-section img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

.axon-eyebrow {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  color: #0f6bff;
  margin-bottom: 10px;
}

.axon-service-detail h2,
.axon-clients-section h2,
.axon-map-section h2,
.axon-final-cta h2 {
  margin: 0 0 14px;
  line-height: 1.15;
}

.axon-service-detail p,
.axon-clients-section p,
.axon-map-section p,
.axon-final-cta p {
  line-height: 1.7;
}

.axon-service-detail ul,
.axon-footer ul {
  padding-left: 20px;
}

.axon-service-detail li,
.axon-footer li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.axon-mini-note {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid #0f6bff;
  background: #f5f8ff;
  border-radius: 12px;
  line-height: 1.6;
}

.axon-btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: #0f6bff;
  color: #ffffff !important;
  margin: 8px 8px 8px 0;
}

.axon-btn-secondary {
  background: #111827;
}

.axon-map-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: center;
}

.axon-map-frame iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 18px;
}

.axon-final-cta {
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #0f6bff);
  color: #ffffff;
}

.axon-final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.axon-footer {
  margin-top: 60px;
  padding: 46px 24px 20px;
  background: #0f172a;
  color: #e5e7eb;
}

.axon-footer a {
  color: #ffffff;
  text-decoration: none;
}

.axon-footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.7fr;
  gap: 30px;
}

.axon-footer h3 {
  color: #ffffff;
  margin-top: 0;
}

.axon-footer-bottom {
  max-width: 1180px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 850px) {
  .axon-service-detail,
  .axon-clients-section,
  .axon-map-section,
  .axon-final-cta {
    margin: 28px 16px;
    padding: 24px;
  }

  .axon-service-grid,
  .axon-clients-grid,
  .axon-map-section,
  .axon-footer-grid {
    grid-template-columns: 1fr;
  }
}


/* AXON SEO / AEO / GEO / SEM UPDATE */
.axon-audience-section,
.axon-faq-section,
.axon-sem-cta {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.axon-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 24px;
}

.axon-audience-grid div {
  padding: 18px;
  border-radius: 16px;
  background: #f5f8ff;
  line-height: 1.45;
}

.axon-audience-grid strong {
  display: block;
  margin: 8px 0 4px;
}

.axon-audience-grid span {
  display: block;
  font-size: 14px;
}

.axon-faq-list details {
  padding: 16px 18px;
  border-radius: 14px;
  background: #f8fafc;
  margin-bottom: 12px;
}

.axon-faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.axon-faq-list p {
  line-height: 1.7;
  margin-bottom: 0;
}

.axon-sem-cta {
  text-align: center;
  background: linear-gradient(135deg, #111827, #0f6bff);
  color: #ffffff;
}

.axon-sem-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.axon-footer a[href*="axon.com.sg"] {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .axon-audience-section,
  .axon-faq-section,
  .axon-sem-cta {
    margin: 28px 16px;
    padding: 24px;
  }

  .axon-audience-grid {
    grid-template-columns: 1fr;
  }

  }

/* ONEPROITS LOGO + MOBILE FRIENDLY FIX */
.site-logo-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img,
a.site-logo img,
header img[src*="logo.png"],
img[src*="assets/images/logo.png"] {
  max-width: 190px;
  width: auto;
  height: auto;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .site-logo-wrap {
    padding: 14px 16px 6px;
    justify-content: center;
  }

  .site-logo img,
  a.site-logo img,
  header img[src*="logo.png"],
  img[src*="assets/images/logo.png"] {
    max-width: 155px;
  }

  nav,
  header nav,
  .nav,
  .navbar {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  nav a,
  header nav a,
  .nav a,
  .navbar a {
    display: inline-block;
    padding: 10px 12px;
  }

  .hero,
  section,
  .container,
  .axon-service-detail,
  .axon-clients-section,
  .axon-map-section,
  .axon-final-cta,
  .axon-audience-section,
  .axon-faq-section,
  .axon-sem-cta {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.18;
  }

  p,
  li {
    font-size: 16px;
    line-height: 1.65;
  }

  .axon-footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

/* ONEPRO TOP LEFT LOGO ONLY */
.onepro-logo-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.onepro-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.onepro-logo-link img {
  width: auto;
  max-width: 210px;
  max-height: 90px;
  height: auto;
  display: block;
}

@media (max-width: 850px) {
  .onepro-logo-bar {
    padding: 14px 16px 8px;
    justify-content: flex-start;
  }

  .onepro-logo-link img {
    max-width: 165px;
    max-height: 75px;
  }
}

/* ONEPRO TRUE HEADER LOGO LEFT FIX */
.onepro-header-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.onepro-header-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.onepro-header-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 78px;
}

/* If old logo bar CSS exists, neutralize it */
.onepro-logo-bar,
.site-logo-wrap {
  display: none !important;
}

/* Keep nav on the right when logo shell wraps it */
.onepro-header-shell nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow-x: auto;
}

/* Keep translate/language area compact */
.onepro-header-shell .language-switcher,
.onepro-header-shell .translate,
.onepro-header-shell [class*="translate"],
.onepro-header-shell [id*="translate"] {
  flex: 0 0 auto;
}

@media (max-width: 850px) {
  .onepro-header-shell {
    padding: 12px 16px;
    gap: 12px;
    align-items: center;
  }

  .onepro-header-logo img {
    max-width: 140px;
    max-height: 62px;
  }

  .onepro-header-shell nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ONEPRO GOOGLE TRANSLATE FIX */
.onepro-lang-switch {
  max-width: 1180px;
  margin: 8px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 50;
}

.onepro-lang-switch button {
  border: 1px solid #d7e2f2;
  background: #ffffff;
  color: #0f172a;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.onepro-lang-switch button.active,
.onepro-lang-switch button:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Hide Google translate top banner/toolbar as much as possible */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate iframe {
  display: none !important;
}

@media (max-width: 850px) {
  .onepro-lang-switch {
    justify-content: flex-start;
    padding: 0 16px;
    overflow-x: auto;
  }

  .onepro-lang-switch button {
    padding: 9px 12px;
  }
}

/* ONEPRO GOOGLE TRANSLATE FIX */
.onepro-lang-switch {
  max-width: 1180px;
  margin: 8px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 50;
}

.onepro-lang-switch button {
  border: 1px solid #d7e2f2;
  background: #ffffff;
  color: #0f172a;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.onepro-lang-switch button.active,
.onepro-lang-switch button:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Hide Google translate top banner/toolbar as much as possible */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate iframe {
  display: none !important;
}

@media (max-width: 850px) {
  .onepro-lang-switch {
    justify-content: flex-start;
    padding: 0 16px;
    overflow-x: auto;
  }

  .onepro-lang-switch button {
    padding: 9px 12px;
  }
}

/* ONEPRO SINGLE TRANSLATE SWITCH FIX */
.onepro-header-tools {
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
  margin-right: 18px;
  flex: 0 0 auto;
}

.onepro-lang-switch {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: auto !important;
}

.onepro-lang-switch button {
  border: 1px solid #d7e2f2;
  background: #ffffff;
  color: #0f172a;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.onepro-lang-switch button.active,
.onepro-lang-switch button:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* If header shell exists, keep all in one line */
.onepro-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.onepro-header-shell nav {
  margin-left: auto;
  flex: 1 1 auto;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 850px) {
  .onepro-header-tools {
    margin-left: 10px;
    margin-right: 10px;
  }

  .onepro-lang-switch button {
    padding: 8px 12px;
  }
}

/* FORCE ONLY ONE TRANSLATE SWITCHER DISPLAY */
.onepro-header-tools {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 18px;
  margin-right: 18px;
}

.onepro-lang-switch {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
}

.onepro-lang-switch button {
  border: 1px solid #d7e2f2;
  background: #ffffff;
  color: #0f172a;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.onepro-lang-switch button.active,
.onepro-lang-switch button:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

body {
  top: 0 !important;
}

/* FINAL SINGLE TRANSLATE SWITCHER */
.onepro-header-tools {
  display: inline-flex !important;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 18px;
  margin-right: 18px;
}

.onepro-lang-switch {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
}

.onepro-lang-switch button {
  border: 1px solid #d7e2f2;
  background: #ffffff;
  color: #0f172a;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.onepro-lang-switch button.active,
.onepro-lang-switch button:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* FINAL ONE TRANSLATE SWITCH ONLY */
.onepro-header-tools {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.onepro-lang-switch {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
}

.onepro-lang-switch button {
  border: 1px solid #d7e2f2 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 9px 14px !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.onepro-lang-switch button.active,
.onepro-lang-switch button:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
}

/* FINAL ONE TRANSLATE SWITCH ONLY */
.onepro-header-tools {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.onepro-lang-switch {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
}

.onepro-lang-switch button {
  border: 1px solid #d7e2f2 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 9px 14px !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.onepro-lang-switch button.active,
.onepro-lang-switch button:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
}

/* FINAL LANGUAGE SWITCHER BESIDE NAV */
.onepro-nav-lang {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 18px 0 auto !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
}

.onepro-nav-lang button {
  border: 1px solid #d7e2f2 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 9px 14px !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.onepro-nav-lang button.active,
.onepro-nav-lang button:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
}

/* Hide old switcher classes if any browser cached CSS/HTML remains */
.onepro-header-tools,
.onepro-lang-switch {
  display: none !important;
}

.onepro-header-shell {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}

.onepro-header-shell nav {
  flex: 0 1 auto !important;
  margin-left: 0 !important;
}

@media (max-width: 850px) {
  .onepro-header-shell {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .onepro-nav-lang {
    margin-left: 0 !important;
    margin-right: 0 !important;
    order: 2;
  }

  .onepro-header-shell nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .onepro-nav-lang button {
    padding: 8px 12px !important;
  }
}

/* FINAL: KEEP ONLY ORIGINAL LANGUAGE SWITCH */
.onepro-nav-lang,
.onepro-header-tools,
.onepro-lang-switch {
  display: none !important;
}

.language-switch {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 18px !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
}

.language-switch button {
  border: 1px solid #d7e2f2 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 9px 14px !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.language-switch button.active,
.language-switch button:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
}

@media (max-width: 850px) {
  .language-switch {
    margin: 0 10px !important;
  }

  .language-switch button {
    padding: 8px 12px !important;
  }
}

/* NAV MENU ICONS ONLY */
.nav-icon {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  line-height: 1;
  vertical-align: -1px;
}

@media (max-width: 850px) {
  .nav-icon {
    margin-right: 4px;
    font-size: 13px;
  }
}

/* WIFI SETUP TYPES SECTION */
.onepro-wifi-types {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.onepro-wifi-types h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: #0f172a;
}

.onepro-section-intro {
  max-width: 860px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 26px;
}

.onepro-wifi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.onepro-wifi-grid article {
  padding: 20px;
  border-radius: 18px;
  background: #f5f8ff;
  border: 1px solid #e2e8f0;
}

.onepro-wifi-icon {
  display: inline-flex;
  font-size: 24px;
  margin-bottom: 10px;
}

.onepro-wifi-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
}

.onepro-wifi-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-size: 15px;
}

.onepro-wifi-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid #0f6bff;
  border-radius: 12px;
  background: #eef5ff;
  line-height: 1.7;
  color: #0f172a;
}

@media (max-width: 1000px) {
  .onepro-wifi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .onepro-wifi-types {
    margin: 28px 16px;
    padding: 24px;
  }

  .onepro-wifi-grid {
    grid-template-columns: 1fr;
  }
}

/* CCTV PACKAGE SECTION */
.onepro-cctv-packages {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.onepro-cctv-packages h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: #0f172a;
}

.onepro-cctv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.onepro-cctv-grid article {
  padding: 20px;
  border-radius: 18px;
  background: #f5f8ff;
  border: 1px solid #e2e8f0;
}

.onepro-cctv-icon {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 10px;
}

.onepro-cctv-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 19px;
}

.onepro-cctv-grid p {
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.6;
  font-size: 15px;
}

.onepro-cctv-grid ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.onepro-cctv-grid li {
  margin-bottom: 6px;
  color: #0f172a;
  line-height: 1.5;
  font-size: 14px;
}

.onepro-cctv-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid #0f6bff;
  border-radius: 12px;
  background: #eef5ff;
  line-height: 1.7;
  color: #0f172a;
}

@media (max-width: 1100px) {
  .onepro-cctv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 750px) {
  .onepro-cctv-packages {
    margin: 28px 16px;
    padding: 24px;
  }

  .onepro-cctv-grid {
    grid-template-columns: 1fr;
  }
}

/* REMOTE NAS ACCESS SECTION */
.onepro-remote-nas {
  max-width: 1180px;
  margin: 48px auto;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a, #0f6bff);
  color: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.16);
}

.onepro-remote-nas .axon-eyebrow {
  color: #bfdbfe;
}

.onepro-remote-nas-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.onepro-remote-nas h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  color: #ffffff;
}

.onepro-remote-nas p {
  line-height: 1.7;
  color: #eff6ff;
}

.onepro-remote-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.onepro-remote-points span {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
}

.onepro-remote-note {
  background: rgba(255,255,255,0.10);
  border-left: 4px solid #93c5fd;
  padding: 14px 16px;
  border-radius: 12px;
}

.onepro-remote-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 24px;
}

.onepro-remote-card h3 {
  margin: 0 0 14px;
  color: #0f172a;
}

.onepro-remote-card ul {
  margin: 0;
  padding-left: 20px;
}

.onepro-remote-card li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #334155;
}

@media (max-width: 850px) {
  .onepro-remote-nas {
    margin: 28px 16px;
    padding: 24px;
  }

  .onepro-remote-nas-grid,
  .onepro-remote-points {
    grid-template-columns: 1fr;
  }
}

/* BIOMETRIC / FDAS / ALARM PACKAGE SECTION */
.onepro-security-packages {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.onepro-security-packages h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: #0f172a;
}

.onepro-section-intro {
  max-width: 900px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 26px;
}

.onepro-security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.onepro-security-grid article {
  padding: 20px;
  border-radius: 18px;
  background: #f5f8ff;
  border: 1px solid #e2e8f0;
}

.onepro-security-icon {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 10px;
}

.onepro-security-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
}

.onepro-security-grid p {
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.6;
  font-size: 15px;
}

.onepro-security-grid ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.onepro-security-grid li {
  margin-bottom: 6px;
  color: #0f172a;
  line-height: 1.5;
  font-size: 14px;
}

.onepro-security-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid #0f6bff;
  border-radius: 12px;
  background: #eef5ff;
  line-height: 1.7;
  color: #0f172a;
}

@media (max-width: 1100px) {
  .onepro-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .onepro-security-packages {
    margin: 28px 16px;
    padding: 24px;
  }

  .onepro-security-grid {
    grid-template-columns: 1fr;
  }
}

/* SOLAR ADVANTAGES / SAVINGS SECTION */
.onepro-solar-advantages {
  max-width: 1180px;
  margin: 48px auto;
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.onepro-solar-hero {
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f172a, #0f6bff);
  color: #ffffff;
  margin-bottom: 28px;
}

.onepro-solar-hero .axon-eyebrow {
  color: #bfdbfe;
}

.onepro-solar-hero h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  color: #ffffff;
}

.onepro-solar-hero p {
  max-width: 900px;
  color: #eff6ff;
  line-height: 1.75;
  font-size: 17px;
}

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

.onepro-solar-grid article {
  padding: 22px;
  border-radius: 18px;
  background: #f5f8ff;
  border: 1px solid #e2e8f0;
}

.onepro-solar-grid span {
  display: inline-flex;
  font-size: 26px;
  margin-bottom: 10px;
}

.onepro-solar-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 19px;
}

.onepro-solar-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.onepro-solar-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid #0f6bff;
  border-radius: 12px;
  background: #eef5ff;
  line-height: 1.7;
  color: #0f172a;
}

@media (max-width: 900px) {
  .onepro-solar-advantages {
    margin: 28px 16px;
    padding: 24px;
  }

  .onepro-solar-hero {
    padding: 24px;
  }

  .onepro-solar-grid {
    grid-template-columns: 1fr;
  }
}

/* AREAS SERVED - NATIONWIDE COVERAGE */
.onepro-areas-served {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.onepro-areas-served h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: #0f172a;
}

.onepro-areas-served p {
  max-width: 900px;
  line-height: 1.7;
  color: #334155;
}

.onepro-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.onepro-areas-grid span {
  display: block;
  padding: 15px 16px;
  border-radius: 14px;
  background: #f5f8ff;
  border: 1px solid #e2e8f0;
  font-weight: 800;
  color: #0f172a;
}

@media (max-width: 850px) {
  .onepro-areas-served {
    margin: 28px 16px;
    padding: 24px;
  }

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

@media (max-width: 520px) {
  .onepro-areas-grid {
    grid-template-columns: 1fr;
  }
}

/* AREAS SERVED NATIONWIDE UPDATE */
.onepro-areas-served .onepro-areas-grid span {
  text-align: center;
}

@media (max-width: 650px) {
  .onepro-areas-served h2 {
    font-size: 30px;
  }
}

/* FINAL AREAS SERVED - NATIONWIDE PHILIPPINES */
.onepro-areas-served {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.onepro-areas-served h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: #0f172a;
}

.onepro-areas-served p {
  max-width: 980px;
  line-height: 1.7;
  color: #334155;
}

.onepro-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.onepro-areas-grid span {
  display: block;
  padding: 15px 16px;
  border-radius: 14px;
  background: #f5f8ff;
  border: 1px solid #e2e8f0;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
}

.onepro-areas-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid #0f6bff;
  border-radius: 12px;
  background: #eef5ff;
  line-height: 1.7;
  color: #0f172a;
}

@media (max-width: 850px) {
  .onepro-areas-served {
    margin: 28px 16px;
    padding: 24px;
  }

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

@media (max-width: 520px) {
  .onepro-areas-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ BUG FIX */
.axon-faq-section details {
  display: block;
  width: 100%;
}

.axon-faq-section summary {
  white-space: normal;
}

.axon-faq-section p {
  margin-top: 10px;
}

/* ONEPRO RESTORE: NAV ICONS + TRANSLATE + HEADER */
.nav-icon {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  line-height: 1;
  vertical-align: -1px;
}

.language-switch {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 0 0 auto !important;
}

.language-switch button {
  border: 1px solid #d7e2f2 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 9px 14px !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.language-switch button.active,
.language-switch button:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

body {
  top: 0 !important;
}

.site-header img[src*="logo.png"] {
  width: auto !important;
  max-width: 210px !important;
  max-height: 78px !important;
  height: auto !important;
}

.site-nav a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  white-space: nowrap !important;
}

@media (max-width: 850px) {
  .site-header img[src*="logo.png"] {
    max-width: 145px !important;
    max-height: 54px !important;
  }

  .site-nav {
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
  }

  .nav-icon {
    font-size: 13px;
    margin-right: 4px;
  }

  .language-switch button {
    padding: 8px 12px !important;
  }
}

/* FINAL NAV TWO-LINE BALANCED FIX */
.site-header {
  display: grid !important;
  grid-template-columns: auto auto 1fr !important;
  grid-template-areas: "logo lang nav" !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 12px 28px !important;
}

.site-header .brand {
  grid-area: logo !important;
}

.site-header .language-switch {
  grid-area: lang !important;
  justify-self: start !important;
}

.site-header .menu-toggle {
  display: none;
}

.site-nav {
  grid-area: nav !important;
  display: grid !important;
  grid-template-columns: repeat(5, max-content) !important;
  justify-content: end !important;
  align-items: center !important;
  column-gap: 22px !important;
  row-gap: 14px !important;
  white-space: normal !important;
  overflow: visible !important;
}

.site-nav a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  white-space: nowrap !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.nav-icon {
  flex: 0 0 auto !important;
}

/* Tablet: still two lines but tighter */
@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: auto auto 1fr !important;
    padding: 12px 18px !important;
    gap: 14px !important;
  }

  .site-nav {
    grid-template-columns: repeat(4, max-content) !important;
    column-gap: 16px !important;
    row-gap: 12px !important;
  }

  .site-nav a {
    font-size: 13px !important;
  }
}

/* Mobile: logo + language top, menu scroll below */
@media (max-width: 850px) {
  .site-header {
    grid-template-columns: auto auto !important;
    grid-template-areas:
      "logo lang"
      "nav nav" !important;
    align-items: center !important;
    padding: 10px 14px !important;
    gap: 10px !important;
  }

  .site-header .brand {
    justify-self: start !important;
  }

  .site-header .language-switch {
    justify-self: end !important;
  }

  .site-nav {
    grid-template-columns: none !important;
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-top: 10px !important;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    flex: 0 0 auto !important;
    font-size: 13px !important;
  }
}

/* FINAL HOMEPAGE FOOTER DARK FIX */
.site-footer {
  background: #0f172a !important;
  color: #ffffff !important;
  padding: 56px 0 0 !important;
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: #ffffff !important;
}

.site-footer a {
  color: #dbeafe !important;
  text-decoration: none !important;
}

.site-footer a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.site-footer .footer-logo {
  background: #ffffff !important;
  border-radius: 8px !important;
  padding: 8px !important;
  max-width: 190px !important;
  height: auto !important;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
}

.site-footer .footer-links {
  display: grid !important;
  gap: 10px !important;
}

.site-footer .footer-bottom {
  margin-top: 40px !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.18) !important;
  color: #cbd5e1 !important;
  text-align: center !important;
}

@media (max-width: 850px) {
  .site-footer {
    padding: 36px 0 0 !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .site-footer .footer-logo {
    max-width: 160px !important;
  }
}

/* MAP EMBED FIX */
.onepro-map-embed,
.map-embed,
.google-map,
.map-frame {
  width: 100%;
  max-width: 100%;
}

.onepro-map-embed iframe,
.map-embed iframe,
.google-map iframe,
.map-frame iframe,
iframe[src*="maps.google.com/maps"] {
  width: 100% !important;
  min-height: 360px !important;
  border: 0 !important;
  border-radius: 18px !important;
  display: block !important;
}

/* HOMEPAGE OUR CLIENTS LIST */
.onepro-clients-list {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.onepro-clients-list h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: #0f172a;
}

.onepro-clients-list p {
  max-width: 900px;
  line-height: 1.7;
  color: #334155;
}

.onepro-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.onepro-clients-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 16px;
  border-radius: 14px;
  background: #f5f8ff;
  border: 1px solid #e2e8f0;
  font-weight: 800;
  color: #0f172a;
}

@media (max-width: 850px) {
  .onepro-clients-list {
    margin: 28px 16px;
    padding: 24px;
  }

  .onepro-clients-grid {
    grid-template-columns: 1fr;
  }
}

/* HOMEPAGE OUR CLIENTS - FINAL CARD DESIGN */
.onepro-clients-list {
  max-width: 1180px !important;
  margin: 48px auto !important;
  padding: 0 16px !important;
  background: transparent !important;
}

.onepro-clients-inner {
  padding: 34px !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08) !important;
}

.onepro-clients-list h2 {
  margin: 0 0 14px !important;
  font-size: clamp(32px, 4vw, 46px) !important;
  line-height: 1.15 !important;
  color: #0f172a !important;
}

.onepro-clients-intro,
.onepro-clients-list p {
  max-width: 900px !important;
  line-height: 1.7 !important;
  color: #334155 !important;
  margin-bottom: 24px !important;
}

.onepro-clients-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 24px !important;
}

.onepro-clients-grid span {
  display: flex !important;
  align-items: center !important;
  min-height: 62px !important;
  padding: 16px 18px !important;
  border-radius: 14px !important;
  background: #f5f8ff !important;
  border: 1px solid #dbe7f5 !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.35 !important;
  box-sizing: border-box !important;
}

.onepro-clients-grid span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 999px;
  background: #0f6bff;
  color: #ffffff;
  font-size: 13px;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .onepro-clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 650px) {
  .onepro-clients-list {
    margin: 28px auto !important;
  }

  .onepro-clients-inner {
    padding: 24px !important;
  }

  .onepro-clients-grid {
    grid-template-columns: 1fr !important;
  }
}

/* SMART HOME AUTOMATION PAGE */
.onepro-smart-packages {
  max-width: 1180px;
  margin: 48px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.onepro-smart-packages h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: #0f172a;
}

.onepro-smart-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.onepro-smart-grid article {
  padding: 20px;
  border-radius: 18px;
  background: #f5f8ff;
  border: 1px solid #e2e8f0;
}

.onepro-smart-grid span {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 10px;
}

.onepro-smart-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
}

.onepro-smart-grid p {
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.6;
  font-size: 15px;
}

.onepro-smart-grid ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.onepro-smart-grid li {
  margin-bottom: 6px;
  color: #0f172a;
  line-height: 1.5;
  font-size: 14px;
}

.onepro-smart-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid #0f6bff;
  border-radius: 12px;
  background: #eef5ff;
  line-height: 1.7;
  color: #0f172a;
}

@media (max-width: 1100px) {
  .onepro-smart-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 750px) {
  .onepro-smart-packages {
    margin: 28px 16px;
    padding: 24px;
  }

  .onepro-smart-grid {
    grid-template-columns: 1fr;
  }
}

/* SMART HOME PAGE FINAL ALIGNMENT FIX */
body[data-page="smart-home-automation.html"] .axon-service-detail,
body[data-page="smart-home-automation.html"] .onepro-smart-packages,
body[data-page="smart-home-automation.html"] .onepro-areas-served,
body[data-page="smart-home-automation.html"] .axon-faq-section,
body[data-page="smart-home-automation.html"] .axon-sem-cta {
  max-width: 1180px !important;
  margin: 48px auto !important;
  box-sizing: border-box !important;
}

body[data-page="smart-home-automation.html"] .axon-service-detail {
  padding: 32px !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden !important;
}

body[data-page="smart-home-automation.html"] .axon-service-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 34px !important;
  align-items: center !important;
}

body[data-page="smart-home-automation.html"] .axon-service-copy h2 {
  margin: 0 0 16px !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 1.12 !important;
  color: #0f172a !important;
}

body[data-page="smart-home-automation.html"] .axon-service-copy p,
body[data-page="smart-home-automation.html"] .axon-service-copy li {
  color: #0f172a !important;
  line-height: 1.7 !important;
}

body[data-page="smart-home-automation.html"] .axon-service-copy ul {
  margin: 18px 0 !important;
  padding-left: 22px !important;
}

body[data-page="smart-home-automation.html"] .axon-service-image img {
  width: 100% !important;
  max-height: 360px !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  display: block !important;
}

body[data-page="smart-home-automation.html"] .axon-mini-note {
  margin-top: 20px !important;
  padding: 18px !important;
  border-left: 4px solid #0f6bff !important;
  border-radius: 12px !important;
  background: #eef5ff !important;
  color: #0f172a !important;
  line-height: 1.7 !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-packages {
  padding: 34px !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-packages h2 {
  margin: 0 0 14px !important;
  font-size: clamp(32px, 4vw, 46px) !important;
  line-height: 1.15 !important;
  color: #0f172a !important;
}

body[data-page="smart-home-automation.html"] .onepro-section-intro {
  max-width: 900px !important;
  margin: 0 0 26px !important;
  color: #334155 !important;
  line-height: 1.7 !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 26px !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-grid article {
  padding: 22px !important;
  border-radius: 18px !important;
  background: #f5f8ff !important;
  border: 1px solid #e2e8f0 !important;
  box-sizing: border-box !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-grid article > span {
  display: inline-flex !important;
  font-size: 26px !important;
  margin-bottom: 10px !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-grid h3 {
  margin: 0 0 8px !important;
  color: #0f172a !important;
  font-size: 19px !important;
  line-height: 1.25 !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-grid p {
  margin: 0 0 12px !important;
  color: #475569 !important;
  line-height: 1.65 !important;
  font-size: 15px !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-grid ul {
  margin: 0 0 16px !important;
  padding-left: 20px !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-grid li {
  margin-bottom: 6px !important;
  color: #0f172a !important;
  line-height: 1.5 !important;
  font-size: 14px !important;
}

body[data-page="smart-home-automation.html"] .onepro-smart-note {
  margin-top: 24px !important;
  padding: 18px !important;
  border-left: 4px solid #0f6bff !important;
  border-radius: 12px !important;
  background: #eef5ff !important;
  color: #0f172a !important;
  line-height: 1.7 !important;
}

@media (max-width: 950px) {
  body[data-page="smart-home-automation.html"] .axon-service-grid,
  body[data-page="smart-home-automation.html"] .onepro-smart-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 650px) {
  body[data-page="smart-home-automation.html"] .axon-service-detail,
  body[data-page="smart-home-automation.html"] .onepro-smart-packages,
  body[data-page="smart-home-automation.html"] .onepro-areas-served,
  body[data-page="smart-home-automation.html"] .axon-faq-section,
  body[data-page="smart-home-automation.html"] .axon-sem-cta {
    margin: 28px 16px !important;
    padding: 24px !important;
  }
}
