/* ═══════════════════════════════════════════
   PCFIXPRO — Shared Stylesheet
   Design System: Dark Tech / Professional
   Font: Poppins | Accent: #ff6b2b
═══════════════════════════════════════════ */

:root {
  --bg: #0a0b0f;
  --bg2: #0f1117;
  --bg3: #141620;
  --surface: #1a1d2e;
  --surface2: #222537;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --accent: #ff6b2b;
  --accent2: #ff8c5a;
  --accent3: #ffb347;
  --blue: #3b8bff;
  --blue2: #60a5fa;
  --green: #22d47a;
  --red: #ef4444;
  --amber: #f59e0b;
  --teal: #0abf8a;
  --teal2: #0abf8a;
  --teal-lt: rgba(10, 191, 138, 0.1);
  --blue-lt: rgba(59, 139, 255, 0.1);
  --amber-lt: rgba(245, 158, 11, 0.1);
  --red-lt: rgba(239, 68, 68, 0.1);
  --text: #f0f2ff;
  --text2: #9ea8c8;
  --text3: #5c6480;
  --ink3: #5c6480;
  --font-head: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-it: "Poppins", sans-serif;
  --radius: 14px;
  --radius2: 24px;
  --glow: 0 0 60px rgba(255, 107, 43, 0.15);
  --glow2: 0 0 40px rgba(59, 139, 255, 0.12);
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --dark-sec-bg: #1a1d2e;
  --dark-sec-bg2: #222537;
  --dark-sec-text: #f0f2ff;
  --dark-sec-text2: rgba(240, 242, 255, 0.6);
  --dark-sec-text3: rgba(240, 242, 255, 0.4);
  --dark-sec-border: rgba(255, 255, 255, 0.1);
  --dark-sec-tile: rgba(255, 255, 255, 0.04);
  --dark-sec-tile-b: rgba(255, 255, 255, 0.1);
  --hp-surface: var(--surface);
  --hp-surface2: var(--surface2);
  --hp-border: var(--border);
  --hp-border2: var(--border2);
  --hp-text: var(--text);
  --hp-text2: var(--text2);
  --hp-text3: var(--text3);
  --hp-bg: var(--bg);
  --hp-bg2: var(--bg2);
}

[data-theme="light"] {
  --bg: #f4f6fb;
  --bg2: #eaecf4;
  --bg3: #dfe2ed;
  --surface: #ffffff;
  --surface2: #f0f2fa;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.14);
  --accent: #e8591e;
  --accent2: #ff7a46;
  --accent3: #f59e0b;
  --blue: #2563eb;
  --blue2: #3b82f6;
  --green: #16a34a;
  --teal: #0a9e72;
  --teal2: #0a9e72;
  --text: #0f1117;
  --text2: #4a5268;
  --text3: #8b93ad;
  --ink3: #8b93ad;
  --glow: 0 0 60px rgba(232, 89, 30, 0.1);
  --glow2: 0 0 40px rgba(37, 99, 235, 0.08);
  --dark-sec-bg: #1a1d2e;
  --dark-sec-bg2: #222537;
  --dark-sec-text: #f0f2ff;
  --dark-sec-text2: rgba(240, 242, 255, 0.6);
  --dark-sec-text3: rgba(240, 242, 255, 0.4);
  --dark-sec-border: rgba(255, 255, 255, 0.1);
  --dark-sec-tile: rgba(255, 255, 255, 0.05);
  --dark-sec-tile-b: rgba(255, 255, 255, 0.12);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  height: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 99px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ─── LAYOUT ─── */
.container {
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 60px 0;
}

/* ─── SCROLL REVEAL ─── */
.reveal,
.rv,
.rev,
.rev-l,
.rv-l,
.rev-r,
.rv-r {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.visible,
.reveal.in {
  opacity: 1;
  transform: none;
}
.rv,
.rev {
  opacity: 0;
  transform: translateY(24px);
}
.rv.in,
.rev.in,
.rv.visible,
.rev.visible {
  opacity: 1;
  transform: none;
}
.rev-l,
.rv-l {
  opacity: 0;
  transform: translateX(-28px);
}
.rev-l.in,
.rv-l.in {
  opacity: 1;
  transform: none;
}
.rev-r,
.rv-r {
  opacity: 0;
  transform: translateX(28px);
}
.rev-r.in,
.rv-r.in {
  opacity: 1;
  transform: none;
}
.stag > *,
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.stag.in > *,
.stagger.in > *,
.stag.visible > *,
.stagger.visible > * {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}
.d6 {
  transition-delay: 0.48s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floatBounce {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(255, 107, 43, 0.4);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255, 107, 43, 0.6);
  }
}

/* ═════════════ NAVIGATION ═════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 clamp(24px, 5vw, 80px);
  background: rgba(10, 11, 15, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
nav.scrolled,
nav.pinned {
  background: rgba(10, 11, 15, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] nav,
[data-theme="light"] nav.scrolled,
[data-theme="light"] nav.pinned {
  background: rgba(244, 246, 251, 0.95) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 24px rgba(0, 0, 0, 0.08) !important;
}
.nav-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 20px rgba(255, 107, 43, 0.4);
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-logo-text span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-right: 16px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--trans);
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-links a.active {
  color: var(--accent);
  background: rgba(255, 107, 43, 0.08);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  flex-shrink: 0;
}
.btn-ghost {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--trans);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-primary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent), #e85a1f);
  border: none;
  border-radius: var(--radius);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(255, 107, 43, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 43, 0.45);
}

/* Theme toggle */
.theme-toggle {
  width: 52px;
  height: 28px;
  border-radius: 100px;
  border: 1.5px solid var(--border2);
  cursor: pointer;
  background: var(--surface2);
  position: relative;
  flex-shrink: 0;
  transition:
    background 0.35s,
    border-color 0.35s;
  outline: none;
  padding: 0;
}
.theme-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.35);
}
.theme-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}
[data-theme="light"] .theme-toggle {
  background: #e0e8ff;
  border-color: rgba(37, 99, 235, 0.2);
}
[data-theme="light"] .theme-toggle-knob {
  transform: translateX(24px);
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  border-radius: 8px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
[data-theme="light"] .hamburger span {
  background: var(--text);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 11, 15, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px;
  z-index: 899;
  gap: 4px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
[data-theme="light"] .mobile-menu {
  background: rgba(244, 246, 251, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
}
.mobile-menu a {
  text-decoration: none;
  color: var(--text2);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: 10px;
  transition: var(--trans);
}
.mobile-menu a:hover {
  color: var(--text);
  background: var(--surface);
}
.mobile-menu .mob-cta {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}
.mobile-menu .mob-cta a {
  flex: 1;
  justify-content: center;
  text-align: center;
}

/* ═════════════ HERO ═════════════ */
.hero {
  padding: 112px 0 80px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-blob {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 43, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-blob2 {
  position: absolute;
  bottom: 0;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  background-image: radial-gradient(
    circle,
    var(--border2) 1.2px,
    transparent 1.2px
  );
  background-size: 22px 22px;
  opacity: 0.45;
  mask-image: radial-gradient(circle at 80% 20%, black 30%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 40px clamp(24px, 5vw, 80px); */
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4vw, 80px);
  align-items: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text3);
  margin-bottom: 20px;
  list-style: none;
}
.breadcrumb li a {
  color: var(--text2);
  text-decoration: none;
  transition: var(--trans);
}
.breadcrumb li a:hover {
  color: var(--accent);
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--border2);
}
.breadcrumb li:last-child {
  color: var(--text2);
  font-weight: 500;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.25);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 20px;
}
.badge-dot {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-h1 .teal {
  color: var(--accent);
}
.hero-h1 .italic {
  font-family: var(--font-it);
  font-weight: 400;
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  font-size: 15.5px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.btn-primary-lg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(255, 107, 43, 0.35);
  transition: var(--trans);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 107, 43, 0.45);
}
.btn-outline-lg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text2);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border2);
  transition: var(--trans);
}
.btn-outline-lg:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 43, 0.1);
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tpill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
}
.tpill .tp-icon {
  font-size: 13px;
}

/* Hero Right - Price Card */
.hero-right {
  position: relative;
}
.price-card-stack {
  position: relative;
}
.price-main {
  background: var(--dark-sec-bg);
  border-radius: 36px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.price-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}
.price-main-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--dark-sec-tile);
  border-radius: var(--radius);
  border: 1px solid var(--dark-sec-border);
  gap: 12px;
}
.price-list li:hover {
  background: rgba(255, 255, 255, 0.07);
}
.pl-name {
  font-size: 13.5px;
  color: var(--dark-sec-text);
  font-weight: 500;
  flex: 1;
}
.pl-service {
  font-size: 11px;
  color: var(--dark-sec-text3);
  display: block;
}
.pl-price {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.price-free {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.price-free-icon {
  font-size: 20px;
}
.price-free-text {
  font-size: 13px;
  color: var(--dark-sec-text);
}
.price-free-text strong {
  color: var(--accent);
}
.float-card {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: cardFloat 4s ease-in-out infinite;
}
.float-card.fc1 {
  bottom: -20px;
  left: -32px;
  animation-delay: 0s;
}
.float-card.fc2 {
  top: -47px;
  left: 0;
  animation-delay: -2s;
}
.fc-icon {
  font-size: 22px;
}
.fc-label {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.3;
}
.fc-label strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}

/* ═════════════ SECTION COMMON ═════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-lead {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 540px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 107, 43, 0.35);
  transition: var(--trans);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 43, 0.45);
}

/* ═════════════ ENTITY BLOCK ═════════════ */
.entity-section {
  padding: 28px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.entity-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.75;
}
.entity-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

/* ═════════════ SERVICES GRID ═════════════ */
.services-section {
  background: var(--bg);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-tile {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--trans);
}
.svc-tile:hover {
  border-color: var(--border2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}
.svc-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: height 0.3s ease;
}
.svc-tile:hover::before {
  height: 3px;
}
.t1::before {
  background: var(--accent);
}
.t2::before {
  background: var(--blue);
}
.t3::before {
  background: var(--accent3);
}
.t4::before {
  background: #8b5cf6;
}
.t5::before {
  background: #ec4899;
}
.t6::before {
  background: var(--red);
}
.t7::before {
  background: #06b6d4;
}
.t8::before {
  background: #f97316;
}
.t9::before {
  background: var(--accent2);
}
.svc-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--trans);
}
.t1 .svc-tile-icon {
  background: rgba(255, 107, 43, 0.12);
}
.t2 .svc-tile-icon {
  background: rgba(59, 139, 255, 0.12);
}
.t3 .svc-tile-icon {
  background: rgba(255, 179, 71, 0.12);
}
.t4 .svc-tile-icon {
  background: rgba(139, 92, 246, 0.12);
}
.t5 .svc-tile-icon {
  background: rgba(236, 72, 153, 0.12);
}
.t6 .svc-tile-icon {
  background: rgba(239, 68, 68, 0.12);
}
.t7 .svc-tile-icon {
  background: rgba(6, 182, 212, 0.12);
}
.t8 .svc-tile-icon {
  background: rgba(249, 115, 22, 0.12);
}
.t9 .svc-tile-icon {
  background: rgba(255, 140, 90, 0.12);
}
.svc-tile-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.svc-tile p,
.svc-tile-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc-tile-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-price-tag {
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ═════════════ PROCESS ═════════════ */
.process-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.process-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -5px;
  z-index: 0;
}
.process-steps {
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px; */
  display: flex;
  flex-direction: column;
}
.p-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px 24px;
  position: relative;
  text-align: center;
  transition: var(--trans);
}
.p-step:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}
.p-step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.p-step-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}
.p-step-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.p-step-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* ═════════════ PRICING TABLE ═════════════ */
.pricing-section {
  background: var(--bg);
}
.price-table {
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
}
.pt-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--surface2);
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text3);
  gap: 12px;
}
.pt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  align-items: center;
  gap: 12px;
  transition: var(--trans);
}
.pt-row:hover {
  background: var(--surface);
}
.pt-service {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pt-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pt-service-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.pt-service-sub {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}
.pt-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}
.pt-time {
  font-size: 13px;
  color: var(--text2);
}
.pt-warranty {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.pt-note {
  padding: 16px 24px;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ═════════════ BRANDS ═════════════ */
.brands-section {
  background: var(--bg2);
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.brand-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text2);
  transition: var(--trans);
  cursor: default;
}
.brand-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 43, 0.06);
}

/* ═════════════ WHY CHOOSE ═════════════ */
.why-section {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--trans);
}
.why-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.wc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.wi1 {
  background: rgba(255, 107, 43, 0.12);
}
.wi2 {
  background: rgba(34, 212, 122, 0.12);
}
.wi3 {
  background: rgba(59, 139, 255, 0.12);
}
.wi4 {
  background: rgba(139, 92, 246, 0.12);
}
.wi5 {
  background: rgba(255, 179, 71, 0.12);
}
.wi6 {
  background: rgba(6, 182, 212, 0.12);
}
.wc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.wc-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
}

/* ═════════════ AREAS ═════════════ */
.areas-section {
  background: var(--bg2);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.area-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text2);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 43, 0.06);
}

/* ═════════════ REVIEWS ═════════════ */
.reviews-section {
  background: var(--bg);
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px 40px;
  margin-bottom: 36px;
}
.rs-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.rs-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 2px;
  margin: 4px 0;
}
.rs-count {
  font-size: 13px;
  color: var(--text3);
}
.rs-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}
.rs-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rs-bar-label {
  font-size: 12px;
  color: var(--text3);
  width: 16px;
  text-align: right;
}
.rs-bar-track {
  flex: 1;
  height: 6px;
  background: var(--surface2);
  border-radius: 99px;
  overflow: hidden;
}
.rs-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 99px;
}
.rs-bar-pct {
  font-size: 12px;
  color: var(--text3);
  width: 32px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.r-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 24px;
  transition: var(--trans);
}
.r-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.r-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.r-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.ra1 {
  background: linear-gradient(135deg, #ff6b2b, #ff8c5a);
}
.ra2 {
  background: linear-gradient(135deg, #3b8bff, #60a5fa);
}
.ra3 {
  background: linear-gradient(135deg, #22d47a, #34d399);
}
.ra4 {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}
.ra5 {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}
.ra6 {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.r-stars {
  color: #f59e0b;
  font-size: 14px;
}
.r-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.r-loc {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 6px;
}
.r-service {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 10px;
}
.r-text {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
  font-style: italic;
}

/* ═════════════ FAQ ═════════════ */
.faq-section {
  background: var(--bg2);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-top: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item.open {
  border-color: var(--border2);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-q span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.faq-q-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--text3);
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-item.open .faq-q-btn {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a-body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}
.faq-contact {
  position: sticky;
  top: 96px;
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px 24px;
}
.faq-contact-icon {
  font-size: 40px;
  margin-bottom: 16px;
  text-align: center;
}
.faq-contact h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.faq-contact p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.faq-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ═════════════ CTA BANNER ═════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--accent), #c94e1a 60%, #9b3a10);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
}
.cta-section::before {
  content: "";
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.cta-section .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}
.cta-section h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}
.btn-white {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--accent2);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--trans);
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.btn-trans {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: var(--trans);
  font-family: var(--font-body);
}
.btn-trans:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

/* ═════════════ FOOTER ═════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.footer-logo-txt {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.footer-logo-txt span {
  color: var(--accent);
}
.footer-brand-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text2);
  font-size: 13px;
  margin-bottom: 8px;
  transition: var(--trans);
}
.footer-contact a:hover {
  color: var(--accent);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  display: block;
  font-size: 13.5px;
  color: var(--text2);
  text-decoration: none;
  transition: var(--trans);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text3);
}
.footer-bottom a {
  color: var(--text2);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ═════════════ FLOAT CTA ═════════════ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  background: linear-gradient(135deg, var(--accent), #c94e1a);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(255, 107, 43, 0.4);
  white-space: nowrap;
  animation: floatBounce 3s ease-in-out infinite;
}

/* ═════════════ CONTENT ARTICLE ═════════════ */
.content-section {
  background: var(--bg);
}
.content-article {
  max-width: 820px;
}
.content-article h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.content-article h3 {
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
}
.content-article p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 20px;
}
.content-article ul,
.content-article ol {
  margin: 16px 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-article li {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
}
.content-article strong {
  color: var(--text);
  font-weight: 700;
}
.content-article a {
  color: var(--accent);
  text-decoration: none;
}
.content-article a:hover {
  text-decoration: underline;
}
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box p {
  margin: 0;
  font-size: 14px;
}

/* ═══════════════════════════════════════════
   HOMEPAGE — Page-Specific Styles
   (index.html — conflict-free)
═══════════════════════════════════════════ */

[data-theme="light"] .hero-bg {
  background:
    radial-gradient(
      ellipse 80% 60% at 60% -10%,
      rgba(232, 89, 30, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at -10% 60%,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 40% at 100% 100%,
      rgba(22, 163, 74, 0.04) 0%,
      transparent 50%
    ),
    #f4f6fb;
}

[data-theme="light"] body::before {
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px
  );
}

[data-theme="light"] .grid-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] nav.scrolled {
  background: rgba(244, 246, 251, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .ticker {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .orb-1 {
  background: rgba(232, 89, 30, 0.06);
}

[data-theme="light"] .orb-2 {
  background: rgba(37, 99, 235, 0.05);
}

.accent {
  color: var(--accent);
}

.blue {
  color: var(--blue);
}

.green {
  color: var(--green);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

nav.scrolled {
  background: rgba(10, 11, 15, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% -10%,
      rgba(255, 107, 43, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at -10% 60%,
      rgba(59, 139, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 40% at 100% 100%,
      rgba(34, 212, 122, 0.05) 0%,
      transparent 50%
    ),
    var(--bg);
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 43, 0.08);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(59, 139, 255, 0.06);
  bottom: 10%;
  left: -80px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 12.5px;
  color: var(--text2);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease forwards;
}

.trust-badge .dot {
  width: 22px;
  height: 22px;
  background: rgba(34, 212, 122, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.trust-badge strong {
  color: var(--green);
}

.hero-h1 .line2 {
  color: var(--accent);
  display: block;
}

.hero-h1 .line3 {
  display: block;
  background: linear-gradient(90deg, var(--blue2), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-actions .btn-primary {
  padding: 14px 28px;
  font-size: 15px;
}

.hero-actions .btn-ghost {
  padding: 13px 24px;
  font-size: 15px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat {
}

.hero-stat .stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero-stat .stat-num span {
  color: var(--accent);
}

.hero-stat .stat-lbl {
  font-size: 11.5px;
  color: var(--text3);
  margin-top: 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.h-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 24px;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.h-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius2);
  opacity: 0;
  transition: var(--trans);
}

.h-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

.h-card:hover::before {
  opacity: 1;
}

.h-card.c1::before {
  background: radial-gradient(
    ellipse at top left,
    rgba(255, 107, 43, 0.08),
    transparent 60%
  );
}

.h-card.c2::before {
  background: radial-gradient(
    ellipse at top left,
    rgba(59, 139, 255, 0.08),
    transparent 60%
  );
}

.h-card.c3::before {
  background: radial-gradient(
    ellipse at top left,
    rgba(34, 212, 122, 0.08),
    transparent 60%
  );
}

.h-card.c4::before {
  background: radial-gradient(
    ellipse at top left,
    rgba(255, 179, 71, 0.08),
    transparent 60%
  );
}

.h-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.c1 .h-card-icon {
  background: rgba(255, 107, 43, 0.15);
}

.c2 .h-card-icon {
  background: rgba(59, 139, 255, 0.15);
}

.c3 .h-card-icon {
  background: rgba(34, 212, 122, 0.15);
}

.c4 .h-card-icon {
  background: rgba(255, 179, 71, 0.15);
}

.h-card-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.h-card-sub {
  font-size: 11.5px;
  color: var(--text3);
}

.h-card-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 14px;
  color: var(--text3);
  transition: var(--trans);
}

.h-card:hover .h-card-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.h-card-big {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border-color: var(--border2);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.h-card-big:hover {
  border-color: var(--accent);
}

.h-card-big .hb-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.3);
}

.h-card-big .hb-text {
  flex: 1;
}

.h-card-big .hb-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.h-card-big .hb-sub {
  font-size: 13px;
  color: var(--text2);
}

.h-card-big .hb-badge {
  background: rgba(255, 107, 43, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.phone-pill {
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.phone-pill .ph-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 8px var(--green);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.phone-pill a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ticker-item .ti-dot {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.ticker-item strong {
  color: var(--text);
}

.ai-entity-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 40px 0 0;
}

.ai-entity-block p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.7;
}

.ai-entity-block strong {
  color: var(--text);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.2);
  color: var(--accent);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

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

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--trans);
}

.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-card.s1::after {
  background: var(--accent);
}

.svc-card.s2::after {
  background: var(--blue);
}

.svc-card.s3::after {
  background: var(--green);
}

.svc-card.s4::after {
  background: var(--accent3);
}

.svc-card.s5::after {
  background: #c084fc;
}

.svc-card.s6::after {
  background: #f472b6;
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--trans);
}

.s1 .svc-icon {
  background: rgba(255, 107, 43, 0.12);
}

.s2 .svc-icon {
  background: rgba(59, 139, 255, 0.12);
}

.s3 .svc-icon {
  background: rgba(34, 212, 122, 0.12);
}

.s4 .svc-icon {
  background: rgba(255, 179, 71, 0.12);
}

.s5 .svc-icon {
  background: rgba(192, 132, 252, 0.12);
}

.s6 .svc-icon {
  background: rgba(244, 114, 182, 0.12);
}

.svc-card:hover .svc-icon {
  transform: scale(1.1) rotate(-5deg);
}

.svc-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.svc-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.svc-features li {
  font-size: 12.5px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.5;
}

.svc-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
}

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

.why-left {
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--trans);
  cursor: default;
}

.why-feat:hover {
  background: var(--surface);
  border-color: var(--border);
}

.wf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.wf-icon.or {
  background: rgba(255, 107, 43, 0.12);
}

.wf-icon.bl {
  background: rgba(59, 139, 255, 0.12);
}

.wf-icon.gr {
  background: rgba(34, 212, 122, 0.12);
}

.wf-icon.pu {
  background: rgba(192, 132, 252, 0.12);
}

.wf-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.wf-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

.why-right {
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px 24px;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.sc1::before {
  background: linear-gradient(90deg, var(--accent), var(--accent3));
}

.sc2::before {
  background: linear-gradient(90deg, var(--blue), var(--blue2));
}

.sc3::before {
  background: linear-gradient(90deg, var(--green), #6ee7b7);
}

.sc4::before {
  background: linear-gradient(90deg, #c084fc, #f472b6);
}

.sc-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.sc1 .sc-num {
  color: var(--accent);
}

.sc2 .sc-num {
  color: var(--blue2);
}

.sc3 .sc-num {
  color: var(--green);
}

.sc4 .sc-num {
  color: #c084fc;
}

.sc-lbl {
  font-size: 13px;
  color: var(--text2);
}

.brands-row {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.brands-lbl {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  transition: var(--trans);
}

.brand-chip:hover {
  border-color: var(--border2);
  color: var(--text);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
  /* max-width: 820px; */
  margin-left: auto;
  margin-right: auto;
}

.faq-item:hover {
  border-color: var(--border2);
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  background: var(--surface2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--trans);
  margin-top: -2px;
  color: var(--text2);
}

.faq-item.open .faq-q-icon {
  background: rgba(255, 107, 43, 0.12);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

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

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px;
  position: relative;
  transition: var(--trans);
}

.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}

.testi-quote {
  font-size: 40px;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.av1 {
  background: linear-gradient(135deg, var(--accent), var(--accent3));
}

.av2 {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
}

.av3 {
  background: linear-gradient(135deg, var(--green), #6ee7b7);
}

.av4 {
  background: linear-gradient(135deg, #c084fc, #f472b6);
}

.av5 {
  background: linear-gradient(135deg, var(--accent3), #fde68a);
}

.av6 {
  background: linear-gradient(135deg, var(--blue2), var(--green));
}

.testi-name {
  font-weight: 700;
  font-size: 14px;
}

.testi-loc {
  font-size: 12px;
  color: var(--text3);
}

.stars {
  margin-left: auto;
  font-size: 12px;
  color: var(--accent3);
  letter-spacing: -1px;
}

.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #c94e1a 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  position: relative;
}

.btn-outline-white {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--trans);
}

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

.area-section {
  background: var(--bg);
}

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

.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px;
  transition: var(--trans);
}

.area-card:hover {
  border-color: var(--border2);
}

.area-state {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.area-flag {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.af1 {
  background: rgba(255, 107, 43, 0.12);
}

.af2 {
  background: rgba(59, 139, 255, 0.12);
}

.area-state-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-chip {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 12.5px;
  color: var(--text2);
  transition: var(--trans);
}

.city-chip:hover {
  color: var(--text);
  border-color: var(--border2);
}

.city-chip.main {
  border-color: rgba(255, 107, 43, 0.3);
  color: var(--accent);
  background: rgba(255, 107, 43, 0.06);
}

.footer-brand {
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--blue),
    var(--green),
    var(--accent3)
  );
  z-index: 0;
  opacity: 0.35;
}

.process-step {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  text-align: flex-start;
  padding: 0 20px 0;
  position: relative;
}

.ps-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-head);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.ps1 .ps-num {
  background: rgba(255, 107, 43, 0.12);
  color: var(--accent);
  border-color: rgba(255, 107, 43, 0.25);
}

.ps2 .ps-num {
  background: rgba(59, 139, 255, 0.12);
  color: var(--blue);
  border-color: rgba(59, 139, 255, 0.25);
}

.ps3 .ps-num {
  background: rgba(34, 212, 122, 0.12);
  color: var(--green);
  border-color: rgba(34, 212, 122, 0.25);
}

.ps4 .ps-num {
  background: rgba(255, 179, 71, 0.12);
  color: var(--accent3);
  border-color: rgba(255, 179, 71, 0.25);
}

.ps-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.ps-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

.pricing-intro {
  max-width: 600px;
  text-align: center;
  margin: 0 auto 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: var(--trans);
}

.price-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.price-card-header {
  padding: 24px 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.price-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pi1 {
  background: rgba(255, 107, 43, 0.12);
}

.pi2 {
  background: rgba(59, 139, 255, 0.12);
}

.pi3 {
  background: rgba(34, 212, 122, 0.12);
}

.price-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.price-card-sub {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: var(--bg2);
}

.price-service {
  color: var(--text2);
}

.price-cost {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
}

.price-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text3);
}

.price-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   PRINTER REPAIR PAGE — Page-Specific Styles
   (printer-repair-in-ranchi.html — conflict-free)
═══════════════════════════════════════════ */

.stagger > *,
.stag > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.stagger.visible > *,
.stag.visible > *,
.stagger.in > *,
.stag.in > * {
  opacity: 1;
  transform: none;
}

.stagger.visible > *:nth-child(1),
.stag.visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger.visible > *:nth-child(2),
.stag.visible > *:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger.visible > *:nth-child(3),
.stag.visible > *:nth-child(3) {
  transition-delay: 0.19s;
}

.stagger.visible > *:nth-child(4),
.stag.visible > *:nth-child(4) {
  transition-delay: 0.26s;
}

.stagger.visible > *:nth-child(5),
.stag.visible > *:nth-child(5) {
  transition-delay: 0.33s;
}

.stagger.visible > *:nth-child(6),
.stag.visible > *:nth-child(6) {
  transition-delay: 0.4s;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.22);
  padding: 6px 14px;
  border-radius: 100px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
}

.btn-orange {
  background: var(--accent);
  color: #fff;
}

.btn-orange:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 43, 0.35);
}

.btn-ghost-w {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border2);
}

.btn-ghost-w:hover {
  background: var(--surface);
  border-color: var(--accent);
}

.hero-split {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg2);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 43, 0.18) 0%,
    transparent 65%
  );
  top: -120px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.orb2 {
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(59, 139, 255, 0.12) 0%,
    transparent 65%
  );
  bottom: 60px;
  left: -80px;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -15px);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-chip {
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-h1 .city {
  color: var(--blue2);
}

.hero-desc strong {
  color: var(--text);
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hbadge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text2);
}

.hbadge-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 107, 43, 0.2);
  border: 1px solid rgba(255, 107, 43, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 36px;
  padding: 34px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .hero-card {
  background: #ffffff;
}

.card-head {
  margin-bottom: 24px;
}

.card-head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.card-head p {
  font-size: 0.82rem;
  color: var(--text2);
  font-family: var(--font-head);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 22px;
}

[data-theme="light"] .rating-row {
  background: #f0f2fa;
}

.stars-o {
  color: var(--accent3);
  font-size: 1rem;
  letter-spacing: 1px;
}

.rating-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}

.rating-sub {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--text2);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 6px;
}

.field select,
.field input {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

[data-theme="light"] .field select,
[data-theme="light"] .field input {
  background: #f4f6fb;
  color: #0f1117;
}

.field select:focus,
.field input:focus {
  border-color: var(--accent);
}

.field input::placeholder {
  color: var(--text3);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.95rem;
  border-radius: var(--radius);
  margin-top: 4px;
}

.card-note {
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--text2);
}

.card-note strong {
  color: var(--accent);
}

.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.stat:hover {
  background: var(--surface);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-n em {
  font-style: normal;
  color: var(--accent);
}

.stat-l {
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--text2);
  font-weight: 600;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-head .chip {
  margin-bottom: 16px;
}

.sec-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.sec-head h2 em {
  font-style: normal;
  color: var(--accent);
}

.sec-head p {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.brands-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  text-align: center;
  margin-bottom: 20px;
}

.ticker-track {
  display: flex;
  overflow: hidden;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.srv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 30px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.srv-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}

.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-color: var(--border2);
}

.srv-card:hover::after {
  transform: scaleY(1);
}

.srv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.srv-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.srv-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
}

.srv-from {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.how-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none;
}

.how-step {
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.how-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}

.how-step:hover .how-num {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.how-step h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.how-step p {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 400;
}

.why-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}

.why-left h2 em {
  font-style: normal;
  color: var(--accent);
}

.why-left > p {
  font-size: 0.98rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
}

.why-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.perk:hover {
  border-color: rgba(255, 107, 43, 0.3);
  transform: translateX(4px);
}

.perk-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.perk-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.perk-body p {
  font-size: 0.78rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.5;
}

.why-visual {
  position: relative;
}

.why-card-main {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 36px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.why-card-main::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 43, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

.why-card-main h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  position: relative;
}

.why-card-main > p {
  font-size: 0.82rem;
  color: var(--text2);
  margin-bottom: 28px;
  position: relative;
}

.brand-repair-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: background 0.2s;
}

.brand-row:hover {
  background: rgba(255, 107, 43, 0.08);
  border-color: rgba(255, 107, 43, 0.25);
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text);
}

.brand-badge {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 107, 43, 0.1);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.25);
  letter-spacing: 0.06em;
}

.brand-bar-bg {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--border2);
  overflow: hidden;
}

.brand-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
}

.why-float {
  position: absolute;
  bottom: -24px;
  left: -28px;
  background: var(--surface);
  border-radius: var(--radius2);
  padding: 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border2);
}

.wf-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.wf-text p {
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--text2);
}

.wf-text strong {
  font-size: 0.88rem;
  color: var(--text);
}

.area-pin {
  color: var(--accent);
  font-size: 0.95rem;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 107, 43, 0.1);
  border: 1.5px solid rgba(255, 107, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.3s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg {
  stroke: #fff;
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-color: var(--border2);
}

.rv-stars {
  color: var(--accent3);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rv-text {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  flex: 1;
  font-weight: 300;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.rv-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.rv-loc {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--text2);
}

.seo-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seo-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.seo-wrap h2 {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.seo-wrap h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  margin: 28px 0 12px;
}

.seo-wrap p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}

.seo-wrap strong {
  color: var(--text);
  font-weight: 500;
}

[data-theme="light"] .hero::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .stats-bar {
  background: #fff;
}

[data-theme="light"] .how-section {
  background: #fff;
}

[data-theme="light"] .brands-section {
  background: #fff;
}

[data-theme="light"] .hero-split {
  background: var(--bg2);
}

[data-theme="light"] .review-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hbadge-icon {
  background: rgba(232, 89, 30, 0.12);
  border-color: rgba(232, 89, 30, 0.25);
}

/* ═══════════════════════════════════════════
   LAPTOP REPAIR PAGE — Page-Specific Styles
   (laptop-repair-in-ranchi.html — conflict-free)
═══════════════════════════════════════════ */

.reveal,
.rv,
.rev,
.rev-l,
.rv-l,
.rev-r,
.rv-r {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible,
.reveal.in {
  opacity: 1;
  transform: none;
}

.rv,
.rev {
  opacity: 0;
  transform: translateY(24px);
}

.rv.in,
.rev.in,
.rv.visible,
.rev.visible {
  opacity: 1;
  transform: none;
}

.rev-l,
.rv-l {
  opacity: 0;
  transform: translateX(-28px);
}

.rev-l.in,
.rv-l.in {
  opacity: 1;
  transform: none;
}

.rev-r,
.rv-r {
  opacity: 0;
  transform: translateX(28px);
}

.rev-r.in,
.rv-r.in {
  opacity: 1;
  transform: none;
}

.stag > *,
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.stag.in > *,
.stagger.in > *,
.stag.visible > *,
.stagger.visible > * {
  opacity: 1;
  transform: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(10, 191, 138, 0.35);
}

.nav-logo-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}

.nav-logo-name em {
  color: var(--accent);
  font-style: normal;
}

.nav-crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text3);
}

.nav-crumb a {
  color: var(--text2);
  text-decoration: none;
  transition: var(--trans);
}

.nav-crumb a:hover {
  color: var(--accent);
}

.nav-crumb span {
  color: var(--border2);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
}

.ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

.mob-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  z-index: 899;
  gap: 4px;
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  text-decoration: none;
  color: var(--text2);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: var(--trans);
}

.mob-nav a:hover {
  background: var(--surface2);
}

.mob-nav .mob-cta {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.mob-nav .mob-cta a {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.breadcrumb li .breadcrumb li a:hover {
  color: var(--accent);
}

.svc-tile:hover .svc-tile-icon {
  transform: scale(1.1) rotate(-6deg);
}

.svc-tile-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.process-section .section-eyebrow {
  color: var(--accent);
}

.process-section .section-h2 {
  color: var(--dark-sec-text);
}

.process-section .section-lead {
  color: var(--dark-sec-text2);
}

.p-step-num::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 191, 138, 0.4);
}

.p-step:nth-child(1) .p-step-num {
  background: rgba(10, 191, 138, 0.12);
  color: var(--accent);
}

.p-step:nth-child(2) .p-step-num {
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue2);
}

.p-step:nth-child(3) .p-step-num {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent3);
}

.p-step:nth-child(4) .p-step-num {
  background: rgba(10, 191, 138, 0.12);
  color: var(--accent);
}

.pt-header span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-sec-text3);
}

.pt-header span:first-child {
  color: var(--dark-sec-text2);
}

.pt-row:last-child {
  border-bottom: none;
}

.why-card:nth-child(1):hover {
  border-color: rgba(10, 191, 138, 0.35);
}

.why-card:nth-child(2):hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.why-card:nth-child(3):hover {
  border-color: rgba(245, 158, 11, 0.35);
}

.why-card:nth-child(4):hover {
  border-color: rgba(139, 92, 246, 0.35);
}

.areas-section .section-eyebrow {
  color: var(--accent);
}

.areas-section .section-h2 {
  color: var(--dark-sec-text);
}

.areas-section .section-lead {
  color: var(--dark-sec-text2);
}

.area-tile {
  background: var(--dark-sec-tile);
  border: 1px solid var(--dark-sec-border);
  border-radius: var(--radius2);
  padding: 22px 20px;
  transition: var(--trans);
}

.area-tile:hover {
  background: rgba(10, 191, 138, 0.08);
  border-color: rgba(10, 191, 138, 0.25);
}

.area-tile-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-sec-text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.area-tile-name .area-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 1px 7px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
}

.area-sub {
  font-size: 12px;
  color: var(--dark-sec-text3);
}

.faq-item.active {
  border-color: rgba(10, 191, 138, 0.4);
  background: var(--bg2);
}

.faq-item.active .faq-q-btn {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-item.active .faq-a {
  max-height: 220px;
}

.contact-card {
  background: var(--dark-sec-bg);
  border-radius: 36px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}

.cc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.cc-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-sec-text);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cc-sub {
  font-size: 13.5px;
  color: var(--dark-sec-text2);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cc-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 191, 138, 0.12);
  border: 1px solid rgba(10, 191, 138, 0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  transition: var(--trans);
  margin-bottom: 10px;
}

.cc-phone:hover {
  background: rgba(10, 191, 138, 0.2);
}

.cc-phone .ph-num {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.cc-phone .ph-lbl {
  font-size: 11px;
  color: var(--dark-sec-text3);
}

.cc-email {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-sec-tile);
  border: 1px solid var(--dark-sec-border);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-decoration: none;
  transition: var(--trans);
}

.cc-email:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cc-email span {
  font-size: 13.5px;
  color: var(--dark-sec-text2);
}

.hours-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius2);
  padding: 20px 22px;
}

.hours-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  color: var(--text2);
}

.hours-row .time {
  font-weight: 600;
  color: var(--accent2);
}

.hours-row .closed {
  color: var(--red);
}

.rs-big {
  text-align: center;
  flex-shrink: 0;
}

.rs-big .rs-num {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.rs-big .rs-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: -2px;
  margin: 4px 0;
}

.rs-big .rs-count {
  font-size: 12px;
  color: var(--dark-sec-text3);
}

.entity-block p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
}

.entity-block a {
  color: var(--accent2);
}

[data-theme="light"] .mob-nav {
  background: rgba(244, 246, 251, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .ham span {
  background: var(--text);
}

[data-theme="light"] .float-cta {
  background: linear-gradient(135deg, var(--accent), #c94e1a);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE — Page-Specific Styles
   (contact-us.html — conflict-free)
═══════════════════════════════════════════ */

.hero-contact {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.left-panel {
  background: var(--panel-bg);
  padding: 80px 60px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(164, 214, 66, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 214, 66, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.circuit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.12;
}

.left-panel::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.15),
    transparent 65%
  );
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.lp-content {
  position: relative;
  z-index: 1;
}

.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--panel-text3);
  margin-bottom: 32px;
}

.lp-breadcrumb a {
  color: var(--panel-text3);
  transition: color 0.2s;
}

.lp-breadcrumb a:hover {
  color: var(--accent2);
}

.lp-breadcrumb span {
  color: var(--accent2);
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(168, 214, 66, 0.25);
  background: rgba(168, 214, 66, 0.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.lp-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--panel-text);
  margin-bottom: 20px;
}

.lp-h1 em {
  font-style: italic;
  color: var(--accent2);
}

.lp-sub {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--panel-text2);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 44px;
}

.lp-sub strong {
  color: var(--panel-text);
  font-weight: 500;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.cm-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--panel-tile);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius2);
  padding: 18px 22px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  cursor: default;
}

.cm-card:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateX(4px);
}

.cm-card a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.cm-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.cm-icon-call {
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.25);
}

.cm-icon-wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.cm-icon-mail {
  background: rgba(100, 180, 255, 0.1);
  border: 1px solid rgba(100, 180, 255, 0.18);
}

.cm-icon-loc {
  background: rgba(168, 214, 66, 0.1);
  border: 1px solid rgba(168, 214, 66, 0.2);
}

.cm-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--panel-text3);
  margin-bottom: 3px;
}

.cm-value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--panel-text);
  transition: color 0.2s;
}

.cm-card:hover .cm-value {
  color: var(--accent2);
}

.cm-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--panel-text3);
  font-weight: 400;
  margin-top: 2px;
}

.cm-arrow {
  font-size: 0.9rem;
  color: var(--panel-text3);
  transition:
    transform 0.2s,
    color 0.2s;
  flex-shrink: 0;
}

.cm-card:hover .cm-arrow {
  transform: translateX(4px);
  color: var(--accent2);
}

.hours-strip {
  background: var(--panel-tile);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius2);
  padding: 18px 22px;
}

.hours-day {
  font-size: 0.82rem;
  color: var(--panel-text2);
  font-weight: 400;
}

.hours-time {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--panel-text);
}

.hours-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
}

.hours-open::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--panel-tile);
  border: 1px solid var(--panel-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(212, 168, 67, 0.15);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-2px);
}

.right-panel {
  background: var(--bg);
  padding: 80px 60px 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.right-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(15, 35, 24, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.rp-content {
  position: relative;
  z-index: 1;
}

.rp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 18px;
}

.rp-eyebrow::before {
  content: "—";
  opacity: 0.4;
}

.rp-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}

.rp-h2 em {
  font-style: italic;
  color: var(--accent);
}

.rp-sub {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 440px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.field-group label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text2);
}

.field-group label .req {
  color: var(--accent);
  margin-left: 2px;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--surface);
  box-shadow: 0 0 0 3px rgba(15, 35, 24, 0.08);
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--text3);
}

.field-textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
}

.field-select {
  cursor: pointer;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text2);
  pointer-events: none;
  font-size: 0.85rem;
}

.field-error {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red-err);
  display: none;
}

.field-group.has-error .field-input,
.field-group.has-error .field-select,
.field-group.has-error .field-textarea {
  border-color: var(--red-err);
}

.field-group.has-error .field-error {
  display: block;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  accent-color: var(--bg);
  flex-shrink: 0;
  margin-top: 1px;
}

.checkbox-row label {
  font-size: 0.8rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.5;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.checkbox-row label a {
  color: var(--surface);
  font-weight: 500;
}

.checkbox-row label a:hover {
  color: var(--accent);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--accent), #c94e1a);
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--surface), var(--accent2));
  opacity: 0;
  transition: opacity 0.25s;
}

.submit-btn:hover::before {
  opacity: 1;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 35, 24, 0.3);
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.submit-btn.loading {
  cursor: not-allowed;
}

.submit-btn.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  animation: spin 0.7s linear infinite;
  position: relative;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text2);
}

.trust-item span {
  color: var(--accent2);
  font-size: 0.85rem;
}

.success-msg {
  display: none;
  background: linear-gradient(135deg, var(--bg), var(--bg2));
  border-radius: var(--radius2);
  padding: 36px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-msg.show {
  display: flex;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(168, 214, 66, 0.15);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.success-msg h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.success-msg p {
  font-size: 0.88rem;
  color: var(--text2);
  font-weight: 300;
}

.channels-section {
  background: var(--surface);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.channels-head {
  text-align: center;
  margin-bottom: 48px;
}

.channels-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}

.channels-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.channels-head h2 em {
  font-style: italic;
  color: var(--accent);
}

.channels-head p {
  font-size: 0.92rem;
  color: var(--text2);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ch-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 36px;
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.ch-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bg), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.ch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-color: var(--border2);
}

.ch-card:hover::before {
  transform: scaleX(1);
}

.ch-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.ch-icon-call {
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.15),
    rgba(232, 192, 96, 0.1)
  );
  border: 1px solid rgba(212, 168, 67, 0.25);
}

.ch-icon-wa {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.12),
    rgba(37, 211, 102, 0.06)
  );
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.ch-icon-mail {
  background: linear-gradient(
    135deg,
    rgba(30, 100, 255, 0.08),
    rgba(30, 100, 255, 0.04)
  );
  border: 1px solid rgba(30, 100, 255, 0.15);
}

.ch-icon-visit {
  background: linear-gradient(
    135deg,
    rgba(168, 214, 66, 0.12),
    rgba(168, 214, 66, 0.06)
  );
  border: 1px solid rgba(168, 214, 66, 0.2);
}

.ch-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.ch-value {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.ch-resp {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text2);
  font-weight: 400;
}

.ch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border2);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: 4px;
}

.ch-btn:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.map-section {
  background: var(--bg2);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.map-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: center;
}

.map-info .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}

.map-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.map-info h2 em {
  font-style: italic;
  color: var(--accent);
}

.map-info > p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.md-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.md-row:hover {
  border-color: var(--accent);
}

.md-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.md-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.md-text span {
  font-size: 0.78rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.4;
}

.map-embed {
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  height: 380px;
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--panel-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--panel-border) 1px, transparent 1px);
  background-size: 36px 36px;
}

.map-pin-anim {
  font-size: 2.5rem;
  animation: pin-bounce 2s ease-in-out infinite;
  position: relative;
}

@keyframes pin-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.map-addr {
  background: var(--panel-tile);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius2);
  padding: 14px 20px;
  text-align: center;
  position: relative;
}

.map-addr strong {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--panel-text);
  display: block;
  margin-bottom: 2px;
}

.map-addr span {
  font-size: 0.75rem;
  color: var(--panel-text2);
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--accent);
  color: var(--bg);
  padding: 9px 20px;
  border-radius: 100px;
  transition: background 0.2s;
  position: relative;
}

.map-open-link:hover {
  background: var(--accent2);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.faq-left .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}

.faq-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.faq-left h2 em {
  font-style: italic;
  color: var(--accent);
}

.faq-left p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.faq-rating {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 20px;
}

.faq-rating .stars {
  color: #f0a500;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.faq-rating strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.faq-rating span {
  font-size: 0.78rem;
  color: var(--text2);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.3s;
}

.faq-toggle svg {
  width: 13px;
  height: 13px;
  stroke: var(--bg);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.faq-item.open .faq-toggle {
  background: var(--bg);
  transform: rotate(45deg);
}

.faq-item.open .faq-toggle svg {
  stroke: #ffffff;
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-ans {
  max-height: 240px;
}

.faq-ans-inner {
  padding: 0 20px 18px;
  font-size: 0.87rem;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   COMPUTER REPAIR PAGE — Page-Specific Styles
   (computer-repair-in-ranchi.html — conflict-free)
═══════════════════════════════════════════ */

.stag > *,
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.stag.in > *,
.stagger.in > *,
.stag.visible > *,
.stagger.visible > * {
  opacity: 1;
  transform: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
  background: rgba(0, 229, 176, 0.08);
  border: 1px solid rgba(0, 229, 176, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--electric);
  background: transparent;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1.5px solid var(--electric);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--electric);
  color: var(--text);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--electric);
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--electric);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
}

.nav-phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--electric);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 176, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(197, 241, 53, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-h1 .loc {
  color: var(--green);
}

.trust-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric);
  flex-shrink: 0;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--green));
}

.hero-card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.rating-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  display: block;
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--electric);
}

.form-input::placeholder {
  color: var(--text2);
}

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

.hero-card-cta {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  border-radius: var(--radius);
  margin-top: 4px;
}

.card-meta {
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text2);
}

.card-meta strong {
  color: var(--electric);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--electric);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text2);
  font-weight: 500;
}

.section-head .tag {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-head h2 em {
  font-style: normal;
  color: var(--electric);
}

.section-head p {
  color: var(--text2);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px;
  cursor: default;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: rgba(0, 229, 176, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 229, 176, 0.1);
  border: 1px solid rgba(0, 229, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}

.service-price {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--electric);
  letter-spacing: 0.04em;
}

.why-bg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px;
  position: relative;
}

.why-bg-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--electric));
  border-radius: var(--radius2) var(--radius2) 0 0;
}

.process-step:last-child {
  border-bottom: none;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 229, 176, 0.1);
  border: 1.5px solid var(--electric);
  color: var(--electric);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-text p {
  font-size: 0.8rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.5;
}

.why-content .tag {
  margin-bottom: 16px;
}

.why-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.why-content h2 em {
  font-style: normal;
  color: var(--green);
}

.why-content > p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.perk-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.perk-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.perk-text p {
  font-size: 0.75rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.4;
}

.area-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    border-color 0.2s,
    color 0.2s;
  cursor: default;
}

.area-pill:hover {
  border-color: rgba(0, 229, 176, 0.4);
  color: var(--electric);
}

.area-pill::before {
  content: "📍";
  font-size: 0.9rem;
}

.faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--electric);
  transition: transform 0.3s;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.review-stars {
  color: var(--accent3);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text);
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.review-loc {
  font-size: 0.75rem;
  color: var(--text2);
}

.seo-content {
  max-width: 820px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--electric);
}

.seo-content p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 300;
}

.seo-content strong {
  color: var(--text);
  font-weight: 500;
}

.cta-band > .cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-band h2 em {
  font-style: normal;
  color: var(--electric);
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.phone-big {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--electric);
  letter-spacing: -0.01em;
}

.stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}

.stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.19s;
}

.stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.26s;
}

.stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.33s;
}

.stagger.visible > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

.float-cta-w {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 5%;
  /* transform: translateX(-50%); */
  z-index: 800;
  background: linear-gradient(135deg, var(--accent), #c94e1a);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(255, 107, 43, 0.4);
  white-space: nowrap;
  animation: floatBounce 3s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — Page-Specific Styles
   (about-us.html — conflict-free)
═══════════════════════════════════════════ */

.stag.in > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}

.stag.in > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.11s;
}

.stag.in > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

.stag.in > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}

.stag.in > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.32s;
}

.stag.in > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.39s;
}

@keyframes floatBounceGlow {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(255, 107, 43, 0.4);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255, 107, 43, 0.6);
  }
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 3px;
}

.label::before {
  content: "—";
  opacity: 0.5;
}

.btn-copper {
  background: var(--accent);
  color: #fff;
}

.btn-copper:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 105, 42, 0.35);
}

.btn-outline-w {
  background: transparent;
  color: var(--text);
  border: 1.5px solid currentColor;
}

.btn-outline-w:hover {
  background: var(--text);
  color: var(--bg);
}

.hero-about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 80px solid var(--border);
  pointer-events: none;
  opacity: 0.3;
}

.hero-about::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 50px solid var(--border2);
  pointer-events: none;
  opacity: 0.2;
}

.hero-cut {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.h-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 24px;
}

.h-breadcrumb a {
  color: var(--text2);
  transition: color 0.2s;
}

.h-breadcrumb a:hover {
  color: var(--accent2);
}

.h-breadcrumb span {
  color: var(--accent2);
}

.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}

.hero-micro {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.micro-item {
  display: flex;
  flex-direction: column;
}

.micro-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.micro-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 36px;
  padding: 36px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
}

.vc-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.vc-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.vc-sub {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 28px;
  font-weight: 300;
}

.vc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.vc-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: var(--trans);
}

.vc-stat:hover {
  background: var(--surface2);
  border-color: var(--accent);
}

.vc-stat-n {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.vc-stat-l {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text2);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-float {
  position: absolute;
  bottom: -28px;
  right: -16px;
  background: var(--surface);
  border-radius: var(--radius2);
  padding: 16px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  min-width: 190px;
}

.hf-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hf-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1;
}

.hf-lbl {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text2);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.stats-strip {
  background: var(--surface);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.sstat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.sstat:hover {
  background: var(--bg2);
}

.sstat:last-child {
  border-right: none;
}

.sstat-n {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.sstat-l {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.04em;
}

.story-section {
  background: var(--bg);
}

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

.story-left .label {
  margin-bottom: 20px;
}

.story-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
}

.story-left h2 em {
  font-style: italic;
  color: var(--accent);
}

.story-left p {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

.story-left p strong {
  color: var(--text);
  font-weight: 600;
}

.story-left p:last-of-type {
  margin-bottom: 32px;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.tl-item:last-child {
  border-bottom: none;
}

.tl-year {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 52px;
  padding-top: 2px;
}

.tl-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  margin-top: 5px;
  flex-shrink: 0;
}

.tl-bar {
  width: 1.5px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent), transparent);
  min-height: 24px;
}

.tl-item:last-child .tl-bar {
  display: none;
}

.tl-content {
  flex: 1;
}

.tl-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.55;
  font-weight: 300;
}

.values-section {
  background: var(--section-dark-bg);
  transition: background 0.3s ease;
}

.values-head {
  text-align: center;
  margin-bottom: 64px;
}

.values-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--section-dark-text);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.values-head h2 em {
  font-style: italic;
  color: var(--accent);
}

.values-head p {
  font-size: 1rem;
  color: var(--section-dark-text-muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.label-light {
  color: var(--accent);
  border-color: var(--accent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.val-card {
  background: var(--section-dark-card-bg);
  border: 1px solid var(--section-dark-card-border);
  border-radius: var(--radius2);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}

.val-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.val-card:hover {
  border-color: var(--accent);
  background: var(--surface);
  transform: translateY(-4px);
}

.val-card:hover::after {
  transform: scaleX(1);
}

.val-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: inline-block;
}

.val-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--section-dark-text);
  margin-bottom: 10px;
}

.val-card p {
  font-size: 0.85rem;
  color: var(--section-dark-text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.mission-strip {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
  border-radius: 36px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.ms-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.ms-text h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 6px;
}

.ms-text p {
  font-size: 0.92rem;
  color: rgba(17, 16, 16, 0.75);
  line-height: 1.6;
  font-weight: 300;
}

.team-section {
  background: var(--bg2);
}

.team-head {
  text-align: center;
  margin-bottom: 56px;
}

.team-head .label {
  margin-bottom: 18px;
}

.team-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.team-head h2 em {
  font-style: italic;
  color: var(--accent);
}

.team-head p {
  font-size: 0.98rem;
  color: var(--text2);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 107, 43, 0.25);
}

.team-avatar-wrap {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
}

.team-avatar-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-initials {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  user-select: none;
}

.team-avatar-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 3px solid var(--surface);
  margin-bottom: -20px;
}

.team-info {
  padding: 28px 20px 22px;
}

.team-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.55;
  font-weight: 300;
}

.team-cert {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.certs-section {
  background: var(--surface);
}

.certs-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.certs-left .label {
  margin-bottom: 20px;
}

.certs-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.certs-left h2 em {
  font-style: italic;
  color: var(--accent);
}

.certs-left > p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
}

.cert-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  /* padding: 16px 20px; */
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.cert-badge:hover {
  border-color: rgba(255, 107, 43, 0.35);
  transform: translateX(4px);
}

.cert-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cert-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.cert-body p {
  font-size: 0.75rem;
  color: var(--text2);
  font-weight: 300;
}

.service-map {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.service-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
}

.sm-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.srv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.srv-row:hover {
  border-color: rgba(255, 107, 43, 0.3);
}

.srv-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.srv-icon-sm {
  font-size: 0.95rem;
}

.srv-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.badge-green {
  background: rgba(22, 163, 74, 0.1);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.badge-copper {
  background: rgba(255, 107, 43, 0.1);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.2);
}

.bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-bar {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  overflow: hidden;
}

.mini-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
}

.why-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.05;
  line-height: 1;
  user-select: none;
}

.why-ico {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--accent);
}

.cta-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--section-dark-text);
  margin-bottom: 28px;
  display: block;
}

.cta-num em {
  font-style: normal;
  color: var(--accent);
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-meta {
  margin-top: 24px;
  font-size: 0.76rem;
  color: var(--section-dark-text-muted);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   LOCALITY LINKS SECTION
   (Pipe-separated service area links, above footer)
═══════════════════════════════════════════ */
.locality-links-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

[data-theme="light"] .locality-links-section {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

.loc-category {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.loc-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

[data-theme="light"] .loc-category {
  border-color: rgba(0, 0, 0, 0.07);
}

.loc-heading {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.4;
}

[data-theme="light"] .loc-heading {
  color: #111827;
}

.loc-links {
  font-size: 12px;
  line-height: 2;
  color: var(--text2);
}

.loc-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: color 0.15s;
  white-space: nowrap;
}

.loc-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

[data-theme="light"] .loc-link {
  color: #1d4ed8;
}

[data-theme="light"] .loc-link:hover {
  color: var(--accent);
}

.locality-links-section .loc-heading {
  font-size: 13.5px;
}

/* ═════════════════════════════════════════════
   PCFIXPRO — Responsive System (Optimised)
   Breakpoints: 1100 | 1024 | 960 | 900 | 768 | 540 | 480
   Strategy: mobile-first consolidation, no duplicates
═════════════════════════════════════════════ */

/* ── 1100px: Contact page two-panel collapse ── */
@media (max-width: 1100px) {
  .hero-contact {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .left-panel {
    padding: clamp(48px, 7vw, 72px) clamp(24px, 5vw, 36px)
      clamp(40px, 6vw, 60px);
  }
  .right-panel {
    padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 36px)
      clamp(48px, 7vw, 72px);
  }
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 1024px: Tablet landscape ── */
@media (max-width: 1024px) {
  /* Hero */
  .hero {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 96px clamp(16px, 5vw, 60px) 60px;
  }
  .hero-right {
    order: 2;
    max-width: min(520px, 100%);
    width: 100%;
    margin: 0 auto;
  }
  .float-card {
    display: none;
  }
  .phone-pill {
    display: none;
  }

  /* Grids */
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .how-grid::before {
    display: none;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 36px);
  }

  /* FAQ */
  .faq-wrap {
    grid-template-columns: 1fr;
  }
  .faq-contact {
    position: static;
  }

  /* Certs / About */
  .certs-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── 960px: Tablet portrait hero fix ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 88px clamp(16px, 5vw, 48px) 60px;
  }
  .hero-right {
    order: 2;
    max-width: min(480px, 100%);
    margin: 0 auto;
    width: 100%;
  }
  .hero-card {
    max-width: min(520px, 100%);
    margin: 0 auto;
    width: 100%;
  }
}

/* ── 900px: Process & pricing collapse ── */
@media (max-width: 900px) {
  .process-steps::before {
    display: none;
  }
}

/* ── 768px: Mobile ── */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .btn-call {
    padding: 8px 16px;
    font-size: 12.5px;
  }

  /* Sections */
  section {
    padding: clamp(40px, 7vw, 56px) 0;
  }
  .section {
    padding: clamp(40px, 7vw, 56px) 0;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 36px;
    padding: 88px clamp(16px, 5vw, 40px) 60px;
  }
  .hero-right {
    order: 2;
    max-width: min(480px, 100%);
    margin: 0 auto;
    width: 100%;
  }
  .hero-h1 {
    letter-spacing: -0.5px;
  }
  .hero-stats {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-stats .stat-divider {
    display: none;
  }
  .h-card-big .hb-badge {
    display: none;
  }

  /* Grids */
  .srv-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid,
  .reviews-grid,
  .testi-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing table */
  .pt-header,
  .pt-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .pt-header span:nth-child(3),
  .pt-header span:nth-child(4),
  .pt-row .pt-time,
  .pt-row .pt-warranty {
    display: none;
  }

  /* Stats */
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .stat:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  /* Rating */
  .rating-summary {
    flex-direction: column;
    gap: 20px;
  }
  .rs-divider {
    display: none;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Utility */
  .float-cta {
    display: block;
  }
  .why-float {
    position: static;
    margin-top: 20px;
    width: fit-content;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .hide-on-mobile {
    display: none !important;
  }

  /* Left/right panels */
  .left-panel {
    padding: clamp(56px, 8vw, 72px) clamp(20px, 5vw, 36px)
      clamp(40px, 6vw, 60px);
  }
  .right-panel {
    padding: clamp(36px, 6vw, 60px) clamp(20px, 5vw, 36px)
      clamp(40px, 6vw, 72px);
  }

  /* Locality links */
  .locality-links-section {
    padding: 24px 0;
  }
  .loc-heading {
    font-size: 13px;
  }
  .loc-link,
  .loc-links {
    font-size: 11.5px;
  }
  .loc-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

/* ── 540px: Narrow mobile ── */
@media (max-width: 540px) {
  /* process-steps uses auto-fill minmax — no override needed */
}

/* ── 480px: Small mobile ── */
@media (max-width: 480px) {
  /* Hero CTAs */
  .hero-cta,
  .hero-actions,
  .hero-btns {
    flex-direction: column;
  }
  .hero-cta a,
  .hero-actions a,
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero {
    padding: 0px;
  }
  .hero-badge {
    font-size: 11px;
  }
  .hero-inner {
    /* padding: 88px clamp(16px, 5vw, 24px) 88px; */
    padding: 10px;
    margin-top:100px;
  }
  .hero-card {
    padding: 22px;
    border-radius: 22px;
  }

  /* Grids */
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .hero-card-grid {
    grid-template-columns: 1fr;
  }
  .h-card-big {
    grid-column: span 1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr !important;
  }

  /* CTA band */
  .cta-band {
    padding: 48px clamp(16px, 5vw, 24px);
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Layout */
  .section-header,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-n {
    font-size: 1.7rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    display: grid;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .svc-grid {
  grid-template-columns: 1fr;
}
.values-grid {
  grid-template-columns: 1fr;
}
.team-grid{
  grid-template-columns: 1fr;
}
.story-inner{
  grid-template-columns: 1fr;
}
.cert-badge {  
  padding: 5px;
}
.channels-grid{
  grid-template-columns: 1fr;
}
}