/* ═══════════════════════════════════════════════════════════
   NOXITEL — Global Stylesheet
   Font: Poppins (Google Fonts)
   Last updated: 2026
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --font-main: 'Poppins', sans-serif;
  --deep-blue: #0b3c5d;
  --deep-blue-dark: #072d47;
  --deep-blue-light: #0e4d78;
  --teal: #00a896;
  --teal-dark: #008a7b;
  --teal-light: #00c4ae;
  --gold: #d4af37;
  --gold-light: #e8c94a;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --light-blue: #eef4f8;
  --border: #dde6ed;
  --text-dark: #1a2332;
  --text-mid: #4a5568;
  --text-light: #8898aa;
  --nav-height: 72px;
  --shadow-sm: 0 1px 3px rgba(11,60,93,0.08);
  --shadow-md: 0 4px 20px rgba(11,60,93,0.10);
  --shadow-lg: 0 12px 48px rgba(11,60,93,0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
h5 { font-size: 0.875rem; font-weight: 600; }

p {
  line-height: 1.75;
  color: var(--text-mid);
}

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

code {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 0.85em;
  background: var(--off-white);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--wide {
  width: 100%;
  max-width: 1360px;
}

section {
  padding: 96px 0;
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.transparent {
  background: transparent;
}

.nav.solid {
  background: rgba(11,60,93,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--white);
  user-select: none;
  flex-shrink: 0;
}

.nav__logo-text {
  color: white;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 13px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__links a.active {
  color: var(--teal-light);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn--teal {
  background: var(--teal);
  color: white;
}

.btn--teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,168,150,0.35);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--deep-blue);
  border: 1.5px solid var(--border);
}

.btn--ghost-dark:hover {
  background: var(--light-blue);
  border-color: var(--deep-blue);
}

.btn--white {
  background: white;
  color: var(--deep-blue);
}

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--deep-blue);
  font-weight: 700;
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,175,55,0.35);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 0.975rem;
  border-radius: 10px;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ── TAGS ───────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag--teal { background: rgba(0,168,150,0.1); color: var(--teal-dark); }
.tag--gold { background: rgba(212,175,55,0.12); color: #a8890c; }
.tag--blue { background: rgba(11,60,93,0.08); color: var(--deep-blue); }

/* ── SECTION LABEL ──────────────────────────────────────── */
.section-label {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-label--light { color: var(--teal-light); }
.section-label--light::before { background: var(--teal-light); }
.section-label--gold { color: var(--gold); }
.section-label--gold::before { background: var(--gold); }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(0,168,150,0.25);
}

/* ── GRIDS ──────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── PAGE HERO (shared) ─────────────────────────────────── */
.page-hero {
  background: var(--deep-blue);
  padding: 150px 0 88px;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-hero__glow {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,168,150,0.15) 0%, transparent 65%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--deep-blue-dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  letter-spacing: -0.02em;
}

.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 12px;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.2s;
}

.footer__col ul li a:hover {
  color: var(--teal-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: all 0.2s;
}

.footer__social a:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(0,168,150,0.1);
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── ICON BOX ───────────────────────────────────────────── */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-box--teal { background: rgba(0,168,150,0.1); }
.icon-box--blue { background: rgba(11,60,93,0.08); }
.icon-box--gold { background: rgba(212,175,55,0.1); }

/* ── STAT ───────────────────────────────────────────────── */
.stat-num {
  font-family: var(--font-main);
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ── FEATURE LIST ───────────────────────────────────────── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(0,168,150,0.12);
  border: 1.5px solid rgba(0,168,150,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2300a896' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── CONTACT SIDEBAR ────────────────────────────────────── */
.contact-sidebar-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  background: var(--teal);
  color: white;
  width: 44px;
  padding: 18px 0;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: -4px 0 20px rgba(0,168,150,0.3);
  transition: all 0.25s;
  writing-mode: vertical-rl;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  user-select: none;
}

.contact-sidebar-btn:hover {
  background: var(--teal-dark);
  width: 48px;
  box-shadow: -6px 0 24px rgba(0,168,150,0.4);
}

.contact-sidebar-btn svg {
  writing-mode: horizontal-tb;
  flex-shrink: 0;
}

.contact-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,45,71,0.45);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.contact-sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.contact-sidebar {
  position: fixed;
  right: -380px;
  top: 0;
  bottom: 0;
  width: 360px;
  background: white;
  z-index: 1001;
  box-shadow: -8px 0 48px rgba(11,60,93,0.18);
  transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.contact-sidebar.open { right: 0; }

.contact-sidebar__head {
  background: var(--deep-blue);
  padding: 28px 28px 24px;
  position: relative;
  flex-shrink: 0;
}

.contact-sidebar__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.contact-sidebar__close:hover { background: rgba(255,255,255,0.2); }

.contact-sidebar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 8px;
}

.contact-sidebar__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.contact-sidebar__body {
  padding: 24px 28px;
  flex: 1;
}

.csi-section-title {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
  margin-top: 24px;
}

.csi-section-title:first-child { margin-top: 0; }

.csi-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--off-white);
  margin-bottom: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

.csi-item:hover {
  border-color: rgba(0,168,150,0.3);
  background: rgba(0,168,150,0.04);
  transform: translateX(-2px);
}

.csi-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.csi-item__icon--wa { background: rgba(37,211,102,0.12); }
.csi-item__icon--phone { background: rgba(0,168,150,0.1); }
.csi-item__icon--email { background: rgba(11,60,93,0.08); }
.csi-item__icon--addr { background: rgba(212,175,55,0.1); }

.csi-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.csi-item__val {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.csi-hours {
  background: rgba(0,168,150,0.07);
  border: 1px solid rgba(0,168,150,0.18);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.csi-hours__title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.csi-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.csi-hours__row span:first-child { color: var(--text-mid); }
.csi-hours__row span:last-child { font-weight: 600; color: var(--text-dark); }

.csi-cta { margin: 20px 0 0; }
.csi-cta .btn { width: 100%; justify-content: center; }

/* ── FORMS (shared) ─────────────────────────────────────── */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-label span { color: var(--teal); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,150,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238898aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
  cursor: pointer;
}

/* ── CAPTCHA WRAPPER ────────────────────────────────────── */
.captcha-wrapper {
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
}

/* ── MISC UTILITIES ─────────────────────────────────────── */
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-white { color: white; }

.bg-dots {
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.bg-network-light {
  background-image: radial-gradient(circle, rgba(11,60,93,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── LOGO SVG ───────────────────────────────────────────── */
.logo-icon { display: block; flex-shrink: 0; }

/* ── HAMBURGER (mobile) ─────────────────────────────────── */
.hamburger { display: none; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .nav__links,
  .nav__cta .btn--ghost { display: none; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none; 
    border: none;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
  }
  .contact-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
/* ── BUTTON LABEL TOGGLE ────────────────────────────────── */
.btn-label-short { display: none; }
.btn-label-full  { display: inline; }

/* ── MOBILE DRAWER ──────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,45,71,0.5);
  backdrop-filter: blur(3px);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--deep-blue);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: left 0.32s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.mobile-drawer.open {
  left: 0;
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.mobile-drawer__close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-drawer__close:hover { background: rgba(255,255,255,0.2); }

.mobile-drawer__links {
  list-style: none;
  padding: 12px 0;
  flex: 1;
}
.mobile-drawer__links li a {
  display: block;
  padding: 14px 24px;
  font-size: 0.975rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-left: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.mobile-drawer__links li a:hover,
.mobile-drawer__links li a.active {
  color: var(--teal-light);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--teal);
}

.mobile-drawer__footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── RESPONSIVE OVERRIDES ───────────────────────────────── */
@media (max-width: 960px) {
  .btn-label-full  { display: none; }
  .btn-label-short { display: inline; }
  .mobile-overlay  { display: block; pointer-events: none; }
}
