/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #A8BDD4;
  background: #040E1E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Subtle dot grid texture on body */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ==================== VARIABLES ==================== */
:root {
  --bg:        #040E1E;
  --bg-2:      #060F1A;
  --bg-3:      #081526;
  --neon:      #00D4FF;
  --neon-dim:  rgba(0, 212, 255, 0.55);
  --neon-glow: rgba(0, 212, 255, 0.22);
  --blue:      #0055D4;
  --glass-bg:        rgba(255, 255, 255, 0.04);
  --glass-bg-hover:  rgba(255, 255, 255, 0.07);
  --glass-border:    rgba(255, 255, 255, 0.08);
  --glass-border-neon: rgba(0, 212, 255, 0.22);
  --inset-highlight: inset 0 1px 0 rgba(255,255,255,0.06);
  --text:      #FFFFFF;
  --text-sub:  #A8BDD4;
  --text-muted:#5A7A9C;
  --white:     #ffffff;
  --radius:    10px;
  --radius-lg: 16px;
  --t:         0.22s ease;
}

/* ==================== LAYOUT ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; background: var(--bg); position: relative; overflow: hidden; }
.section-alt { background: var(--bg-2); }

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.375rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.0625rem; }
p { color: var(--text-sub); line-height: 1.7; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 12px; }
.section-header > p { font-size: 1.0625rem; max-width: 540px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(0,212,255,0.6);
}

.accent-text {
  color: var(--neon);
  text-shadow: 0 0 32px rgba(0,212,255,0.45);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 0.9375rem; font-weight: 600;
  cursor: pointer; transition: all var(--t);
  border: 1.5px solid transparent;
  text-decoration: none; white-space: nowrap; line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--neon) 100%);
  color: #fff;
  box-shadow: 0 0 22px rgba(0,212,255,0.28), 0 4px 16px rgba(0,80,200,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0,212,255,0.5), 0 8px 28px rgba(0,80,200,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(0,212,255,0.07);
  color: var(--neon);
  border-color: rgba(0,212,255,0.3);
}
.btn-outline:hover {
  background: rgba(0,212,255,0.13);
  box-shadow: 0 0 20px rgba(0,212,255,0.18);
  transform: translateY(-1px);
}

.btn-white {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.btn-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255,255,255,0.08);
}

/* ==================== NAVIGATION ==================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(4, 14, 30, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,212,255,0.07);
  transition: all var(--t);
}
.site-header.scrolled {
  background: rgba(4, 14, 30, 0.92);
  border-bottom-color: rgba(0,212,255,0.14);
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0; line-height: 1;
}
.nav-logo > svg { display: block; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 13px; border-radius: var(--radius);
  font-weight: 500; font-size: 0.9375rem;
  color: var(--text-sub); transition: all var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-links .btn-nav {
  background: linear-gradient(135deg, var(--blue), var(--neon));
  color: var(--white) !important;
  padding: 9px 20px; margin-left: 8px; border-radius: var(--radius); font-weight: 600;
  box-shadow: 0 0 18px rgba(0,212,255,0.25);
}
.nav-links .btn-nav:hover { transform: translateY(-1px); box-shadow: 0 0 28px rgba(0,212,255,0.45); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: var(--radius); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-sub); border-radius: 2px; transition: all 0.3s ease; }
.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); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(4, 14, 30, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  z-index: 999; padding: 12px 16px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 16px; font-weight: 500; font-size: 1rem; color: var(--text-sub); border-radius: var(--radius); transition: all var(--t); }
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.mobile-menu .btn-mobile-quote {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--neon));
  color: var(--white) !important; padding: 14px; border-radius: var(--radius); font-weight: 600; margin-top: 10px;
  box-shadow: 0 0 18px rgba(0,212,255,0.3);
}

/* ==================== HERO ==================== */
.hero {
  background: var(--bg);
  padding: 96px 0 104px;
  position: relative; overflow: hidden;
}
/* Glowing orbs */
.hero::before {
  content: '';
  position: absolute; top: -15%; right: -8%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(0,80,200,0.32) 0%, rgba(0,212,255,0.06) 45%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -30%; left: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,50,160,0.28) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}

.hero-content { position: relative; max-width: 700px; z-index: 1; }
.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: 1.125rem; color: var(--text-sub); margin-bottom: 36px; line-height: 1.7; max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 56px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-sub); font-weight: 500; }
.hero-badge svg { color: var(--neon); flex-shrink: 0; filter: drop-shadow(0 0 5px rgba(0,212,255,0.7)); }

/* ==================== PAGE HERO ==================== */
.page-hero {
  background: var(--bg);
  padding: 56px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,80,200,0.22) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { font-size: 1.0625rem; }

/* ==================== SERVICE CARDS (home) ==================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  box-shadow: var(--inset-highlight);
}
/* Top neon line on hover */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--neon) 50%, transparent 100%);
  opacity: 0; transition: opacity var(--t);
}
.service-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-neon);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 32px rgba(0,212,255,0.07), var(--inset-highlight);
  transform: translateY(-5px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,212,255,0.09);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--neon);
  box-shadow: 0 0 18px rgba(0,212,255,0.14);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { margin-bottom: 20px; flex: 1; font-size: 0.9375rem; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 6px; color: var(--neon); font-weight: 600; font-size: 0.875rem; transition: gap var(--t); }
.service-card .learn-more:hover { gap: 10px; }

/* ==================== TRUST SECTION ==================== */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.trust-item {
  text-align: center; padding: 36px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--t);
  box-shadow: var(--inset-highlight);
}
.trust-item:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-neon);
  transform: translateY(-4px);
}

.trust-icon {
  width: 60px; height: 60px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; color: var(--neon);
  box-shadow: 0 0 20px rgba(0,212,255,0.12);
}
.trust-item h4 { margin-bottom: 8px; }
.trust-item p { font-size: 0.9rem; }

/* ==================== SERVICE AREA BANNER ==================== */
.area-banner {
  background: var(--bg-3);
  border-top: 1px solid rgba(0,212,255,0.1);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 44px 0; text-align: center;
  position: relative; overflow: hidden;
}
.area-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.04) 50%, transparent 100%);
  pointer-events: none;
}
.area-banner h3 { margin-bottom: 8px; font-size: 1.3125rem; }
.area-banner p { font-size: 1rem; }

/* ==================== CTA BAND ==================== */
.cta-band {
  background: var(--bg-2);
  padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,80,200,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 { position: relative; margin-bottom: 14px; }
.cta-band p { color: var(--text-sub); font-size: 1.0625rem; margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; position: relative; }

/* ==================== SERVICES PAGE ==================== */
.service-detail { padding: 72px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.service-detail-content h2 { margin-bottom: 14px; }
.service-detail-content p { font-size: 1.0625rem; margin-bottom: 24px; }

.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--neon);
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 14px;
  box-shadow: 0 0 14px rgba(0,212,255,0.1);
}

.includes-list { margin-bottom: 28px; }
.includes-list h4 { margin-bottom: 14px; }
.includes-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li svg { color: var(--neon); flex-shrink: 0; margin-top: 2px; filter: drop-shadow(0 0 4px rgba(0,212,255,0.5)); }

.service-detail-sidebar { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--inset-highlight);
}
.info-card h4 { margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.info-card h4 svg { color: var(--neon); }
.info-card p, .info-card li { font-size: 0.9375rem; }
.info-card ul { display: flex; flex-direction: column; gap: 7px; }
.info-card li { display: flex; align-items: flex-start; gap: 8px; }
.info-card li::before { content: '→'; color: var(--neon); font-weight: 700; flex-shrink: 0; line-height: 1.7; }

.price-tag { font-size: 1.4375rem; font-weight: 700; color: var(--neon); text-shadow: 0 0 20px rgba(0,212,255,0.4); }

.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.addon-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--t);
  box-shadow: var(--inset-highlight);
}
.addon-card:hover { background: var(--glass-bg-hover); border-color: var(--glass-border-neon); transform: translateY(-3px); }
.addon-card .service-icon { margin-bottom: 14px; }
.addon-card h3 { margin-bottom: 8px; }
.addon-card p { font-size: 0.9375rem; margin-bottom: 12px; }
.addon-price { font-size: 1.125rem; font-weight: 700; color: var(--neon); }

/* ==================== ABOUT PAGE ==================== */
.about-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 60px; align-items: start; }

.about-photo-placeholder {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1.5px dashed rgba(0,212,255,0.2);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  font-size: 0.875rem; text-align: center; padding: 20px;
}
.about-photo-placeholder svg { color: rgba(0,212,255,0.3); }
.about-photo-placeholder p { color: var(--text-muted); font-size: 0.8125rem; max-width: 160px; }

.about-content h2 { margin-bottom: 18px; }
.about-content > p { font-size: 1.0625rem; margin-bottom: 18px; }

.credentials-section { margin-top: 36px; }
.credentials-section h3 { margin-bottom: 18px; }

.credential-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.credential-item:last-child { border-bottom: none; }

.credential-icon {
  width: 40px; height: 40px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon); flex-shrink: 0;
}
.credential-text { flex: 1; }
.credential-text strong { display: block; font-weight: 600; color: var(--text); font-size: 0.9375rem; }
.credential-text span { font-size: 0.875rem; }

.credential-status {
  font-size: 0.8125rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}
.credential-status.active { background: rgba(0,230,130,0.1); color: #00E882; border: 1px solid rgba(0,230,130,0.2); }
.credential-status.in-progress { background: rgba(255,180,0,0.1); color: #FFB400; border: 1px solid rgba(255,180,0,0.2); }

.response-callout {
  background: rgba(0,212,255,0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px; margin-top: 32px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 0 28px rgba(0,212,255,0.06), var(--inset-highlight);
}
.response-callout svg { flex-shrink: 0; margin-top: 2px; color: var(--neon); filter: drop-shadow(0 0 6px rgba(0,212,255,0.6)); }
.response-callout h4 { margin-bottom: 6px; }
.response-callout p { font-size: 0.9375rem; }

/* ==================== CONTACT PAGE ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { font-size: 1.0625rem; margin-bottom: 36px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-icon {
  width: 46px; height: 46px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon); flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0,212,255,0.1);
}
.contact-item-text strong { display: block; font-weight: 600; color: var(--text-sub); margin-bottom: 2px; font-size: 0.875rem; }
.contact-item-text a, .contact-item-text span { font-size: 1.0625rem; color: var(--text); }
.contact-item-text a:hover { color: var(--neon); }

.response-promise {
  background: rgba(0,212,255,0.04);
  border-left: 3px solid var(--neon);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px; margin-top: 28px;
}
.response-promise p { font-size: 0.9375rem; font-style: italic; }

.contact-form-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), var(--inset-highlight);
}
.contact-form-card h3 { margin-bottom: 26px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 500; font-size: 0.875rem; color: var(--text-sub); margin-bottom: 6px; }
.form-group .req { color: #FF6B6B; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-size: 0.9375rem; font-family: inherit;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A7A9C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px; cursor: pointer;
  background-color: rgba(255,255,255,0.04);
}
.form-group select option { background: #071428; color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0,212,255,0.5);
  background: rgba(0,212,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 110px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; margin-top: 6px; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.form-success, .form-error {
  display: none; padding: 16px 20px; border-radius: var(--radius);
  margin-top: 14px; font-size: 0.9375rem; font-weight: 500; text-align: center;
}
.form-success { background: rgba(0,230,130,0.08); color: #00E882; border: 1px solid rgba(0,230,130,0.2); }
.form-error { background: rgba(255,100,100,0.08); color: #FF6B6B; border: 1px solid rgba(255,100,100,0.2); }

/* ==================== FOOTER ==================== */
.site-footer {
  background: #020B17;
  border-top: 1px solid rgba(0,212,255,0.07);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; max-width: 240px; }
.footer-tagline { display: inline-block; color: var(--neon); font-weight: 600; font-size: 0.875rem; margin-top: 10px; text-shadow: 0 0 14px rgba(0,212,255,0.4); }

.footer-col h4 { color: var(--white); font-size: 0.8125rem; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--t); }
.footer-col ul a:hover { color: var(--neon); }

.footer-contact-list { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-item { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--text-muted); }
.footer-contact-item svg { color: var(--neon); flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--neon); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.22); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-placeholder { aspect-ratio: 16/9; max-width: 380px; }
  .addon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-badges { gap: 16px; margin-top: 40px; }
  .cta-band { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 44px 0 48px; }
  .section-header { margin-bottom: 44px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.875rem; }
}
