/* ─────────────────────────────────────────────────────────────
   TechGuard — Fierce Lion/Shield Premium Theme v5
   Black / Gold / Red — Power. Precision. Performance.
   ───────────────────────────────────────────────────────────── */

:root {
  --bg:          #060606;
  --bg-alt:      #0D0D0D;
  --bg-card:     #121212;
  --fg:          #F5F0E8;
  --fg-muted:    #A09A8E;
  --gold:        #D4AF37;
  --gold-light:  #E8CC6A;
  --gold-bright: #F0D97A;
  --gold-dim:    rgba(212,175,55,0.10);
  --gold-border: rgba(212,175,55,0.25);
  --red:         #C8102E;
  --red-dim:     rgba(200,16,46,0.12);
  --border:      rgba(245,240,232,0.06);
  --border-gold: rgba(212,175,55,0.20);
  --shadow-gold: 0 0 40px rgba(212,175,55,0.08);
  --gold-gradient: linear-gradient(135deg, #C8A951, #D4AF37, #E8CC6A, #D4AF37);
  --shield-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fade-up 0.8s ease-out both; }
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }
.fade-in-d4 { animation-delay: 0.4s; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,6,6,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fg);
}
.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.4), 0 0 6px rgba(212,175,55,0.6);
  transition: all 0.35s;
}
.logo:hover .logo-icon {
  box-shadow: 0 0 28px rgba(212,175,55,0.55), 0 0 8px rgba(212,175,55,0.7);
  transform: scale(1.05);
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFF8DC 0%, #E8CC6A 40%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
}

.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.header-nav a:hover { color: var(--gold); }
.header-nav a:hover::after { width: 100%; }
.nav-cta-btn {
  background: linear-gradient(135deg, #D4AF37, #E8CC6A) !important;
  color: var(--bg) !important;
  padding: 8px 18px !important;
  border-radius: 4px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: all 0.3s !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: linear-gradient(135deg, #E8CC6A, #D4AF37) !important;
  color: var(--bg) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.emergency-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(200,16,46,0.15), rgba(200,16,46,0.05));
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 6px;
  padding: 10px 16px;
}
.emergency-pulse-ring {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulse-ring-expand 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring-expand {
  0% { transform: translateY(-50%) scale(0.5); opacity: 1; }
  100% { transform: translateY(-50%) scale(1.8); opacity: 0; }
}
.emergency-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-red 2s infinite;
  position: relative;
  z-index: 1;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(200,16,46,0); }
}
.emergency-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.emergency-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.03em;
  text-decoration: none;
}
.emergency-phone:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: hero-bg-drift 30s ease-in-out infinite alternate;
}
@keyframes hero-bg-drift {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(212,175,55,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 80% 30% at 50% 80%, rgba(6,6,6,0.95) 0%, transparent 50%),
    linear-gradient(
      180deg,
      rgba(6,6,6,0.25) 0%,
      rgba(6,6,6,0.45) 20%,
      rgba(6,6,6,0.72) 50%,
      rgba(6,6,6,0.95) 100%
    );
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: 3;
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(212,175,55,0.4) 0%, transparent 50%),
    radial-gradient(1px 1px at 30% 60%, rgba(212,175,55,0.3) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 15%, rgba(212,175,55,0.5) 0%, transparent 50%),
    radial-gradient(1px 1px at 70% 40%, rgba(212,175,55,0.35) 0%, transparent 50%),
    radial-gradient(1px 1px at 90% 80%, rgba(212,175,55,0.3) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 80% 10%, rgba(212,175,55,0.4) 0%, transparent 50%),
    radial-gradient(1px 1px at 20% 85%, rgba(212,175,55,0.25) 0%, transparent 50%);
  animation: float-particles 8s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}
@keyframes float-particles {
  0% { transform: translateY(0); opacity: 0.6; }
  100% { transform: translateY(-15px); opacity: 1; }
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  position: relative;
  z-index: 2;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-shield-badge {
  margin-bottom: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-up 1s ease-out both;
}
.shield-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.15);
  background: conic-gradient(from 0deg, var(--gold), transparent 50%, var(--gold-light), transparent 50%);
  -webkit-mask: radial-gradient(transparent 114px, #000 115px);
  mask: radial-gradient(transparent 114px, #000 115px);
  animation: rotate-ring 10s linear infinite;
  opacity: 0.35;
}
.shield-ring--2 {
  width: 270px;
  height: 270px;
  -webkit-mask: radial-gradient(transparent 129px, #000 130px);
  mask: radial-gradient(transparent 129px, #000 130px);
  animation: rotate-ring 16s linear infinite reverse;
  opacity: 0.18;
}
.shield-ring--3 {
  width: 300px;
  height: 300px;
  -webkit-mask: radial-gradient(transparent 144px, #000 145px);
  mask: radial-gradient(transparent 144px, #000 145px);
  animation: rotate-ring 22s linear infinite;
  opacity: 0.08;
}
@keyframes rotate-ring {
  100% { transform: rotate(360deg); }
}
.hero-shield-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 80px rgba(212,175,55,0.55),
    0 0 160px rgba(212,175,55,0.25),
    0 0 240px rgba(212,175,55,0.10),
    inset 0 0 20px rgba(212,175,55,0.15);
  animation: glow-pulse 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(212,175,55,0.45), 0 0 120px rgba(212,175,55,0.18), 0 0 200px rgba(212,175,55,0.06); filter: brightness(1); }
  50% { box-shadow: 0 0 100px rgba(212,175,55,0.65), 0 0 200px rgba(212,175,55,0.3), 0 0 320px rgba(212,175,55,0.1); filter: brightness(1.05); }
}
.hero-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 4px;
  background: linear-gradient(180deg, #FFF8DC 0%, #F5E08A 15%, #E8CC6A 30%, #D4AF37 55%, #B8942E 80%, #9A7A24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 30px rgba(212,175,55,0.45));
  animation: fade-up 0.8s ease-out 0.3s both;
  text-shadow: none;
}
.hero-brand-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fade-up 0.8s ease-out 0.5s both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  border: 1px solid var(--gold-border);
  padding: 10px 28px;
  border-radius: 4px;
  background: rgba(212,175,55,0.06);
  backdrop-filter: blur(6px);
  animation: fade-up 0.8s ease-out 0.6s both;
}
.hero-eyebrow svg {
  color: var(--gold);
  opacity: 0.5;
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.8), 0 1px 0 rgba(212,175,55,0.1);
  animation: hero-text-enter 1s ease-out 0.7s both;
}
@keyframes hero-text-enter {
  from { opacity: 0; transform: translateY(40px) scale(0.95); letter-spacing: 0.25em; }
  to { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 0.10em; }
}
.hero-headline span {
  background: linear-gradient(180deg, #FFF8DC, #F0D97A, #D4AF37, #A8862E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 35px rgba(212,175,55,0.5));
}
.hero-description {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 560px;
  animation: fade-up 0.8s ease-out 0.9s both;
}

/* Buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  animation: fade-up 0.8s ease-out 1s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #D42030, var(--red), #B00E22);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(200,16,46,0.25);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: linear-gradient(135deg, #B00E22, #a80c24, #8B0A1D);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(200,16,46,0.45);
}
.btn-primary.btn-lg {
  font-size: 17px;
  padding: 20px 44px;
}
.btn-primary.btn-gold {
  background: linear-gradient(135deg, #C8A951, #D4AF37, #E8CC6A, #D4AF37);
  color: var(--bg);
  border-color: rgba(232,204,106,0.4);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn-primary.btn-gold:hover {
  background: linear-gradient(135deg, #E8CC6A, #F5E08A, #D4AF37, #C8A951);
  box-shadow: 0 14px 40px rgba(212,175,55,0.45);
}
.btn-icon { font-size: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.04);
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.15), inset 0 0 24px rgba(212,175,55,0.06);
}

/* Stars row */
.hero-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.gold-star {
  color: var(--gold);
  font-size: 22px;
  text-shadow: 0 0 16px rgba(212,175,55,0.6), 0 0 4px rgba(212,175,55,0.8);
  animation: star-twinkle 3s ease-in-out infinite;
}
.gold-star:nth-child(2) { animation-delay: 0.25s; }
.gold-star:nth-child(3) { animation-delay: 0.5s; }
.gold-star:nth-child(4) { animation-delay: 0.75s; }
.gold-star:nth-child(5) { animation-delay: 1s; }
@keyframes star-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); text-shadow: 0 0 16px rgba(212,175,55,0.6); }
  50% { opacity: 0.65; transform: scale(0.92); text-shadow: 0 0 24px rgba(212,175,55,0.8); }
}
.stars-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-left: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; height: 48px; }
  50% { opacity: 0.8; height: 56px; }
}

/* ── SHIELD DIVIDER ─────────────────────────────────────── */
.shield-divider {
  color: var(--gold);
  margin-bottom: 18px;
  text-align: center;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.4));
  animation: shield-float 4s ease-in-out infinite;
}
@keyframes shield-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.shield-divider svg {
  display: inline-block;
}

/* ── SERVICES GRID ──────────────────────────────────────── */
.services-section {
  padding: 110px 0;
  background: var(--bg-alt);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-border) 30%, var(--gold) 50%, var(--gold-border) 70%, transparent 95%);
}
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 6px 20px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 3px;
  background: rgba(212,175,55,0.04);
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 56px;
  line-height: 1.12;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.section-title br + span,
.section-title span {
  background: linear-gradient(180deg, #FFF8DC, #E8CC6A, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.3));
}
.services-header {
  margin-bottom: 48px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: linear-gradient(170deg, rgba(22,20,16,0.95) 0%, var(--bg-card) 40%, rgba(10,10,10,0.98) 100%);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 14px;
  padding: 44px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -20%;
  width: 140%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.08) 0%, transparent 65%);
  transition: opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 20px 60px rgba(212,175,55,0.18),
    0 0 0 1px rgba(212,175,55,0.25),
    inset 0 1px 0 rgba(212,175,55,0.15);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, rgba(212,175,55,0.08), rgba(212,175,55,0.18));
  border: 2px solid rgba(212,175,55,0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.service-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(212,175,55,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover .service-icon-wrap::after { opacity: 1; }
.service-svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  filter: drop-shadow(0 0 4px rgba(212,175,55,0.3));
}
.service-card:hover .service-icon-wrap {
  background: rgba(212,175,55,0.3);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.35);
  transform: scale(1.12);
}
.service-card:hover .service-svg {
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.6));
}

.service-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg);
}
.service-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
  flex-grow: 1;
}
.service-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  opacity: 0.3;
  margin-top: 4px;
}

/* ── INFO SECTION ─────────────────────────────────────── */
.info-section {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
}
.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-border) 30%, var(--gold) 50%, var(--gold-border) 70%, transparent 95%);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.info-card {
  background: linear-gradient(170deg, rgba(22,20,16,0.95) 0%, var(--bg-card) 40%, rgba(10,10,10,0.98) 100%);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.info-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 50px rgba(212,175,55,0.15), 0 0 0 1px rgba(212,175,55,0.2);
  transform: translateY(-6px);
}
.info-card:hover::before { opacity: 1; }
.info-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-title-icon {
  color: var(--gold);
  font-size: 12px;
}
.info-card p, .info-card li {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.info-card ul li::before {
  content: '\2666';
  color: var(--gold);
  font-size: 9px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.project-thumb {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.25s;
}
.project-thumb:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

/* Reviews */
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.star { color: var(--gold); font-size: 14px; }
.review-text {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 12px;
}
.review-author {
  font-size: 12px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
}

/* ── TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  padding: 64px 0;
  background: var(--bg-alt);
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.trust-bar::before { top: 0; }
.trust-bar::after { bottom: 0; }
.trust-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, rgba(212,175,55,0.08), rgba(212,175,55,0.18));
  border: 2px solid rgba(212,175,55,0.25);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trust-item:hover .trust-icon {
  background: rgba(212,175,55,0.28);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
  transform: scale(1.12);
}
.trust-icon--red {
  background: linear-gradient(145deg, rgba(200,16,46,0.08), rgba(200,16,46,0.18));
  border-color: rgba(200,16,46,0.35);
  color: var(--red);
}
.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.4;
}
.trust-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ── PRICING SECTION ────────────────────────────────────── */
.pricing-section {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-border) 30%, var(--gold) 50%, var(--gold-border) 70%, transparent 95%);
}
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-header .section-title {
  margin-bottom: 16px;
}
.pricing-header .section-desc {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: linear-gradient(170deg, rgba(22,20,16,0.95) 0%, var(--bg-card) 35%, rgba(8,8,8,0.98) 100%);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 16px;
  padding: 52px 40px;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(212,175,55,0.04) 90deg, transparent 180deg);
  animation: subtle-rotate 20s linear infinite;
  pointer-events: none;
}
@keyframes subtle-rotate {
  100% { transform: rotate(360deg); }
}
.pricing-card:hover {
  border-color: var(--gold);
  box-shadow:
    0 20px 70px rgba(212,175,55,0.18),
    0 0 0 1px rgba(212,175,55,0.3),
    inset 0 1px 0 rgba(212,175,55,0.1);
  transform: translateY(-8px) scale(1.01);
}
.pricing-card--featured {
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(170deg, rgba(212,175,55,0.08) 0%, rgba(22,20,16,0.95) 25%, var(--bg-card) 60%);
  box-shadow: 0 0 80px rgba(212,175,55,0.08), 0 0 0 1px rgba(212,175,55,0.15);
}
.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  z-index: 1;
}
.pricing-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.pricing-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 32px;
}
.pricing-from {
  font-size: 13px;
  color: var(--fg-muted);
}
.pricing-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #FFF8DC 0%, #F5E08A 15%, #E8CC6A 30%, #D4AF37 55%, #B8942E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(212,175,55,0.45));
}
.pricing-period {
  font-size: 14px;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  width: 16px;
  flex-shrink: 0;
}
.pricing-plans {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: 8px;
  padding: 16px 20px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}
.plan-row:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.12);
  box-shadow: 0 4px 16px rgba(212,175,55,0.12);
  transform: translateX(4px);
}
.plan-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.plan-price {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── FOOTER CTA ───────────────────────────────────────── */
.footer-cta {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.footer-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(2px);
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 75%, rgba(212,175,55,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(212,175,55,0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6,6,6,0.4) 0%, transparent 20%, transparent 80%, rgba(6,6,6,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.footer-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  text-align: center;
  z-index: 2;
}
.cta-lion-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 80px rgba(212,175,55,0.5),
    0 0 140px rgba(212,175,55,0.2),
    0 0 200px rgba(212,175,55,0.08);
  margin-bottom: 40px;
  animation: glow-pulse 5s ease-in-out infinite;
}
.footer-cta-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.02;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.footer-cta-headline span {
  background: linear-gradient(180deg, #E8CC6A, #D4AF37, #B8942E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.35));
}
.footer-cta-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #9A7A24, #C8A951, #FFF8DC, #E8CC6A, #D4AF37, #FFF8DC, #C8A951, #9A7A24);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 5s ease-in-out infinite;
}
@keyframes shimmer-text {
  0% { background-position: -300% 0; }
  100% { background-position: 300% 0; }
}
.footer-cta-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.footer-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SITE FOOTER ───────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border-gold);
  padding: 48px 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(6,6,6,1) 100%);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 12px rgba(212,175,55,0.2);
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(180deg, #FFF8DC, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-brand-sub {
  font-size: 9px;
  color: var(--fg-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s;
  padding: 6px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.footer-phone:hover {
  color: var(--gold);
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.06);
}
.footer-area {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── MOBILE MENU ───────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  color: var(--gold);
  transition: all 0.3s;
}
.mobile-menu-btn:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
}
.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin: 4px 0;
  transition: all 0.3s;
  border-radius: 1px;
}
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6,6,6,0.96);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-overlay a {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding: 12px 32px;
  transition: color 0.3s;
}
.mobile-nav-overlay a:hover { color: var(--gold); }
.mobile-nav-overlay .mobile-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, #D42030, var(--red));
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 16px;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .emergency-badge { display: none; }
  .mobile-menu-btn { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-shield-img { width: 160px; height: 160px; }
  .shield-ring { width: 190px; height: 190px; }
  .shield-ring--2 { width: 210px; height: 210px; }
  .shield-ring--3 { width: 230px; height: 230px; }
  .hero-brand-name { font-size: 40px; letter-spacing: 0.20em; }
  .hero-headline { font-size: 44px; }
  .cta-lion-img { width: 140px; height: 140px; }
  .hero-scroll-indicator { bottom: 20px; }
  .nav-cta-btn { display: none !important; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 20px; }
  .section-container { padding: 0 20px; }
  .hero-inner { padding: 80px 20px 60px; }
  .footer-cta-inner { padding: 0 20px; }
  .hero-headline { font-size: 34px; }
  .hero-brand-name { font-size: 28px; letter-spacing: 0.12em; }
  .hero-shield-img { width: 130px; height: 130px; }
  .shield-ring { width: 160px; height: 160px; }
  .shield-ring--2 { width: 180px; height: 180px; }
  .shield-ring--3 { display: none; }
  .trust-items { grid-template-columns: 1fr; }
  .emergency-badge { padding: 8px 12px; }
  .emergency-phone { font-size: 12px; }
}