/* ============================================================
   S&M Telecommunications LLC — Magazine Style Redesign
   White Base | Navy #1a237e | Gold #d4af37
   ============================================================ */

:root {
  --clr-white:       #ffffff;
  --clr-off-white:   #f8f9fc;
  --clr-light-gray:  #f0f2f8;
  --clr-navy:        #1a237e;
  --clr-navy-light:  #283593;
  --clr-navy-bright: #3949ab;
  --clr-navy-dark:   #0d1257;
  --clr-gold:        #d4af37;
  --clr-gold-light:  #f0cc5a;
  --clr-gold-dark:   #a07d1e;
  --clr-text:        #1a1a2e;
  --clr-text-mid:    #3d3d6b;
  --clr-text-muted:  #7880a0;
  --clr-border:      #e2e6f3;
  --clr-border-gold: rgba(212, 175, 55, 0.3);
  --grad-gold:       linear-gradient(135deg, #d4af37 0%, #f0cc5a 50%, #d4af37 100%);
  --grad-navy:       linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  --grad-hero:       linear-gradient(135deg, #ffffff 0%, #f0f2f8 100%);
  --shadow-sm:       0 2px 12px rgba(26,35,126,0.08);
  --shadow-md:       0 8px 32px rgba(26,35,126,0.12);
  --shadow-lg:       0 16px 48px rgba(26,35,126,0.16);
  --shadow-gold:     0 8px 32px rgba(212,175,55,0.25);
  --radius:          12px;
  --radius-lg:       20px;
  --radius-xl:       32px;
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:    'Exo 2', sans-serif;
  --font-mono:       'Space Mono', monospace;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--clr-white);
  color: var(--clr-text);
  font-family: var(--font-display);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--clr-navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold); }
ul { list-style: none; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--grad-gold);
  color: var(--clr-navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  color: var(--clr-navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--clr-navy);
  border: 2px solid var(--clr-navy);
}
.btn-outline:hover {
  background: var(--clr-navy);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-navy {
  background: var(--grad-navy);
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  color: var(--clr-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: rgba(26,35,126,0.06);
  color: var(--clr-navy);
  border: 1.5px solid var(--clr-border);
}
.btn-ghost:hover {
  background: var(--clr-navy);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.mt-2 { margin-top: 1rem; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 80px;
}

/* ── Logo ────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--clr-navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-text .amp {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
}

/* ── Navigation ──────────────────────────────────────────── */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  color: var(--clr-text-mid);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--clr-navy);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-gold);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 240px;
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown .dropdown { display: none; }
.has-dropdown:hover > .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
  color: var(--clr-text-mid);
  border-left: 3px solid transparent;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover {
  background: var(--clr-light-gray);
  color: var(--clr-navy);
  border-left-color: var(--clr-gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Section Commons ─────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--clr-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  background: rgba(212,175,55,0.1);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--clr-border-gold);
  font-weight: 700;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--clr-navy-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navy-text { color: var(--clr-navy); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background: var(--clr-white);
}
.hero-grid {
  display: block;
  width: 42%;
  position: relative;
  z-index: 2;
  margin-left: 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--clr-navy);
  color: var(--clr-gold);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--clr-navy-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--clr-border);
}
.stat-item {
  flex: 1;
  padding: 0 1.5rem;
  border-right: 1px solid var(--clr-border);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-navy);
  line-height: 1;
  font-family: var(--font-mono);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}

/* ── Hero Tech Animation ─────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
#tech-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-xl);
}
.hero-visual-card {
  position: absolute;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-visual-card-1 {
  top: 30px; left: 10px;
  animation-delay: 0s;
}
.hero-visual-card-2 {
  bottom: 50px; right: 10px;
  animation-delay: 1.5s;
}
.hero-visual-card-3 {
  top: 50%; left: -20px;
  transform: translateY(-50%);
  animation-delay: 0.8s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hvc-3-anim {
  animation: floatCard3 4s ease-in-out infinite;
  animation-delay: 0.8s;
}
@keyframes floatCard3 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}
.hvc-label {
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hvc-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-top: 0.1rem;
}
.hvc-gold { color: var(--clr-gold-dark); }

/* ── Quick Services Bar ──────────────────────────────────── */
.quick-services {
  padding: 0;
  background: var(--clr-navy);
  position: relative;
  overflow: hidden;
}
.quick-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
}
.qs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.qs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  cursor: default;
}
.qs-item:last-child { border-right: none; }
.qs-item:hover {
  background: rgba(212,175,55,0.1);
}
.qs-icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.qs-text h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.qs-text p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

/* ── Services Section ────────────────────────────────────── */
.services-section {
  padding: 7rem 0;
  background: var(--clr-off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border-gold);
}
.sc-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  background: var(--clr-navy);
  position: relative;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-navy-dark);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  font-family: var(--font-mono);
  border-bottom: 2px solid var(--clr-gold);
  padding-bottom: 2px;
}
.service-link:hover {
  color: var(--clr-gold-dark);
  gap: 0.8rem;
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-section {
  padding: 7rem 0;
  background: var(--clr-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.why-card {
  background: var(--clr-off-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.why-card:hover {
  border-color: var(--clr-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--clr-white);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: var(--clr-navy);
}
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-navy-dark);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* ── Vision Section ──────────────────────────────────────── */
.vision-section {
  padding: 6rem 0;
  background: var(--clr-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.vision-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.vision-section .section-tag {
  background: rgba(212,175,55,0.15);
  color: var(--clr-gold);
  border-color: rgba(212,175,55,0.3);
}
.vision-quote {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.7;
  max-width: 850px;
  margin: 1.5rem auto 0;
  border: none;
  padding: 0 2rem;
  font-style: italic;
  opacity: 0.95;
}
.vision-quote span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  background: var(--clr-off-white);
  text-align: center;
}
.cta-box {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad-gold);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(26,35,126,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--clr-navy-dark);
  margin-bottom: 1rem;
}
.cta-box p {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-navy-dark);
  border-top: 4px solid var(--clr-gold);
  padding: 5rem 0 0;
  position: relative;
  z-index: 1;
}
.footer-glow { display: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
}
.footer-brand .logo-text { color: var(--clr-white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-navy-dark);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.footer-col ul a:hover {
  color: var(--clr-gold);
  padding-left: 0.5rem;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.contact-list a { color: rgba(255,255,255,0.55); }
.contact-list a:hover { color: var(--clr-gold); }
.contact-list svg { color: var(--clr-gold); flex-shrink: 0; }
.footer-credit {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-credit a {
  color: var(--clr-gold);
  font-weight: 600;
}
.footer-credit a:hover { color: var(--clr-gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: var(--clr-gold); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .qs-grid { grid-template-columns: repeat(3, 1fr); }
  .qs-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 768px) {
  .hero { padding: 7rem 0 4rem; }
  .hero::before { display: none; }
  .hero::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-eyebrow { margin: 0 auto 1.5rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--clr-white);
    border-bottom: 3px solid var(--clr-gold);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 0.75rem 1rem; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .qs-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .qs-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 3rem 1.5rem; }
  .stat-item { padding: 0 0.75rem; }
}
/* ═══════════════════════════════════════════════════════
   HERO — COMPACT BANNER
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 420px !important;
  min-height: unset !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
  margin-top: 80px;
}
.hero::before { display: none !important; }
.hero::after  { display: none !important; }
.hero-visual  { display: none !important; }
.hero .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: block !important;
  width: 38% !important;
  position: relative !important;
  z-index: 2 !important;
  margin-left: 0 !important;
  padding: 0 !important;
}
.hero-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  background: rgba(0,0,0,0.3) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: #ffffff !important;
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.3rem 0.75rem !important;
  border-radius: 4px !important;
  margin-bottom: 0.75rem !important;
  white-space: nowrap !important;
}
.hero-eyebrow::before {
  content: '' !important;
  width: 6px !important; height: 6px !important;
  border-radius: 50% !important;
  background: var(--clr-gold) !important;
  flex-shrink: 0 !important;
  animation: none !important;
}
.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 0.75rem !important;
  letter-spacing: -0.01em !important;
}
.hero-title-highlight {
  background: linear-gradient(135deg, #d4af37, #f0cc5a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.hero-title-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.hero-title br { display: inline !important; }
.hero-desc {
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.6 !important;
  margin-bottom: 1.25rem !important;
  max-width: 380px !important;
}
.hero-actions {
  display: flex !important;
  gap: 0.75rem !important;
  flex-wrap: wrap !important;
}
.hero-actions .btn {
  padding: 0.6rem 1.25rem !important;
  font-size: 0.78rem !important;
}
.btn-hero-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  border-radius: 6px !important;
  padding: 0.6rem 1.25rem !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  cursor: pointer !important;
  text-decoration: none !important;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
}
.hero-stats { display: none !important; }
.device-mockup-wrap,
.device-laptop,
.device-phone,
.device-glow,
.tech-badge,
.hero-visual-img,
#tech-canvas { display: none !important; }

@media (max-width: 768px) {
  .hero {
    height: 220px !important;
    background-position: right center !important;
    margin-top: 70px !important;
  }
  .hero-grid { width: 70% !important; }
  .hero-title { font-size: 1.4rem !important; }
  .hero-desc { display: none !important; }
}
/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE — HOMEPAGE
═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Hero — mobile image and sizing */
  .hero {
    height: auto !important;
    min-height: 420px !important;
    padding: 6rem 0 2rem !important;
    background-position: center center !important;
    margin-top: 70px !important;
    align-items: flex-start !important;
  }
  .hero-grid {
    width: 100% !important;
    padding: 1.5rem !important;
  }
  .hero-eyebrow {
    font-size: 0.6rem !important;
    white-space: normal !important;
    text-align: center !important;
    justify-content: center !important;
    margin: 0 auto 0.75rem !important;
  }
  .hero-title {
    font-size: 1.75rem !important;
    text-align: center !important;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6) !important;
  }
  .hero-desc {
    font-size: 0.85rem !important;
    text-align: center !important;
    max-width: 100% !important;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5) !important;
  }
  .hero-actions {
    justify-content: center !important;
  }

  /* Navigation mobile */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--clr-white);
    border-bottom: 3px solid var(--clr-gold);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid var(--clr-border); }
  .main-nav a { padding: 0.85rem 1rem; font-size: 0.85rem; }
  .dropdown {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    padding: 0 0 0 1rem !important;
    background: var(--clr-light-gray) !important;
  }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }

  /* Quick services bar */
  .qs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .qs-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0.5rem !important;
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr !important;
  }

  /* Vision section */
  .vision-quote {
    font-size: 1.1rem !important;
    padding: 0 1rem !important;
  }

  /* CTA */
  .cta-box {
    padding: 2.5rem 1.25rem !important;
  }
  .cta-box h2 {
    font-size: 1.6rem !important;
  }
  .cta-actions {
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
  }
  .footer-legal { justify-content: center !important; }

  /* Section titles */
  .section-title {
    font-size: 1.75rem !important;
  }
  .section-subtitle {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem !important; }
  .qs-grid { grid-template-columns: 1fr !important; }
  .hero-title { font-size: 1.5rem !important; }
  .btn { padding: 0.65rem 1.1rem !important; font-size: 0.8rem !important; }
}
/* ═══════════════════════════════════════════════════════
   ABOUT US PAGE
═══════════════════════════════════════════════════════ */

/* ── About Hero ──────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, #0a0520 0%, #1a0a3e 40%, #0d1a5e 100%);
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(26,35,126,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0;
}
.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--clr-gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.about-hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulse 2s ease-in-out infinite;
}
.about-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.about-hero-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.ahs-item {
  padding: 0 2rem;
  text-align: center;
}
.ahs-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-gold);
  font-family: var(--font-mono);
  line-height: 1;
}
.ahs-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.ahs-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Animated tech lines */
.about-hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.about-hero-lines span {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  height: 1px;
  animation: scanLine 6s ease-in-out infinite;
}
.about-hero-lines span:nth-child(1) { top: 20%; width: 60%; left: 20%; animation-delay: 0s; }
.about-hero-lines span:nth-child(2) { top: 40%; width: 80%; left: 10%; animation-delay: 1s; }
.about-hero-lines span:nth-child(3) { top: 60%; width: 50%; left: 25%; animation-delay: 2s; }
.about-hero-lines span:nth-child(4) { top: 75%; width: 70%; left: 15%; animation-delay: 0.5s; }
.about-hero-lines span:nth-child(5) { top: 85%; width: 40%; left: 30%; animation-delay: 1.5s; }
.about-hero-lines span:nth-child(6) { top: 30%; width: 90%; left: 5%; animation-delay: 2.5s; }
@keyframes scanLine {
  0%, 100% { opacity: 0; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* ── Who We Are ──────────────────────────────────────────── */
.who-we-are {
  padding: 7rem 0;
  background: var(--clr-white);
}
.wwa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.wwa-content .section-tag { margin-bottom: 1rem; }
.wwa-content .section-title { text-align: left; margin-bottom: 1.5rem; }
.wwa-content p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.wwa-content strong { color: var(--clr-navy); }

/* Tech panel */
.wwa-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.wwa-panel {
  background: var(--clr-navy-dark);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,18,87,0.4), 0 0 0 1px rgba(212,175,55,0.1);
  position: relative;
  z-index: 2;
}
.wwa-panel-header {
  background: rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wwa-panel-dots { display: flex; gap: 5px; }
.wpd {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.wpd.red    { background: #ff5f57; }
.wpd.yellow { background: #febc2e; }
.wpd.green  { background: #28c840; }
.wwa-panel-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.wwa-panel-body { padding: 1.5rem; }
.wwa-code-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.wwa-key { color: rgba(212,175,55,0.8); }
.wwa-colon { color: rgba(255,255,255,0.3); }
.wwa-val { color: rgba(255,255,255,0.7); }
.wwa-val.gold { color: var(--clr-gold); }
.wwa-val.green { color: #28c840; }
.wwa-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
  animation: panelScan 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes panelScan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Floating badges */
.wwa-badge {
  position: absolute;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-navy);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  z-index: 3;
}
.wwa-badge-1 {
  top: 10px; left: -20px;
  animation: floatBadge 4s ease-in-out infinite;
}
.wwa-badge-2 {
  bottom: 60px; right: -15px;
  animation: floatBadge 4s ease-in-out infinite;
  animation-delay: 1.5s;
}
.wwa-badge-3 {
  bottom: 10px; left: 10px;
  animation: floatBadge 4s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* ── Our Values ──────────────────────────────────────────── */
.our-values {
  padding: 7rem 0;
  background: var(--clr-off-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border-gold);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.value-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(26,35,126,0.06);
  line-height: 1;
}
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-navy-dark);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* ── About Why ───────────────────────────────────────────── */
.about-why {
  padding: 7rem 0;
  background: var(--clr-white);
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.about-why-card {
  background: var(--clr-off-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.about-why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--grad-gold);
  transition: height 0.4s ease;
}
.about-why-card:hover::after { height: 100%; }
.about-why-card:hover {
  border-color: var(--clr-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--clr-white);
}
.awc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.about-why-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-navy-dark);
  margin-bottom: 0.6rem;
}
.about-why-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* ── About Mobile Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .about-hero { min-height: 350px; margin-top: 70px; }
  .about-hero-stats { gap: 1rem; }
  .ahs-divider { display: none; }
  .ahs-item { padding: 0 1rem; }
  .wwa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .wwa-content .section-title { text-align: center; }
  .wwa-content .section-tag { display: flex; justify-content: center; }
  .wwa-badge { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .about-why-grid { grid-template-columns: 1fr; }
  .about-hero-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .ahs-num { font-size: 1.5rem; }
}