/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --navy:       #0e1b38;
  --navy-mid:   #132244;
  --navy-light: #1a2b55;
  --gold:       #f0b400;
  --gold-dark:  #c89300;
  --white:      #ffffff;
  --gray-bg:    #edeae4;
  --text-muted: #a0aabf;
  --card-bg:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

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

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

/* ===== UTILITY ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider-line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  animation: btn-glow-pulse 2.2s ease-in-out infinite;
}
/* Shine sweep on hover */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(240,180,0,0.7), 0 0 60px rgba(240,160,0,0.3);
}
.btn-gold:hover::after { left: 160%; }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 27, 56, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 4px rgba(240,180,0,0.2));
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { margin-left: 16px; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg stroke='rgba(240,180,0,0.07)' stroke-width='1' fill='none'%3E%3Cline x1='0' y1='30' x2='90' y2='30'/%3E%3Cline x1='90' y1='0' x2='90' y2='30'/%3E%3Cline x1='30' y1='30' x2='30' y2='120'/%3E%3Cline x1='60' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='60' x2='120' y2='60'/%3E%3Cline x1='0' y1='90' x2='60' y2='90'/%3E%3Cline x1='90' y1='60' x2='90' y2='120'/%3E%3Cline x1='90' y1='90' x2='120' y2='90'/%3E%3C/g%3E%3Cg fill='rgba(240,180,0,0.13)'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='90' cy='30' r='2'/%3E%3Ccircle cx='60' cy='60' r='2'/%3E%3Ccircle cx='30' cy='90' r='2'/%3E%3Ccircle cx='90' cy='90' r='2'/%3E%3C/g%3E%3C/svg%3E") 0 0 / 120px 120px repeat,
    linear-gradient(rgba(8,15,34,0.80), rgba(8,15,34,0.80)),
    url('/images/macbook-repair.png') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-badges {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.hero-badge::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

/* ===== BRAND STRIP ===== */
#brand-strip {
  background: linear-gradient(180deg, #07101f 0%, #0b1632 50%, #070f1e 100%);
  padding: 52px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===== WHAT WE FIX ===== */
#what-we-fix {
  background: linear-gradient(160deg, #0a1228 0%, #0e1b38 50%, #0c1632 100%);
  padding: 90px 0;
  text-align: center;
}

.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.section-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 52px;
}

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

.service-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 44px;
}

.service-card {
  position: relative;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.service-card:hover {
  border-color: rgba(240,180,0,0.3);
  box-shadow: 0 0 28px rgba(240,180,0,0.1);
}
.service-card.active {
  border-color: rgba(240,180,0,0.5);
  box-shadow: 0 0 40px rgba(240,180,0,0.18);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.service-card:hover .service-card-bg { transform: scale(1.05); }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,40,0.85) 0%, rgba(10,18,40,0.3) 100%);
}

.service-card-label {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}


.fix-footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ===== WHY US ===== */
#why-us {
  background: linear-gradient(160deg, #060d20 0%, #0a1530 60%, #060d20 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
}

.why-us-radial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(240,180,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

#why-us .section-heading { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 52px 0 44px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 36px 24px;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, border-color 0.25s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(240,180,0,0.15);
  border-color: rgba(240,180,0,0.15);
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-3deg); }

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 4px;
  transition: transform 0.3s;
}

.why-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.why-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== OUR TECHNICIANS ===== */
#our-techs {
  background: linear-gradient(160deg, #07101f 0%, #0e1b38 60%, #07101f 100%);
  padding: 90px 0;
}

.techs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.techs-image {
  border-radius: 6px;
  overflow: hidden;
  height: 380px;
  background: url('/images/desktop-repair.png') center/cover no-repeat, var(--navy-light);
}

.techs-card {
  background: var(--white);
  color: var(--navy);
  padding: 48px 44px;
  border-radius: 6px;
}

.techs-card .section-label { margin-bottom: 16px; display: block; }

.techs-card h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 36px;
  color: var(--navy);
}

.tech-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.tech-feature-bar {
  width: 3px;
  min-height: 100%;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.tech-feature h4 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--navy);
}

.tech-feature p {
  font-size: 0.82rem;
  color: #4a5568;
  line-height: 1.5;
}

.techs-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-navy {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-navy:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ===== REVIEWS ===== */
#reviews {
  background: linear-gradient(180deg, #040b1a 0%, #070f28 100%);
  padding: 90px 0;
  text-align: center;
}

#reviews .section-heading { margin-bottom: 8px; }
#reviews .section-desc { margin-bottom: 52px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.review-card {
  padding: 32px 28px;
  border-radius: 6px;
  text-align: left;
  background: rgba(14, 26, 58, 0.82);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  border-color: rgba(240,180,0,0.2);
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold), #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(240,180,0,0.3));
}

.review-text {
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 12px;
}

.review-author {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.review-author strong { color: rgba(255,255,255,0.9); }
.review-service { color: var(--gold); font-style: normal; }

.reviews-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  padding: 14px 0;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--white); }

/* ===== CERT WALL ===== */
#cert-wall {
  background: linear-gradient(160deg, #0a1428 0%, #0e1b38 50%, #0a1428 100%);
  padding: 90px 0;
  text-align: center;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 48px 0 52px;
}

.cert-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 24px 36px;
  min-width: 160px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cert-badge:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(240,180,0,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(240,180,0,0.1);
}
.cert-badge:hover .cert-badge-icon { transform: scale(1.2); }

.cert-badge-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.cert-badge-name {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.cert-badge-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== CTA BANNER ===== */
#cta-banner {
  background: linear-gradient(135deg, #05091a 0%, #0a1530 50%, #05091a 100%);
  position: relative;
  padding: 100px 0;
  text-align: center;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,18,40,0.78);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-inner h2 .gold { color: var(--gold); }
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

/* ===== FOOTER ===== */
footer {
  background: #070e1f;
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.5);
}

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

.footer-brand h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold); }

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* Footer new classes */
.footer-address a,
.footer-brand p a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-address a:hover,
.footer-brand p a:hover { color: var(--gold); }

.footer-hours-short {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.social-link:hover { color: var(--gold); }
.social-link svg { flex-shrink: 0; }

/* Hours column */
.footer-hours-col h4 { color: var(--white); }

.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.hours-day {
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

.hours-time { white-space: nowrap; }

.hours-closed .hours-time {
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-grid-top { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .techs-inner { grid-template-columns: 1fr; }
  .techs-image { height: 280px; }
  .services-6-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  /* Footer: brand full-width on top, then 3 columns */
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  /* Keep 2 col service grid down to 480px for readability */
  .service-grid-top,
  .service-grid-bottom { grid-template-columns: repeat(2, 1fr); }
  .services-6-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .service-grid-top,
  .service-grid-bottom,
  .services-6-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}

/* ===== INNER HERO (non-home pages) ===== */
.inner-hero {
  background: linear-gradient(160deg, #060e22 0%, #0e1b38 50%, #08121e 100%);
  padding: 140px 0 70px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.inner-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin: 12px 0 16px;
  text-transform: uppercase;
}

.inner-hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

/* ===== FORM PAGES ===== */
.form-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.form-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 52px 48px;
}

.form-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin: 12px 0 10px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.6;
}

.site-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-full { width: 100%; text-align: center; }

.form-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 20px 24px;
  border-radius: 6px;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.form-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

/* ===== CONTACT INFO ROW ===== */
.contact-info-row {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}

.ci-icon { font-size: 1.4rem; margin-top: 2px; }

.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* nav active state — larger, bolder, gold */
.nav-links a.active {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-caret {
  font-size: 0.6rem;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-dropdown.open .dropdown-caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: #0e1b38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  overflow: hidden;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* small triangle pointer */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #0e1b38;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
}

.dropdown-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
  color: var(--white);
}
.dropdown-item:last-of-type { border-bottom: none; }
.dropdown-item:hover { background: rgba(255,255,255,0.06); }
.dropdown-item:hover .dropdown-item-label { color: var(--gold); }

.dropdown-item-img {
  width: 52px;
  height: 40px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
  flex-shrink: 0;
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-item-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.15s;
}

.dropdown-item-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  line-height: 1.3;
}

.dropdown-footer {
  padding: 14px 20px;
  background: rgba(240,180,0,0.08);
  border-top: 1px solid rgba(240,180,0,0.2);
}

.dropdown-cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color 0.2s;
}
.dropdown-cta:hover { color: var(--gold-dark); }

/* ===== MOBILE NAV ===== */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.2rem;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #0a1228;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0 20px;
}

.nav-mobile-menu a {
  display: block;          /* ensures sub-links inside divs also stack */
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
  white-space: normal;     /* allow long labels to wrap */
  word-break: break-word;
}
.nav-mobile-menu a:hover { color: var(--gold); }

.nav-mobile-menu .mobile-sub-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  padding-left: 36px;
  line-height: 1.4;
}

.nav-mobile-menu .mobile-book-btn {
  margin: 16px 24px 0;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  border-bottom: none;
}
.nav-mobile-menu.open { display: flex; }

/* ===== SERVICE CARD INTERACTIVE ===== */
.service-click-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-card.expandable { cursor: pointer; }

.service-card-plus {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
  pointer-events: none;
}

.service-card.active .service-card-plus { color: var(--gold); }

.service-card.active {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.service-card.expandable:hover .service-card-plus { color: var(--gold); }

/* ===== EXPAND PANEL ===== */
/* CSS Grid row trick — works at any content height, no fixed max-height needed */
.service-expand-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease,
              margin-bottom 0.3s ease;
  opacity: 0;
  margin-bottom: 0;
}

.service-expand-panel.open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-bottom: 16px;
}

.ep-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #0a1530;
  border: 1px solid rgba(240,180,0,0.25);
  border-radius: 6px;
  padding: 36px 40px;
  position: relative;
  text-align: left;
  /* Required for CSS Grid row collapse to work */
  overflow: hidden;
  min-height: 0;
}

.ep-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.ep-headline {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ep-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ep-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(240,180,0,0.08);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 4px 4px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}
.ep-highlight-icon { flex-shrink: 0; }

.ep-block { margin-bottom: 20px; }

.ep-block-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ep-fixes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ep-fixes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.ep-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.ep-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ep-brand {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.ep-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 13px 28px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.ep-cta:hover { background: var(--gold-dark); }

.ep-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.ep-close:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
/* ep-detail-link */
.ep-detail-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s, gap 0.2s;
}
.ep-detail-link:hover { color: #fff; }

/* Mobile nav active link */
.nav-mobile-menu a.nav-active { color: var(--gold) !important; font-weight: 800; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 12px 16px; }
  /* Keep the CTA button visible at tablet widths, just compact it */
  .nav-cta {
    padding: 10px 16px;
    font-size: 0.72rem;
    margin-left: 8px;
    white-space: nowrap;
  }
  .nav-logo { font-size: 0.88rem; gap: 8px; }
  .nav-logo-img { width: 36px; height: 36px; }
  .nav-mobile-toggle { display: block; }
  .ep-inner { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  /* Full-width CTA in panel on mobile */
  .ep-cta { display: block; text-align: center; width: 100%; }
  /* Bigger close hit-target on touch */
  .ep-close {
    top: 10px;
    right: 10px;
    padding: 10px 12px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .form-card { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-row { flex-direction: column; }
}

/* ===== SERVICE DETAIL PAGE ===== */
.sd-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}

.sd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
}
.sd-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,35,0.97) 0%, rgba(8,15,35,0.5) 60%, rgba(8,15,35,0.2) 100%);
}

.sd-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

.sd-breadcrumb {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.sd-breadcrumb:hover { color: var(--gold); }

.sd-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sd-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.sd-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sd-hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.sd-hero-badge span { color: var(--gold); font-size: 0.9rem; }

/* ===== REPAIR GRID ===== */
.sd-repairs {
  background: var(--navy-mid);
  padding: 90px 0;
}

.sd-repair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sd-repair-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.sd-repair-card:hover {
  border-color: rgba(240,180,0,0.35);
  background: rgba(240,180,0,0.04);
}

.sd-repair-icon { font-size: 2rem; margin-bottom: 14px; }

.sd-repair-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.sd-repair-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ===== BRANDS SECTION ===== */
.sd-brands {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}

.sd-brand-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.sd-brand-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: border-color 0.2s, color 0.2s;
}
.sd-brand-tag:hover { border-color: var(--gold); color: var(--gold); }

.sd-highlight-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,180,0,0.08);
  border: 1px solid rgba(240,180,0,0.25);
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}
.sd-highlight-icon { font-style: normal; }

/* ===== OTHER SERVICES (on detail page) ===== */
.sd-other-services {
  background: var(--navy-mid);
  padding: 80px 0;
}

.sd-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sd-other-card {
  position: relative;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}

.sd-other-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
  transition: transform 0.4s;
}
.sd-other-card:hover .sd-other-bg { transform: scale(1.06); }

.sd-other-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,35,0.9) 0%, rgba(8,15,35,0.2) 60%);
}

.sd-other-label {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 8px;
}

/* ===== SERVICES OVERVIEW PAGE ===== */
.svc-overview-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svc-overview-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
  color: var(--white);
}
.svc-overview-card:hover {
  border-color: rgba(240,180,0,0.3);
  background: rgba(240,180,0,0.03);
}

.svc-overview-bg {
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
  min-height: 220px;
}

.svc-overview-body {
  padding: 28px 32px;
}

.svc-overview-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.svc-overview-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-overview-fixes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  margin-bottom: 16px;
}

.svc-overview-fixes li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-overview-highlight {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
}

.svc-overview-cta {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}
.svc-overview-card:hover .svc-overview-cta { color: #fff; }

/* ===== CONTACT CUSTOMER TYPE TOGGLE ===== */
.contact-card { max-width: 780px; }

.ct-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  overflow: hidden;
}

.ct-btn {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.04em;
}
.ct-btn:first-child { border-right: 1px solid rgba(255,255,255,0.12); }
.ct-btn.active {
  background: var(--gold);
  color: var(--navy);
}
.ct-btn:not(.active):hover { background: rgba(255,255,255,0.05); color: var(--white); }

.commercial-badge {
  background: rgba(240,180,0,0.08);
  border: 1px solid rgba(240,180,0,0.2);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ===== MOBILE NAV SUB-MENU ACCORDION ===== */
.mobile-svc-subs {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-svc-subs.open {
  max-height: 600px;
}
.mobile-svc-toggle.expanded {
  color: var(--gold) !important;
}

/* ===== ABOUT PAGE — STORY ===== */
.about-story { padding: 80px 0; background: linear-gradient(180deg, #0a1228 0%, #0e1b38 100%); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0 20px;
  line-height: 1.2;
}
.about-story-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.about-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-story-img { display: flex; justify-content: center; }
.about-img-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: url('/images/switch-teardown.png') center/cover no-repeat, linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 2px solid rgba(240,180,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Dark gradient scrim over the photo for text legibility */
.about-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,34,0.72) 0%, rgba(6,14,34,0.55) 50%, rgba(6,14,34,0.85) 100%);
  pointer-events: none;
}
/* ===== ABOUT PAGE — CERTIFICATIONS ===== */
.about-certs { padding: 80px 0; background: linear-gradient(160deg, #060d20 0%, #0c1835 60%, #060d20 100%); }
.section-subheading {
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 12px auto 48px;
  text-align: center;
  line-height: 1.6;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, border-color 0.25s;
}
.cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,180,0,0.35);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(240,180,0,0.12);
}
.cert-card-icon { font-size: 2rem; margin-bottom: 12px; }
.cert-card-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.cert-card-sub {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.cert-card-list {
  list-style: none;
  padding: 0;
}
.cert-card-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.4;
}
.cert-card-list li:last-child { border-bottom: none; }
.cert-also {
  margin-top: 40px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
}
.cert-also strong { color: var(--white); }
.industry-cert {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.industry-cert-logo {
  width: 110px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.industry-cert-text strong {
  display: block;
  color: #2d3748 !important;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.industry-cert-text span {
  color: rgba(45,55,72,0.75);
  font-size: 0.78rem;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .industry-cert { flex-direction: column; text-align: center; gap: 10px; }
  .industry-cert-text { text-align: center; }
}

/* ===== ABOUT PAGE — TECHS ===== */
.about-techs { padding: 80px 0; background: linear-gradient(160deg, #07101f 0%, #0e1b38 60%, #07101f 100%); }

/* ===== ABOUT PAGE — PRICING ===== */
.about-pricing { padding: 80px 0; background: linear-gradient(160deg, #040b1a 0%, #0a1530 100%); }
.about-pricing .section-heading { text-align: center; margin: 12px 0; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--navy-mid);
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}
.pricing-card-free  { border-top: 3px solid #34c759; }
.pricing-card-fee   { border-top: 3px solid var(--gold); }
.pricing-card-repair { border-top: 3px solid #5ac8fa; }
.pricing-card-icon { font-size: 2rem; margin-bottom: 12px; }
.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.pricing-card-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}
.pricing-fee-note {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f44;
  margin-bottom: 12px !important;
}
.pricing-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.pricing-card-includes {
  list-style: none;
  padding: 0;
  margin-top: auto;
}
.pricing-card-includes li {
  font-size: 0.8rem;
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
}
.pricing-note {
  background: rgba(240,180,0,0.06);
  border: 1px solid rgba(240,180,0,0.15);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.pricing-note strong { color: var(--gold); }

/* ===== TERMS PAGE ===== */
.terms-page { padding: 60px 0 100px; }
.terms-doc {
  max-width: 820px;
  margin: 0 auto;
}
.terms-intro {
  background: rgba(240,180,0,0.06);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.terms-toc {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.terms-toc h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}
.terms-toc ol {
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}
.terms-toc li { font-size: 0.85rem; }
.terms-toc a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.terms-toc a:hover { color: var(--gold); }
.terms-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terms-section:last-child { border-bottom: none; }
.terms-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
  padding-top: 8px;
}
.terms-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.terms-section p {
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.terms-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.terms-section ul li {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.terms-section strong { color: var(--white); }
.terms-section a { color: var(--gold); text-decoration: underline; }
.terms-contact {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 16px 0;
}
.terms-contact p {
  margin-bottom: 6px;
}

/* ===== RESPONSIVE (new sections) ===== */
@media (max-width: 900px) {
  .sd-repair-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-other-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-overview-card { grid-template-columns: 1fr; }
  .svc-overview-bg { min-height: 180px; }
  .svc-overview-fixes { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img { order: -1; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
  .terms-toc ol { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sd-repair-grid { grid-template-columns: 1fr; }
  .sd-other-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-hero { min-height: 80vh; padding-bottom: 40px; }
  .sd-hero-actions { flex-direction: column; align-items: flex-start; }
  .svc-overview-body { padding: 20px; }
  .ct-toggle { flex-direction: column; }
  .ct-btn:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .about-story-stats { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr; }
}


/* ======================================================
   ANIMATION SYSTEM
   ====================================================== */

@keyframes smtn-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes smtn-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes smtn-slide-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes smtn-slide-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes smtn-scale-in {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes smtn-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes smtn-pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,180,0,0); }
  50%       { box-shadow: 0 0 0 8px rgba(240,180,0,0.12); }
}
@keyframes smtn-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes smtn-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Base state: elements with data-animate start hidden */
[data-animate] {
  opacity: 0;
  will-change: transform, opacity;
}

/* When IntersectionObserver fires .animate-visible */
[data-animate].animate-visible {
  animation-fill-mode: both;
  animation-duration: 0.65s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate="fade-up"].animate-visible    { animation-name: smtn-fade-up; }
[data-animate="fade-in"].animate-visible    { animation-name: smtn-fade-in; }
[data-animate="slide-left"].animate-visible { animation-name: smtn-slide-left; }
[data-animate="slide-right"].animate-visible{ animation-name: smtn-slide-right; }
[data-animate="scale-in"].animate-visible   { animation-name: smtn-scale-in; }

/* Stagger delays */
[data-delay="0"].animate-visible   { animation-delay: 0s; }
[data-delay="60"].animate-visible  { animation-delay: 0.06s; }
[data-delay="80"].animate-visible  { animation-delay: 0.08s; }
[data-delay="100"].animate-visible { animation-delay: 0.1s; }
[data-delay="120"].animate-visible { animation-delay: 0.12s; }
[data-delay="160"].animate-visible { animation-delay: 0.16s; }
[data-delay="200"].animate-visible { animation-delay: 0.2s; }
[data-delay="240"].animate-visible { animation-delay: 0.24s; }
[data-delay="300"].animate-visible { animation-delay: 0.3s; }
[data-delay="320"].animate-visible { animation-delay: 0.32s; }
[data-delay="400"].animate-visible { animation-delay: 0.4s; }

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; animation: none !important; transition: none !important; }
}


/* ======================================================
   VISUAL IMPROVEMENTS — HERO
   ====================================================== */

/* Animated hero gradient */
#hero {
  background: linear-gradient(135deg, #060e22 0%, #0e1b38 40%, #0a1428 70%, #060e22 100%);
  background-size: 400% 400%;
  animation: smtn-gradient-shift 12s ease infinite;
}

/* Circuit-board texture overlay on hero */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.hero-content { position: relative; z-index: 2; }

/* inner-hero circuit overlay */
.inner-hero { position: relative; }
.inner-hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg stroke='rgba(240,180,0,0.06)' stroke-width='1' fill='none'%3E%3Cline x1='0' y1='30' x2='90' y2='30'/%3E%3Cline x1='90' y1='0' x2='90' y2='30'/%3E%3Cline x1='30' y1='30' x2='30' y2='120'/%3E%3Cline x1='60' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='60' x2='120' y2='60'/%3E%3Cline x1='0' y1='90' x2='60' y2='90'/%3E%3Cline x1='90' y1='60' x2='90' y2='120'/%3E%3Cline x1='90' y1='90' x2='120' y2='90'/%3E%3C/g%3E%3Cg fill='rgba(240,180,0,0.11)'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='90' cy='30' r='2'/%3E%3Ccircle cx='60' cy='60' r='2'/%3E%3Ccircle cx='30' cy='90' r='2'/%3E%3Ccircle cx='90' cy='90' r='2'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 120px 120px, cover;
  pointer-events: none;
  z-index: 0;
}
.inner-hero .container { position: relative; z-index: 1; }


/* ======================================================
   VISUAL IMPROVEMENTS — BUTTONS
   ====================================================== */

/* Outline button improvement */
.btn-outline {
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.08);
}


/* ======================================================
   VISUAL IMPROVEMENTS — NAV
   ====================================================== */

nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(14,27,56,0.92) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 24px rgba(0,0,0,0.4);
}

/* Nav CTA button pulse on load */
.nav-cta { animation: smtn-pulse-gold 3s ease-in-out 2s 3; }

/* Dropdown improvements */
.dropdown-menu {
  border: 1px solid rgba(240,180,0,0.12) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) !important;
}
.dropdown-item {
  transition: background 0.15s, transform 0.15s !important;
}
.dropdown-item:hover {
  background: rgba(240,180,0,0.08) !important;
  transform: translateX(3px);
}


/* ======================================================
   VISUAL IMPROVEMENTS — SERVICE DETAIL PAGE
   ====================================================== */

/* Extra overlay for better text readability */
.sd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,34,0.85) 0%, rgba(14,27,56,0.65) 60%, rgba(6,14,34,0.8) 100%);
  z-index: 1;
}
.sd-hero-bg { z-index: 0; }
.sd-hero-content { position: relative; z-index: 2; }

.sd-repair-card {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, border-color 0.25s !important;
}
.sd-repair-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,180,0,0.2) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35) !important;
}
.sd-repair-icon { transition: transform 0.3s; }
.sd-repair-card:hover .sd-repair-icon { transform: scale(1.15); }

.sd-other-card {
  transition: transform 0.25s, box-shadow 0.25s !important;
}
.sd-other-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

/* Breadcrumb */
.sd-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  transition: color 0.2s, gap 0.2s;
}
.sd-breadcrumb:hover { color: var(--gold); gap: 10px; }


/* ======================================================
   VISUAL IMPROVEMENTS — SERVICES OVERVIEW PAGE
   ====================================================== */

.svc-overview-card {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, border-color 0.25s !important;
}
.svc-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5) !important;
  border-color: rgba(240,180,0,0.2) !important;
}


/* ======================================================
   VISUAL IMPROVEMENTS — ABOUT PAGE STATS
   ====================================================== */

.about-stat {
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.about-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(240,180,0,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.about-stat-num {
  background: linear-gradient(135deg, var(--gold), #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ======================================================
   VISUAL IMPROVEMENTS — PRICING CARDS
   ====================================================== */

.pricing-card {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s !important;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4) !important;
}


/* ======================================================
   VISUAL IMPROVEMENTS — CTA BANNER
   ====================================================== */

#cta-banner {
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,180,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
#cta-banner .container { position: relative; z-index: 1; }


/* ======================================================
   VISUAL IMPROVEMENTS — FOOTER
   ====================================================== */

footer a { transition: color 0.2s, padding-left 0.2s; }
footer a:hover { color: var(--gold) !important; padding-left: 4px; }


/* ======================================================
   VISUAL IMPROVEMENTS — BRAND STRIP
   ====================================================== */

#brand-strip {
  position: relative;
  overflow: hidden;
}
#brand-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(240,180,0,0.04), transparent);
  animation: smtn-gradient-shift 6s ease infinite;
  background-size: 300% 100%;
  pointer-events: none;
}
#brand-strip .container { position: relative; z-index: 1; }


/* ======================================================
   VISUAL IMPROVEMENTS — EXPAND PANEL
   ====================================================== */

.service-expand-panel.open {
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(240,180,0,0.1) !important;
}
.ep-close {
  transition: background 0.2s, transform 0.2s !important;
}
.ep-close:hover {
  background: rgba(240,180,0,0.15) !important;
  transform: scale(1.1) rotate(90deg) !important;
}


/* ======================================================
   RESPONSIVE FINAL
   ====================================================== */

@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .about-story-stats { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr; }
  .terms-toc ol { grid-template-columns: 1fr; }
}


/* ======================================================
   GRADIENT TEXT UTILITY
   ====================================================== */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #ffe066 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: smtn-shimmer 4s linear infinite;
}
.review-service {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ======================================================
   BY THE NUMBERS SECTION
   ====================================================== */
#by-numbers {
  background: linear-gradient(135deg, #040b1a 0%, #0a1530 50%, #040b1a 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.by-numbers-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(240,180,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.numbers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  text-align: center;
}
.number-val {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, #ffe066 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.number-plus {
  font-size: 60%;
  vertical-align: super;
}
.number-unit {
  font-size: 52%;
  font-weight: 800;
  letter-spacing: 0.04em;
  vertical-align: baseline;
  margin-left: 3px;
  color: rgba(240,180,0,0.75);
}
.number-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  max-width: 120px;
  line-height: 1.4;
}
.number-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ======================================================
   HOW IT WORKS SECTION
   ====================================================== */
#how-it-works {
  background: linear-gradient(160deg, #0c1835 0%, #0a1428 100%);
  padding: 100px 0;
}
.how-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
}
.how-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 44px 28px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.how-step:hover {
  transform: translateY(-6px);
  border-color: rgba(240,180,0,0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.how-step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  margin-top: 8px;
}
.how-step-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}
.how-step-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 12px;
  align-self: center;
  margin-top: -16px;
}
.how-connector-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, rgba(240,180,0,0.2), rgba(240,180,0,0.6), rgba(240,180,0,0.2));
}
.how-connector-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-top: 4px;
}

/* ======================================================
   ABOUT HERO EXTRAS
   ====================================================== */
.about-hero {
  background: linear-gradient(160deg, #060e22 0%, #0e1b38 50%, #05091c 100%) !important;
}
.about-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,180,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,180,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.about-img-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
}
.about-img-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
}
.about-img-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.9);
}
.about-img-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.about-img-badges span {
  background: rgba(6,14,34,0.85);
  border: 1px solid rgba(240,180,0,0.55);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ======================================================
   ABOUT SERVICE EXPERTISE SECTION
   ====================================================== */
.about-svc-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #0a1228 0%, #0e1b38 60%, #0a1228 100%);
}
.about-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.about-svc-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.about-svc-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0,0,0,0.55);
}
.about-svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.about-svc-card:hover .about-svc-bg { transform: scale(1.06); }
.about-svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,34,0.96) 0%, rgba(6,14,34,0.55) 55%, rgba(6,14,34,0.2) 100%);
  transition: background 0.3s;
}
.about-svc-card:hover .about-svc-overlay {
  background: linear-gradient(to top, rgba(6,14,34,0.98) 0%, rgba(6,14,34,0.75) 60%, rgba(6,14,34,0.35) 100%);
}
.about-svc-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
.about-svc-label {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  display: block;
}
.about-svc-fixes {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}
.about-svc-card:hover .about-svc-fixes {
  max-height: 120px;
  opacity: 1;
}
.about-svc-fixes li {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 2px 0;
}
.about-svc-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ======================================================
   SERVICES PAGE
   ====================================================== */
.services-hero {
  background: linear-gradient(160deg, #060e22 0%, #0c1835 50%, #06101e 100%) !important;
}
.services-page-section {
  background: linear-gradient(180deg, #0a1228 0%, #0e1b38 100%);
  padding: 80px 0;
}
.services-trust-bar {
  background: linear-gradient(to right, #07101f, #0c1835, #07101f);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.trust-icon { font-size: 1rem; }
.trust-sep {
  color: rgba(255,255,255,0.15);
  font-size: 1.2rem;
  font-weight: 300;
}

/* ======================================================
   SERVICE DETAIL — OUR PROMISE
   ====================================================== */
.sd-promise {
  background: linear-gradient(160deg, #060d20 0%, #0a1530 100%);
  padding: 90px 0;
}
.sd-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.sd-promise-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.sd-promise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,180,0,0.22);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.sd-promise-icon { font-size: 2.5rem; margin-bottom: 16px; }
.sd-promise-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--gold);
}
.sd-promise-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ======================================================
   CTA GLOW ELEMENT
   ====================================================== */
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(240,180,0,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#cta-banner .container { position: relative; z-index: 1; }

/* ======================================================
   RESPONSIVE ADDITIONS
   ====================================================== */
@media (max-width: 900px) {
  .how-grid { flex-direction: column; align-items: center; gap: 32px; }
  .how-connector { transform: rotate(90deg); margin: -8px 0; }
  .about-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-promise-grid { grid-template-columns: 1fr; }
  .number-item { padding: 16px 24px; }
  .number-divider { height: 40px; }
  .trust-sep { display: none; }
  .trust-items { gap: 16px; }
}
@media (max-width: 600px) {
  .about-svc-grid { grid-template-columns: 1fr; }
  .how-step { max-width: 100%; }
  .numbers-grid { flex-direction: column; gap: 0; }
  .number-divider { width: 60px; height: 1px; margin: 0 auto; }
  .number-item { padding: 20px 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-promise-grid { grid-template-columns: 1fr; }
  /* Tighter section padding on small screens */
  #what-we-fix, #why-us, #our-techs, #reviews, #cert-wall, #how-it-works, #faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #cta-banner { padding: 70px 0; }
  /* Smaller hero padding */
  .hero-content { padding-top: 90px; padding-bottom: 60px; }
}

/* ======================================================
   HERO FIX IT GLOW
   ====================================================== */
.hero-fix-glow {
  background: linear-gradient(90deg, #f0b400 0%, #ffe066 40%, #f0b400 70%, #e09000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: smtn-shimmer 7s linear infinite, fix-glow-breathe 3.5s ease-in-out infinite;
  display: inline-block;
}
@keyframes fix-glow-breathe {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(240,180,0,0.35)) drop-shadow(0 0 28px rgba(240,160,0,0.12)); }
  50%       { filter: drop-shadow(0 0 28px rgba(240,180,0,0.85)) drop-shadow(0 0 60px rgba(240,160,0,0.45)); }
}

/* ======================================================
   BTN-GOLD PULSE GLOW
   ====================================================== */
@keyframes btn-glow-pulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(240,180,0,0.3), 0 0 0 0 rgba(240,180,0,0.0);
    transform: translateY(0);
  }
  40% {
    box-shadow: 0 6px 30px rgba(240,180,0,0.72), 0 0 55px rgba(240,160,0,0.25);
    transform: translateY(-1px);
  }
  60% {
    box-shadow: 0 6px 30px rgba(240,180,0,0.72), 0 0 55px rgba(240,160,0,0.25);
    transform: translateY(-1px);
  }
}

/* ======================================================
   DEVICE MARQUEE
   ====================================================== */
.device-marquee-strip {
  position: relative;
  background: linear-gradient(to right, #060d20, #0a1530, #060d20);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  padding: 18px 0;
}
.device-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.device-marquee-strip:hover .device-marquee-track {
  animation-play-state: paused;
}
.device-marquee-item {
  display: inline-block;
  padding: 0 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.device-marquee-item:hover { color: var(--gold); }
.device-marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.device-marquee-fade-left  { left:  0; background: linear-gradient(to right, #060d20, transparent); }
.device-marquee-fade-right { right: 0; background: linear-gradient(to left,  #060d20, transparent); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ======================================================
   FAQ ACCORDION
   ====================================================== */
#faq {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg stroke='rgba(240,180,0,0.05)' stroke-width='1' fill='none'%3E%3Cline x1='0' y1='30' x2='90' y2='30'/%3E%3Cline x1='90' y1='0' x2='90' y2='30'/%3E%3Cline x1='30' y1='30' x2='30' y2='120'/%3E%3Cline x1='60' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='60' x2='120' y2='60'/%3E%3Cline x1='0' y1='90' x2='60' y2='90'/%3E%3Cline x1='90' y1='60' x2='90' y2='120'/%3E%3C/g%3E%3Cg fill='rgba(240,180,0,0.09)'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3Ccircle cx='90' cy='30' r='1.5'/%3E%3Ccircle cx='60' cy='60' r='1.5'/%3E%3Ccircle cx='30' cy='90' r='1.5'/%3E%3C/g%3E%3C/svg%3E") 0 0/120px 120px repeat,
    linear-gradient(160deg, #060d20 0%, #0a1530 60%, #060d20 100%);
  padding: 90px 0;
}
.faq-list {
  max-width: 780px;
  margin: 52px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
}
.faq-a p {
  padding: 0 0 22px;
  font-size: 0.85rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
}
@media (max-width: 600px) {
  .faq-q { font-size: 0.84rem; }
  .device-marquee-fade { width: 60px; }
}
