/* =============================================
   STEADFAST HOME SERVICES — REDESIGNED UI
   Brand: Navy #1B2A4A | Gold #F0BC5E | White #FFFFFF
   Style: Modern · Futuristic · Neon · Alive
   ============================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:         #0D1B2E;
  --navy-mid:     #1B2A4A;
  --navy-card:    rgba(255,255,255,0.04);
  --gold:         #F0BC5E;
  --gold-glow:    rgba(240,188,94,0.35);
  --gold-dim:     rgba(240,188,94,0.12);
  --cyan:         #00D4FF;
  --cyan-glow:    rgba(0,212,255,0.25);
  --white:        #FFFFFF;
  --text-muted:   #A8BDD8;
  --border:       rgba(255,255,255,0.07);
  --font:         'DM Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

/* =============================================
   BODY — HEXAGON BACKGROUND
   ============================================= */

body {
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(0, 80, 180, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(0, 40, 120, 0.25) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='400'%3E%3Cpath d='M0,60 C100,35 250,95 350,60 S450,30 500,60' fill='none' stroke='rgba(240,188,94,0.06)' stroke-width='1.5'/%3E%3Cpath d='M0,130 C100,105 250,165 350,130 S450,100 500,130' fill='none' stroke='rgba(240,188,94,0.04)' stroke-width='1'/%3E%3Cpath d='M0,200 C100,175 250,235 350,200 S450,170 500,200' fill='none' stroke='rgba(240,188,94,0.06)' stroke-width='1.5'/%3E%3Cpath d='M0,270 C100,245 250,305 350,270 S450,240 500,270' fill='none' stroke='rgba(240,188,94,0.04)' stroke-width='1'/%3E%3Cpath d='M0,340 C100,315 250,375 350,340 S450,310 500,340' fill='none' stroke='rgba(240,188,94,0.06)' stroke-width='1.5'/%3E%3Cpath d='M0,95 C100,70 250,130 350,95 S450,65 500,95' fill='none' stroke='rgba(240,188,94,0.025)' stroke-width='1'/%3E%3Cpath d='M0,165 C100,140 250,200 350,165 S450,135 500,165' fill='none' stroke='rgba(240,188,94,0.025)' stroke-width='1'/%3E%3Cpath d='M0,235 C100,210 250,270 350,235 S450,205 500,235' fill='none' stroke='rgba(240,188,94,0.025)' stroke-width='1'/%3E%3Cpath d='M0,305 C100,280 250,340 350,305 S450,275 500,305' fill='none' stroke='rgba(240,188,94,0.025)' stroke-width='1'/%3E%3Cellipse cx='420' cy='100' rx='60' ry='38' fill='none' stroke='rgba(240,188,94,0.035)' stroke-width='1'/%3E%3Cellipse cx='420' cy='100' rx='38' ry='24' fill='none' stroke='rgba(240,188,94,0.05)' stroke-width='1'/%3E%3Cellipse cx='420' cy='100' rx='18' ry='11' fill='none' stroke='rgba(240,188,94,0.07)' stroke-width='1'/%3E%3Cellipse cx='80' cy='320' rx='55' ry='35' fill='none' stroke='rgba(240,188,94,0.035)' stroke-width='1'/%3E%3Cellipse cx='80' cy='320' rx='33' ry='21' fill='none' stroke='rgba(240,188,94,0.05)' stroke-width='1'/%3E%3Cellipse cx='80' cy='320' rx='15' ry='10' fill='none' stroke='rgba(240,188,94,0.07)' stroke-width='1'/%3E%3Cellipse cx='250' cy='30' rx='45' ry='25' fill='none' stroke='rgba(240,188,94,0.03)' stroke-width='1'/%3E%3Cellipse cx='250' cy='30' rx='25' ry='14' fill='none' stroke='rgba(240,188,94,0.045)' stroke-width='1'/%3E%3C/svg%3E");
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  animation: topoDrift 25s linear infinite;
}

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

/* =============================================
   DISPLAY FONT — SYNE ON ALL HEADINGS
   ============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
}

/* =============================================
   ATMOSPHERIC GRAIN OVERLAY
   ============================================= */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9998;
}

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(240,188,94,0.6),
      0 0 30px rgba(240,188,94,0.4),
      0 0 60px rgba(240,188,94,0.2);
  }
  50% {
    box-shadow:
      0 0 20px rgba(240,188,94,0.9),
      0 0 50px rgba(240,188,94,0.6),
      0 0 100px rgba(240,188,94,0.3);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes scanline {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

@keyframes textShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes topoDrift {
  0%   { background-position: center center, center center, 0 0; }
  100% { background-position: center center, center center, 500px 400px; }
}

/* Typewriter cursor */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--gold-glow);
  animation: cursorBlink 0.8s step-end infinite;
}

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

/* Scroll animation base states */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(240,188,94,0.2); }
  50%       { border-color: rgba(240,188,94,0.6); }
}

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}

/* =============================================
   NAVIGATION
   ============================================= */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child {
  font-size: 14px; font-weight: 800; letter-spacing: 3px;
  font-family: var(--font-display);
  color: var(--gold);
  text-shadow:
    0 0 8px rgba(240,188,94,1),
    0 0 20px rgba(240,188,94,0.7),
    0 0 40px rgba(240,188,94,0.4);
}
.nav-logo-text span:last-child {
  font-size: 10px; letter-spacing: 2px; color: var(--white); opacity: 0.6;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold-glow);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d4a44a);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 0 16px var(--gold-glow);
  animation: glowPulse 3s ease-in-out infinite;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 24px rgba(240,188,94,0.55),
    0 0 60px rgba(240,188,94,0.25),
    0 10px 24px rgba(0,0,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: rgba(240,188,94,0.6);
  background: rgba(240,188,94,0.07);
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(240,188,94,0.12), 0 8px 20px rgba(0,0,0,0.2);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  min-height: calc(100vh - 81px);
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: 5%;
  left: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
    rgba(240,188,94,0.12) 0%,
    rgba(240,188,94,0.05) 40%,
    transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(0,100,255,0.15) 0%,
    rgba(0,60,180,0.08) 40%,
    transparent 70%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--cyan);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: glowPulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 82px;
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--gold);
  text-shadow:
    0 0 20px rgba(240,188,94,0.9),
    0 0 40px rgba(240,188,94,0.6),
    0 0 80px rgba(240,188,94,0.4),
    0 0 120px rgba(240,188,94,0.2);
}

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.8;
}
.hero p strong { color: var(--white); }

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary { font-size: 15px; padding: 14px 28px; }
.hero-ctas .btn-outline  { font-size: 15px; padding: 14px 28px; }

.hero-stats { display: flex; gap: 40px; }

.stat { display: flex; flex-direction: column; }
.stat-number {
  font-size: 30px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--gold);
  text-shadow:
    0 0 10px rgba(240,188,94,1),
    0 0 30px rgba(240,188,94,0.7),
    0 0 60px rgba(240,188,94,0.4);
}
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.5px; }

/* Hero Card */
.hero-card {
  flex: 1;
  max-width: 676px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240,188,94,0.15);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fadeInRight 0.9s ease 0.2s both, floatCard 6s ease-in-out 1s infinite;
  box-shadow:
    0 0 0 1px rgba(240,188,94,0.15),
    0 0 40px rgba(240,188,94,0.1),
    0 0 80px rgba(240,188,94,0.06),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-card-title { font-size: 23px; font-weight: 800; font-family: var(--font-display); }
.hero-card-subtitle { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.storm-alert {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 0 12px var(--gold-glow);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-muted);
}
.status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
}

.job-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s;
}
.job-item:hover { border-color: rgba(240,188,94,0.2); }

.job-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.job-info { flex: 1; }
.job-name { font-size: 16px; font-weight: 700; }
.job-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 6px;
  overflow: hidden;
}
.job-bar-fill { height: 100%; border-radius: 2px; }

.job-status { font-size: 13px; font-weight: 700; }
.status-progress { color: var(--gold); text-shadow: 0 0 8px var(--gold-glow); }
.status-complete { color: #4ade80; }
.status-oncall   { color: var(--text-muted); }

.bar-gold  { background: var(--gold); box-shadow: 0 0 6px var(--gold-glow); width: 55%; }
.bar-green { background: #4ade80; width: 100%; }
.bar-grey  { background: var(--text-muted); width: 30%; }

.crew-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 8px;
}
.crew-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d4a44a);
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--gold-glow);
  flex-shrink: 0;
}
.crew-name { font-size: 16px; font-weight: 700; }
.crew-role { font-size: 13px; color: var(--text-muted); }

/* =============================================
   SECTION SHARED STYLES
   ============================================= */

section { padding: 100px 60px; }

.section-label {
  display: inline-block;
  background: rgba(240,188,94,0.08);
  border: 1px solid rgba(240,188,94,0.2);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 60px; }

/* =============================================
   SERVICES SECTION
   ============================================= */

.services { background: transparent; }

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

.service-card {
  grid-column: span 2;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,188,94,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(240,188,94,0.3);
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.35),
    0 0 30px rgba(240,188,94,0.08),
    inset 0 1px 0 rgba(240,188,94,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(240,188,94,0.08);
  border: 1px solid rgba(240,188,94,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.service-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3px;
  transition: text-shadow 0.2s;
}
.service-link:hover { text-shadow: 0 0 8px var(--gold-glow); }

/* =============================================
   PRICING SECTION
   ============================================= */

.pricing { background: rgba(0,0,0,0.15); }

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

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: rgba(240,188,94,0.3);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.25),
    0 0 20px rgba(240,188,94,0.07);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #c8a84b, #f0e080);
  border-color: transparent;
  color: var(--navy);
  transform: translateY(-16px);
  box-shadow: 0 0 60px rgba(240,188,94,0.2), 0 30px 60px rgba(0,0,0,0.3);
  animation: borderGlow 3s ease-in-out infinite;
}

.pricing-card.featured .price-label,
.pricing-card.featured .price-period,
.pricing-card.featured .price-desc,
.pricing-card.featured .feature-item { color: rgba(27,42,74,0.75); }
.pricing-card.featured .price-amount { color: var(--navy); }
.pricing-card.featured .feature-item.included { color: var(--navy); }

.best-value-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 0 12px var(--gold-glow);
}

.price-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-amount { font-size: 54px; font-weight: 800; line-height: 1; color: var(--white); font-family: var(--font-display); }
.price-period { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.price-desc { font-size: 13px; color: var(--text-muted); margin-top: 6px; margin-bottom: 24px; line-height: 1.6; }
.price-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pricing-card.featured .price-divider { border-top-color: rgba(27,42,74,0.15); }

.features-list { list-style: none; margin-bottom: 28px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.feature-item.included { color: var(--white); }
.feature-item.included::before { content: '✓'; color: #4ade80; font-weight: 800; flex-shrink: 0; }
.feature-item.excluded { opacity: 0.35; }
.feature-item.excluded::before { content: '✕'; color: var(--text-muted); flex-shrink: 0; }

.pricing-card .btn-primary,
.pricing-card .btn-outline { width: 100%; text-align: center; display: block; padding: 14px; font-size: 14px; }
.pricing-card.featured .btn-primary { background: var(--navy); color: var(--gold); box-shadow: none; animation: none; }
.pricing-card.featured .btn-primary:hover { opacity: 0.9; }

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--border);
  padding: 60px 60px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: 15px; color: var(--text-muted); margin-top: 16px; max-width: 260px; line-height: 1.8; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 15px; color: var(--white); opacity: 0.6; transition: opacity 0.2s, color 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 14px; color: var(--text-muted); }

/* Social Icons */
.social-links { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.social-link:hover {
  color: var(--gold);
  border-color: rgba(240,188,94,0.3);
  box-shadow: 0 0 10px rgba(240,188,94,0.1);
}

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

@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  .hero { padding: 60px 30px; flex-direction: column; min-height: auto; }
  .hero h1 { font-size: 48px; }
  section { padding: 80px 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { grid-column: span 1 !important; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 30px 20px; }
}

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 75vw; max-width: 300px;
    height: 100vh;
    background: rgba(13, 27, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    gap: 0;
    border-left: 1px solid var(--border);
    z-index: 200;
    list-style: none;
  }
  .nav-links.is-open li { width: 100%; }
  .nav-links.is-open a {
    font-size: 17px;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid var(--border);
    color: var(--white);
  }
  .hero { padding: 40px 20px; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  section { padding: 60px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 40px 20px 20px; }
  .social-links { gap: 8px; }
}

/* =============================================
   HAMBURGER MENU
   ============================================= */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}
.nav-overlay.is-open { display: block; }

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
}

/* =============================================
   SERVICE AREA SECTION
   ============================================= */

.service-area {
  padding: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.service-area h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 16px 0 12px;
}
.service-area p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 680px;
  margin: 0 auto 24px;
}

/* =============================================
   FOOTER LOGO (shared inline style replacement)
   ============================================= */

.footer-logo-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  font-family: var(--font-display);
}
.footer-logo-sub {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  opacity: 0.7;
}

/* =============================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body { animation: none; }
  .hero-content { animation: none; opacity: 1; transform: none; }
  .hero-card { animation: none; opacity: 1; transform: none; }
  .reveal, .reveal-left, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .gradient-text { animation: none; }
  .btn-primary { animation: none; }
  .hero-badge::before { animation: none; }
  .typewriter-cursor { animation: none; }
}
