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

:root {
  --navy: #0A1628;
  --navy-mid: #0F1E38;
  --charcoal: #1C2740;
  --blue: #1A6FD4;
  --blue-light: #2E87F0;
  --blue-glow: rgba(26,111,212,0.18);
  --white: #FFFFFF;
  --off-white: #F4F6FB;
  --text-muted: #8C96A8;
  --text-secondary: #C1C9D6;
  --border: rgba(255,255,255,0.08);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);
  --card-bg: rgba(15,30,56,0.85);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.45);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(10,22,40,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.nav-logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: var(--glass-bg);
}

.nav-links a.active { color: #70B0FF; }

/* Dropdown */
.nav-links li { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(10,22,40,0.97);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  list-style: none;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  background: none;
}
.nav-dropdown li a:hover {
  background: var(--glass-bg);
  color: #fff;
}
.nav-has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-phone:hover { color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  box-shadow: 0 4px 20px rgba(26,111,212,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,111,212,0.55);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 18px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 40px 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,111,212,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,111,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.page-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-breadcrumb a:hover { color: white; }

.page-breadcrumb span { color: rgba(255,255,255,0.2); }

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,111,212,0.15);
  border: 1px solid rgba(26,111,212,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #70B0FF;
  margin-bottom: 20px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: white;
  max-width: 720px;
  margin-bottom: 20px;
}

.page-title em { font-style: normal; color: #70B0FF; }

.page-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ===== SECTIONS ===== */
section { padding: 100px 40px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #70B0FF;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: white;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ===== WHY CHOOSE US ===== */
.why-feature {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.why-feature:hover {
  background: rgba(26,111,212,0.07);
  border-color: rgba(26,111,212,0.2);
  transform: translateX(4px);
}

.why-feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,111,212,0.3);
}

.why-feature-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.why-feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.stat-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
}

.stat-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-badge-num span { color: #70B0FF; }

.stat-badge-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== PROCESS ===== */
.process-step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step-card:hover {
  border-color: rgba(26,111,212,0.3);
  background: rgba(26,111,212,0.05);
  transform: translateY(-4px);
}

.process-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px rgba(26,111,212,0.12), 0 8px 24px rgba(26,111,212,0.35);
}

.process-step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.process-step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.process-connector {
  position: absolute;
  top: 40px;
  right: -12%;
  width: 24%;
  height: 2px;
  background: linear-gradient(90deg, rgba(26,111,212,0.6) 0%, rgba(26,111,212,0.2) 100%);
  z-index: 0;
}

/* ===== REVIEWS ===== */
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  border-color: rgba(26,111,212,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(26,111,212,0.12);
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star { color: #FFB800; font-size: 18px; }

.review-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.reviewer-loc { font-size: 13px; color: var(--text-muted); }

.reviewer-service {
  font-size: 12px;
  color: #70B0FF;
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 0.3px;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open { border-color: rgba(26,111,212,0.3); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 32px;
  background: none;
  border: none;
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
  font-family: inherit;
  line-height: 1.4;
}

.faq-q:hover { color: #70B0FF; }

.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(26,111,212,0.15);
  border: 1px solid rgba(26,111,212,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: #70B0FF;
}

.faq-item.open .faq-icon {
  background: var(--blue);
  transform: rotate(45deg);
  border-color: var(--blue);
  color: white;
}

.faq-a {
  display: none;
  padding: 0 32px 28px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-a { display: block; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0D1E3E 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 40px;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,111,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-strip-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-strip-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-strip-phone {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  transition: color 0.2s;
  margin-bottom: 12px;
}

.cta-strip-phone:hover { color: #70B0FF; }

/* ===== FOOTER ===== */
footer {
  background: #060E1A;
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

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

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

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

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

.footer-col ul li a, .footer-col ul li {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  cursor: default;
}

.footer-col ul li a:hover { color: white; cursor: pointer; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.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; }

/* ===== MOBILE MENU ===== */
.mobile-services-wrap { display: flex; flex-direction: column; align-items: center; }
.mobile-services-toggle {
  background: none; border: none; color: white; font-size: 22px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 8px; padding: 0;
}
.mobile-arrow { font-size: 14px; opacity: 0.7; transition: transform 0.3s ease; display: inline-block; }
.mobile-services-toggle.open .mobile-arrow { transform: rotate(180deg); }
.mobile-services-list { display: none; flex-direction: column; align-items: center; gap: 14px; margin-top: 14px; }
.mobile-services-list.open { display: flex; }
.mobile-services-list a { font-size: 15px !important; color: #70B0FF !important; font-weight: 500 !important; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 80px 24px 48px;
  box-sizing: border-box;
}

.mobile-menu.open { display: flex; opacity: 1; }

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: #70B0FF; }

.mobile-close {
  position: fixed;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  z-index: 1000;
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section, .cta-strip { padding: 72px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-cta .btn-outline { display: none; }
}

@media (max-width: 480px) {
  .page-title { font-size: 38px; letter-spacing: -1.5px; }
}
