/* ============================================
   SATELLITE REPORTS — Main Stylesheet
   satellitereports.com | 2026
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS Variables — Slate Navy + Sky Blue (US Professional) --- */
:root {
  --primary:       #1C3557;
  --primary-dark:  #0F2140;
  --primary-light: #2B4E7E;
  --primary-pale:  #EFF6FF;
  --primary-border:#BFDBFE;
  --accent:        #0EA5E9;
  --accent-dark:   #0284C7;
  --accent-light:  #38BDF8;
  --success:       #10B981;
  --warning:       #F59E0B;
  --danger:        #EF4444;
  --text-dark:     #0B1525;
  --text-body:     #334155;
  --text-muted:    #64748B;
  --text-light:    #94A3B8;
  --bg-white:      #FFFFFF;
  --bg-light:      #F8FAFF;
  --bg-section:    #EFF6FF;
  --border:        #DBEAFE;
  --shadow-sm:     0 1px 4px rgba(28,53,87,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 18px rgba(28,53,87,0.12), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:     0 12px 40px rgba(28,53,87,0.16), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:     0 24px 64px rgba(28,53,87,0.20);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:     'Nunito Sans', sans-serif;
  --font-heading:  'Plus Jakarta Sans', sans-serif;
  --max-width:     1200px;
  --nav-height:    84px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--text-body); line-height: 1.72; font-size: 0.97rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 56px;
}
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-main);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(14,165,233,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  box-shadow: 0 8px 28px rgba(14,165,233,0.50);
  transform: translateY(-2px) scale(1.02);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.03);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}
.btn-white:hover {
  background: var(--bg-light);
  transform: scale(1.03);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,33,64,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14,165,233,0.2);
  transition: var(--transition);
  height: var(--nav-height);
}
.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(15,33,64,0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.nav-logo span { color: var(--accent-light); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-light);
  background: rgba(14,165,233,0.15);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--accent); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.80);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ============================================
   HERO IMAGE SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.hs-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hs-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hs-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hs-slide.active .hs-img {
  transform: scale(1);
}
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,21,37,0.90) 0%,
    rgba(11,21,37,0.52) 45%,
    rgba(11,21,37,0.14) 100%
  );
}
.hs-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 64px 72px;
  max-width: 900px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}
.hs-slide.active .hs-content {
  transform: translateY(0);
  opacity: 1;
}
.hs-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.hs-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hs-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 640px;
  line-height: 1.65;
}
.hs-btn {
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(14,165,233,0.40);
}
.hs-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.hs-arrow:hover { background: rgba(255,255,255,0.32); }
.hs-prev { left: 24px; }
.hs-next { right: 24px; }

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 28px;
  right: 64px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.hs-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .hero-slider { height: 100vh; min-height: 480px; }
  .hs-content { padding: 32px 24px 60px; }
  .hs-dots { right: 24px; bottom: 20px; }
  .hs-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
  .hs-prev { left: 12px; }
  .hs-next { right: 12px; }
}

/* --- Hero Section --- */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-pale) 55%, #DBEAFE 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(28,53,87,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pale);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.hero-trust-item svg, .hero-trust-item i {
  color: var(--success);
}
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.hero-card-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.hero-card h3 { font-size: 1rem; margin-bottom: 2px; }
.hero-card p { font-size: 0.85rem; color: var(--text-muted); }
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}
.floating-badge.badge-1 { top: -20px; right: -20px; }
.floating-badge.badge-2 { bottom: -20px; left: -20px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* --- Stats Bar --- */
.stats-bar {
  background: #060D1E;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(14,165,233,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  color: white;
  padding: 20px 28px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(56,189,248,0.4), transparent);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Section Spacing --- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-light); }

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent-dark));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border: 1px solid var(--primary-border);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.service-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}
.service-card .price span { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.service-bestfor {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--primary-pale);
  border-left: 3px solid var(--accent);
  padding: 8px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 12px 0 0;
}
.service-bestfor strong { color: var(--primary); }
.service-features {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.service-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.pricing-delivery {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.pricing-features li .check { color: var(--success); font-weight: 700; }
.pricing-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.06); }

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.step {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent-light); }
.step-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--border);
  position: absolute;
  top: -8px; right: 20px;
  pointer-events: none;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.step:hover .step-number { color: var(--primary-pale); }
.step-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-light);
}
.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonials-grid { gap: 24px; }
.testimonial-card {
  background: var(--primary);
  border: none;
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 9rem;
  font-family: Georgia, serif;
  color: rgba(56,189,248,0.15);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,33,64,0.3);
}
.stars {
  color: var(--warning);
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.testimonial-text {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}
.author-name { font-weight: 700; font-size: 0.95rem; color: white; }
.author-role { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* --- Section Intro (split layout: visual left + text right) --- */
.section-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 56px;
}
.section-intro-visual {
  background: linear-gradient(145deg, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.03) 100%);
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.section-intro-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.section-intro-visual-icon {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
}
.section-intro-visual-stats {
  display: flex;
  gap: 20px;
}
.section-intro-visual-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.section-intro-visual-stats strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
}
.section-intro-visual-stats span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.section-intro-visual-badge {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
/* color variants */
.siv-green  { background: linear-gradient(145deg, rgba(22,163,74,0.08) 0%, rgba(22,163,74,0.03) 100%); border-color: rgba(22,163,74,0.15); }
.siv-green .section-intro-visual-icon,
.siv-green .section-intro-visual-stats strong { color: #15803d; }
.siv-green .section-intro-visual-badge { background: #16a34a; }
.siv-orange { background: linear-gradient(145deg, rgba(234,88,12,0.08) 0%, rgba(234,88,12,0.03) 100%); border-color: rgba(234,88,12,0.15); }
.siv-orange .section-intro-visual-icon,
.siv-orange .section-intro-visual-stats strong { color: #ea580c; }
.siv-orange .section-intro-visual-badge { background: #ea580c; }
.siv-blue   { background: linear-gradient(145deg, rgba(14,165,233,0.08) 0%, rgba(14,165,233,0.03) 100%); border-color: rgba(14,165,233,0.15); }
.siv-blue .section-intro-visual-icon,
.siv-blue .section-intro-visual-stats strong { color: #0284c7; }
.siv-blue .section-intro-visual-badge { background: #0284c7; }
.siv-indigo { background: linear-gradient(145deg, rgba(99,102,241,0.08) 0%, rgba(99,102,241,0.03) 100%); border-color: rgba(99,102,241,0.15); }
.siv-indigo .section-intro-visual-icon,
.siv-indigo .section-intro-visual-stats strong { color: #4f46e5; }
.siv-indigo .section-intro-visual-badge { background: #4f46e5; }
.siv-teal   { background: linear-gradient(145deg, rgba(20,184,166,0.08) 0%, rgba(20,184,166,0.03) 100%); border-color: rgba(20,184,166,0.15); }
.siv-teal .section-intro-visual-icon,
.siv-teal .section-intro-visual-stats strong { color: #0d9488; }
.siv-teal .section-intro-visual-badge { background: #0d9488; }

.section-intro-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.section-intro-text .section-title { text-align: left; margin-bottom: 0; }
.section-intro-text .section-subtitle { text-align: left; margin: 0; max-width: 100%; }

/* --- Sample Reports Preview --- */
.sr-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.sr-preview-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sr-preview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sr-preview-icon {
  font-size: 2rem;
  line-height: 1;
}
.sr-preview-type {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-heading);
}
.sr-preview-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.sr-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sr-preview-list li {
  font-size: 0.84rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sr-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}
.sr-preview-link:hover { gap: 10px; }

/* --- Who We Serve --- */
.wws-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.wws-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.wws-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}
.wws-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}
/* Color accents */
.wws-blue::before   { background: #3b82f6; }
.wws-green::before  { background: #10b981; }
.wws-orange::before { background: #f59e0b; }
.wws-purple::before { background: #8b5cf6; }

/* Icon badge */
.wws-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.wws-blue   .wws-icon-wrap { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.wws-green  .wws-icon-wrap { background: rgba(16,185,129,0.1);  color: #10b981; }
.wws-orange .wws-icon-wrap { background: rgba(245,158,11,0.1);  color: #d97706; }
.wws-purple .wws-icon-wrap { background: rgba(139,92,246,0.1);  color: #8b5cf6; }

.wws-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.wws-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 18px;
}
.wws-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.wws-list li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  display: flex; align-items: center; gap: 8px;
}
.wws-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: center;
}
.wws-blue   .wws-list li::before { background-color: #3b82f6; }
.wws-green  .wws-list li::before { background-color: #10b981; }
.wws-orange .wws-list li::before { background-color: #d97706; }
.wws-purple .wws-list li::before { background-color: #8b5cf6; }

/* ── index.html wws card inner layout ── */
.wws-accent {
  position: relative;
  border-radius: var(--radius-md);
  padding: 18px 20px 16px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wws-blue.wws-accent,   .wws-blue   > .wws-accent { background: rgba(59,130,246,0.08); }
.wws-green.wws-accent,  .wws-green  > .wws-accent { background: rgba(16,185,129,0.08); }
.wws-orange.wws-accent, .wws-orange > .wws-accent { background: rgba(245,158,11,0.08); }
.wws-purple.wws-accent, .wws-purple > .wws-accent { background: rgba(139,92,246,0.08); }

.wws-card .wws-accent { background: transparent; }
.wws-blue   .wws-accent { background: rgba(59,130,246,0.08); }
.wws-green  .wws-accent { background: rgba(16,185,129,0.08); }
.wws-orange .wws-accent { background: rgba(245,158,11,0.08); }
.wws-purple .wws-accent { background: rgba(139,92,246,0.08); }

.wws-bg-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.18;
  font-family: var(--font-heading);
  color: var(--primary);
  flex-shrink: 0;
}
.wws-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.wws-blue   .wws-icon { color: #3b82f6; }
.wws-green  .wws-icon { color: #10b981; }
.wws-orange .wws-icon { color: #d97706; }
.wws-purple .wws-icon { color: #8b5cf6; }

.wws-accent-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.wws-body { padding: 0; }
.wws-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}
.wws-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-body);
}
.wws-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}
.wws-link:hover { gap: 10px; }
.wws-blue   .wws-link { color: #3b82f6; }
.wws-green  .wws-link { color: #10b981; }
.wws-orange .wws-link { color: #d97706; }
.wws-purple .wws-link { color: #8b5cf6; }

/* ── Who We Serve — new card design (homepage) ── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.serve-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.serve-head {
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.serve-blue   { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); }
.serve-green  { background: linear-gradient(135deg, #065f46 0%, #10b981 100%); }
.serve-orange { background: linear-gradient(135deg, #92400e 0%, #f59e0b 100%); }
.serve-purple { background: linear-gradient(135deg, #4c1d95 0%, #8b5cf6 100%); }
.serve-head-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}
.serve-head-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.serve-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.serve-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.serve-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.serve-list li {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex; align-items: center; gap: 8px;
}
.serve-list li i { font-size: 0.7rem; flex-shrink: 0; }
.serve-blue   .serve-list li i,  .serve-link-blue   { color: #3b82f6; }
.serve-green  .serve-list li i,  .serve-link-green  { color: #10b981; }
.serve-orange .serve-list li i,  .serve-link-orange { color: #f59e0b; }
.serve-purple .serve-list li i,  .serve-link-purple { color: #8b5cf6; }
.serve-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}
.serve-link:hover { gap: 10px; }
@media (max-width: 1024px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .serve-grid { grid-template-columns: 1fr; } }

/* --- Trust Section --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card {
  text-align: left;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s;
}
.trust-card:nth-child(1)::after { background: linear-gradient(90deg, #059669, #34D399); }
.trust-card:nth-child(2)::after { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.trust-card:nth-child(3)::after { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }
.trust-card:nth-child(4)::after { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-card:hover::after { opacity: 1; }
.trust-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.trust-card:nth-child(1) .trust-icon { background: #ECFDF5; }
.trust-card:nth-child(2) .trust-icon { background: #F0F9FF; }
.trust-card:nth-child(3) .trust-icon { background: #F5F3FF; }
.trust-card:nth-child(4) .trust-icon { background: #FFFBEB; }
.trust-card h4 { margin-bottom: 8px; font-size: 1rem; }
.trust-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #060D1E 0%, var(--primary) 45%, var(--accent-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 6%, 100% 0%, 100% 94%, 0 100%);
  margin: -2px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(56,189,248,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  text-align: center;
  border-bottom: 1px solid rgba(14,165,233,0.22);
}
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.80); }
.page-hero .breadcrumb { color: rgba(255,255,255,0.60); }
.page-hero .breadcrumb a { color: var(--accent-light); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.breadcrumb a:hover { text-decoration: underline; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary-border); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-white);
  transition: var(--transition);
  cursor: pointer;
}
.faq-question:hover { background: var(--bg-light); }
.faq-item.open .faq-question { color: var(--primary); background: var(--primary-pale); border-left: 3px solid var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* --- Order Form --- */
.order-form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
}
.order-form-wrapper h2 { margin-bottom: 8px; }
.order-form-wrapper .subtitle { color: var(--text-muted); margin-bottom: 36px; }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
#paypal-button-container { margin-top: 8px; min-height: 50px; }
.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 16px;
}
.secure-badge span { color: var(--success); }

/* --- Report Types Grid (Pricing Page) --- */
.all-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.report-type-section { margin-bottom: 60px; }
.report-type-section h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-pale);
  display: flex;
  align-items: center;
  gap: 12px;
}
.report-type-section h3 .cat-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: scale(1.025); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-pale), #DBEAFE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}
.blog-body { padding: 24px; }
.blog-category {
  display: inline-block;
  background: rgba(14,165,233,0.10);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  border-left: 2px solid var(--accent);
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.blog-read-more { color: var(--primary); font-weight: 600; }
.blog-read-more:hover { text-decoration: underline; }

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--primary-pale), #DBEAFE);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--primary-border);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-stat {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}
.about-stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
/* ── Values section (dark) ── */
.values-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(14,165,233,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.values-new-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}
.vncard {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  transition: background 0.25s, border-color 0.25s;
}
.vncard:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}
.vncard-ico {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.vncard-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.vncard-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .values-new-grid { grid-template-columns: 1fr; }
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-info-item:hover { border-color: var(--primary-border); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--primary-border);
}
.contact-info-item h4 { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.contact-info-item p { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.contact-info-item a { color: var(--primary); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  width: 40px; height: 40px;
  background: var(--primary-pale);
  border: 1px solid var(--primary-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: white; }

/* --- Sample Reports --- */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.report-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-white);
}
.report-card:hover { transform: scale(1.025); box-shadow: var(--shadow-lg); }
.report-preview {
  height: 220px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  gap: 12px;
}
.report-preview-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.report-body { padding: 24px; }
.report-body h3 { margin-bottom: 10px; }
.report-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.report-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.report-tag {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--primary-border);
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  padding: 70px 0 0;
  border-top: 3px solid var(--accent);
}
.footer-contact-mini a:hover { color: var(--accent-light); }
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-bottom-links a:hover { color: var(--accent-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; max-width: 300px; color: rgba(255,255,255,0.7); }
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a, .footer-contact-mini span {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.footer-contact-mini a:hover { color: var(--accent-light); }
.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.newsletter-form { display: flex; gap: 0; }
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: white;
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-btn {
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.newsletter-btn:hover { background: var(--primary-dark); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.footer-social:hover { background: var(--primary); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent-light); }

/* ============================================
   ORDER MODAL — Multi-Step Process
   ============================================ */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 50, 0.65);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.order-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.order-modal {
  background: var(--bg-white);
  border-radius: 16px;
  width: 100%;
  max-width: 1020px;
  max-height: 92vh;
  margin: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.order-modal-overlay.open .order-modal {
  transform: translateY(0) scale(1);
}

/* ── Sidebar ── */
.om-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #0F2B5B 0%, #1a3f7a 60%, #0e4f8a 100%);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}
.om-sb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.om-sb-brand-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.om-sb-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
}
.om-sb-brand-name span { color: #67c6f5; }
.om-sb-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.om-sb-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.om-sb-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.om-sb-ico {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.om-sb-benefits li strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.om-sb-benefits li small {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.om-sb-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0;
}
.om-sb-quote {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px;
  border-left: 3px solid #67c6f5;
}
.om-sb-quote p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 10px;
  font-style: italic;
}
.om-sb-quote-author {
  font-size: 0.75rem;
  color: #67c6f5;
  font-weight: 600;
}
.om-sb-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.om-sb-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
}
.om-sb-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-heading);
}
.om-sb-stat small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  display: block;
}

/* ── Main right panel ── */
.om-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  min-width: 0;
}

@media (max-width: 760px) {
  .order-modal-overlay { padding: 0; align-items: flex-end; }
  .order-modal { max-height: 95vh; border-radius: 16px 16px 0 0; flex-direction: column; }
  .om-sidebar { display: none; }
  .om-main { overflow-y: auto; }
}

/* Modal Header */
.om-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-white);
  z-index: 10;
}
.om-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}
.om-title-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}
.om-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.om-close:hover { background: #fee2e2; color: var(--danger); border-color: #fca5a5; }

/* Step Indicator */
.om-steps {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.om-step-item {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}
.om-step-item:last-child { flex: 0; }
.om-step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 1;
}
.om-step-item.active .om-step-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  box-shadow: 0 0 0 4px rgba(14,165,233,0.20);
}
.om-step-item.done .om-step-dot {
  border-color: var(--success);
  background: var(--success);
  color: white;
}
.om-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 8px;
  white-space: nowrap;
  transition: var(--transition);
}
.om-step-item.active .om-step-label { color: var(--accent); }
.om-step-item.done .om-step-label { color: var(--success); }
.om-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  border-radius: 2px;
  transition: var(--transition);
}
.om-step-item.done + .om-step-item .om-step-line,
.om-step-line.done { background: var(--success); }

/* Modal Body */
.om-body {
  padding: 32px;
  flex: 1;
}
.om-step-panel { display: none; }
.om-step-panel.active { display: block; }
.om-step-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.om-step-panel .om-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Report Type Selector */
.report-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.report-opt {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-white);
}
.report-opt:hover { border-color: var(--accent-light); background: var(--primary-pale); }
.report-opt.selected { border-color: var(--accent); background: var(--primary-pale); }
.report-opt-radio {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.report-opt.selected .report-opt-radio {
  border-color: var(--accent);
  background: var(--accent);
}
.report-opt.selected .report-opt-radio::after {
  content: '';
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
}
.report-opt-info { flex: 1; min-width: 0; }
.report-opt-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.report-opt-cat { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }
.report-opt-price { font-size: 1rem; font-weight: 800; color: var(--accent-dark); font-family: var(--font-heading); margin-left: auto; flex-shrink: 0; }

/* Turnaround Options */
.turnaround-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ta-opt {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: var(--bg-white);
  position: relative;
}
.ta-opt:hover { border-color: var(--accent-light); background: var(--primary-pale); }
.ta-opt.selected { border-color: var(--accent); background: var(--primary-pale); }
.ta-opt.recommended::before {
  content: 'Popular';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.ta-icon { font-size: 1.8rem; margin-bottom: 8px; }
.ta-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.ta-time { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.ta-price { font-size: 0.85rem; font-weight: 700; color: var(--accent-dark); }
.ta-price.free { color: var(--success); }

/* Order Summary */
.om-summary {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.om-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-body);
}
.om-summary-row:last-child { margin-bottom: 0; }
.om-summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}
.om-summary-row .val { font-weight: 600; }
.om-summary-row.total .val { color: var(--accent-dark); font-size: 1.2rem; font-family: var(--font-heading); }

/* Modal Footer */
.om-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  bottom: 0;
  background: var(--bg-white);
  z-index: 10;
  position: sticky;
  bottom: 0;
  background: var(--bg-white);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.om-progress-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.om-nav { display: flex; align-items: center; gap: 10px; }

/* PayPal container inside modal */
#om-paypal-container { min-height: 55px; margin-top: 8px; }

/* Mobile modal */
@media (max-width: 600px) {
  .order-modal { box-shadow: none; }
  .om-header, .om-body, .om-footer { padding-left: 16px; padding-right: 16px; }
  .report-type-grid { grid-template-columns: 1fr; }
  .turnaround-grid { grid-template-columns: 1fr; }
  .om-steps { padding: 14px 16px; overflow-x: auto; }
  .om-step-label { font-size: 0.7rem; }
}

/* ============================================
   GOOGLE MAPS STEP 1
   ============================================ */

/* Google autocomplete dropdown above modal */
.pac-container {
  z-index: 99999 !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--primary-border) !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font-main) !important;
  margin-top: 4px;
}
.pac-item {
  padding: 10px 16px !important;
  font-size: 0.9rem !important;
  cursor: pointer;
}
.pac-item:hover { background: var(--primary-pale) !important; }
.pac-item-selected { background: var(--primary-pale) !important; }
.pac-icon { margin-top: 2px !important; }

/* Search wrapper */
.om-maps-search-wrapper {
  position: relative;
  margin-bottom: 4px;
}
.om-maps-search-wrapper .form-input {
  padding-left: 46px;
  font-size: 1rem;
}
.om-maps-pin {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  pointer-events: none;
  line-height: 1;
}
.om-maps-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-left: 4px;
}

/* Map container */
.om-map-container {
  display: none;
  margin-top: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--primary-border);
  box-shadow: var(--shadow-sm);
}
#om-map {
  width: 100%;
  height: 280px;
  display: block;
}
.om-map-confirm-bar {
  background: var(--primary-pale);
  border-top: 1px solid var(--primary-border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.om-map-addr-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.om-map-addr-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  max-width: 400px;
}
.om-map-hint-drag {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 8px;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Confirmed address chip */
.om-confirmed-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--success);
  color: white;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.88rem;
}
.om-confirmed-chip .chip-addr { flex: 1; font-weight: 600; }
.om-edit-addr {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 10px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.om-edit-addr:hover { background: rgba(255,255,255,0.25); }

/* Property type cards */
.om-prop-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.om-prop-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  background: var(--bg-white);
  position: relative;
}
.om-prop-card:hover { border-color: var(--primary-light); background: var(--primary-pale); }
.om-prop-card.selected {
  border-color: var(--accent);
  background: var(--primary-pale);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.18);
}
.om-prop-card.selected::after {
  content: '✓';
  position: absolute;
  top: 6px; right: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-dark);
}
.om-prop-icon { font-size: 1.8rem; margin-bottom: 6px; line-height: 1; }
.om-prop-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.om-prop-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* File Upload Zone */
.om-file-zone {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.om-file-drop {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  background: var(--bg-light);
}
.om-file-drop:hover, .om-file-drop.drag-over {
  border-color: var(--accent);
  background: var(--primary-pale);
}
.om-file-chosen {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--success);
  border-radius: var(--radius-md);
  background: #f0fdf4;
}

/* Stage B slide-in */
#omStageB {
  animation: slideInUp 0.3s ease forwards;
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Squares helper */
.om-sq-helper {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 560px) {
  #om-map { height: 220px; }
  .om-prop-type-grid { grid-template-columns: repeat(2, 1fr); }
  .om-map-confirm-bar { flex-direction: column; align-items: flex-start; }
}

/* --- Timeline (How It Works) --- */
.timeline { max-width: 860px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: var(--tl-top, 20px);
  bottom: var(--tl-bottom, 20px);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-number {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 28px;
}
.timeline-dot {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--primary-pale);
}
.timeline-body {
  flex: 1;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.timeline-body:hover { box-shadow: var(--shadow-md); border-color: var(--primary-border); }
.timeline-body h3 { margin-bottom: 10px; color: var(--primary); }
.timeline-body p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; }
.timeline-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.timeline-tag {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--primary-border);
}
@media (max-width: 600px) {
  .timeline::before { left: 20px; }
  .timeline-number { width: 40px; }
  .timeline-dot { width: 36px; height: 36px; font-size: 0.85rem; }
  .timeline-item { gap: 20px; }
}

/* --- Pricing Rows (Home Page) --- */
.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 40px;
}
.pricing-row {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 36px;
  align-items: center;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pricing-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--border);
  transition: background 0.3s;
}
.pricing-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.pricing-row:hover::before { background: var(--accent); }
.pricing-row.featured {
  background: var(--primary);
  border-color: var(--primary);
}
.pricing-row.featured::before { background: var(--accent-light); }
.pr-badge-top {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.pr-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pr-info p { font-size: 0.88rem; color: var(--text-muted); }
.pricing-row.featured .pr-info h3 { color: white; }
.pricing-row.featured .pr-info p { color: rgba(255,255,255,0.65); }
.pr-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 24px;
  list-style: none;
  padding: 0;
}
.pr-feats li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--text-body);
}
.pr-feats li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-row.featured .pr-feats li { color: rgba(255,255,255,0.85); }
.pricing-row.featured .pr-feats li::before { color: var(--accent-light); }
.pr-cta { text-align: center; }
.pr-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pr-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 8px; }
.pricing-row.featured .pr-price { color: white; }
.pr-delivery {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pricing-row.featured .pr-delivery { color: rgba(255,255,255,0.6); }

/* --- Tech Card Grid (Home Page Technology Section) --- */
.tech-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tech-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tech-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tech-card-header {
  padding: 24px 28px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tc-blue   { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.tc-sky    { background: linear-gradient(135deg, #F0F9FF, #BAE6FD); }
.tc-purple { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.tc-green  { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); }
.tech-card-ico {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  flex-shrink: 0;
}
.tech-card-cat {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
  margin-bottom: 4px;
}
.tech-card-header h4 { font-size: 1.1rem; margin: 0; color: var(--text-dark); }
.tech-card-body {
  padding: 22px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tech-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin: 0 0 16px;
  flex: 1;
}
.tech-card-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-pale);
  border: 1px solid var(--primary-border);
  padding: 5px 14px;
  border-radius: 100px;
  width: fit-content;
}

/* --- Section Dark --- */
.section-dark {
  background: var(--primary-dark) !important;
}
.section-dark .section-label { color: var(--accent-light); }
.section-dark .section-label::before,
.section-dark .section-label::after { background: linear-gradient(90deg, var(--accent-light), var(--accent)); }
.section-dark .section-title { color: white; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.60); }

/* --- Why Grid (Home Page) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.why-num {
  position: absolute;
  top: -10px; right: 14px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.why-card:hover .why-num { color: var(--primary-pale); }
.why-icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.why-card:nth-child(1) .why-icon-box { background: #EFF6FF; color: var(--accent); }
.why-card:nth-child(2) .why-icon-box { background: #F0FDF4; color: var(--success); }
.why-card:nth-child(3) .why-icon-box { background: #FFFBEB; color: #f59e0b; }
.why-card:nth-child(4) .why-icon-box { background: #F5F3FF; color: #8b5cf6; }
.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:nth-child(1)::after { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.why-card:nth-child(2)::after { background: linear-gradient(90deg, var(--success), #34D399); }
.why-card:nth-child(3)::after { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.why-card:nth-child(4)::after { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }
.why-card:hover::after { opacity: 1; }

/* ============================================
   ORDER PAGE — Standalone full-page order
   ============================================ */
.order-page-wrap { padding: 56px 0 80px; background: var(--bg-light); }
.order-page-card { display: flex; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(15,33,64,0.14); }
.order-page-card .om-sidebar { width: 300px; overflow-y: visible; }
.order-page-main { flex: 1; min-width: 0; display: flex; flex-direction: column; background: var(--bg-white); }
.op-header { padding: 28px 40px 0; }
.op-body { flex: 1; padding: 28px 40px 32px; }
.op-footer {
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--bg-white);
  position: sticky; bottom: 0; z-index: 5;
}
.op-success { text-align: center; padding: 48px 20px; }
.op-success-icon { width: 80px; height: 80px; border-radius: 50%; background: #f0fdf4; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; margin: 0 auto 24px; border: 3px solid var(--success); }
.op-success h2 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 10px; }
.op-success p { color: var(--text-muted); font-size: 0.95rem; max-width: 480px; margin: 0 auto 28px; }
.op-success-details { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 28px; max-width: 440px; margin: 0 auto 28px; text-align: left; }
@media (max-width: 960px) {
  .order-page-card { flex-direction: column; }
  .order-page-card .om-sidebar { width: 100%; }
  .order-page-card .om-sb-quote { display: none; }
}
@media (max-width: 640px) {
  .order-page-wrap { padding: 32px 0 60px; }
  .op-body { padding: 20px 20px 24px; }
  .op-footer { padding: 16px 20px; }
  .op-header { padding: 20px 20px 0; }
}

/* --- Utility Classes --- */
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.fw-700 { font-weight: 700; }
.w-100 { width: 100%; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateX(-20px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateX(0) scale(1); }
.fade-up:nth-child(2) { transition-delay: 0.12s; }
.fade-up:nth-child(3) { transition-delay: 0.24s; }
.fade-up:nth-child(4) { transition-delay: 0.36s; }

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--primary);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid, .pricing-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(4)::after { display: none; }
  .stat-item:nth-child(1)::after { display: none; }
  .stat-item:nth-child(3)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pricing-row .pr-cta { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px; justify-content: space-between; }
  .pr-feats { grid-template-columns: 1fr 1fr 1fr; }
  .section-intro { grid-template-columns: 200px 1fr; gap: 32px; }
  .wws-grid { grid-template-columns: 1fr; }
  .sr-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .all-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-process-grid { grid-template-columns: 1fr !important; }
  .about-serve-grid   { grid-template-columns: 1fr !important; }
  .about-tech-grid    { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .reports-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .nav-menu { display: none; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(15,33,64,0.98); border-bottom: 1px solid rgba(14,165,233,0.18); padding: 16px 24px 24px; gap: 4px; box-shadow: 0 8px 32px rgba(15,33,64,0.5); z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 60px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .section-intro-visual { aspect-ratio: 3/1; flex-direction: row; gap: 24px; padding: 20px 28px; }
  .section-intro-text .section-title,
  .section-intro-text .section-subtitle { text-align: center; }
  .section-intro-text { align-items: center; }
  .services-grid, .pricing-grid, .testimonials-grid, .trust-grid, .blog-grid, .reports-grid, .sr-preview-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .tech-card-grid { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-row .pr-cta { display: flex; align-items: center; gap: 20px; justify-content: space-between; }
  .pr-feats { grid-template-columns: 1fr 1fr; }
  .wws-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .form-grid { grid-template-columns: 1fr; }
  .order-form-wrapper { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .all-pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none !important; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-row .pr-cta { flex-direction: column; align-items: center; }
  .pr-feats { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NAVBAR — Auth State
   ============================================ */
.nav-user-wrap { position: relative; }
.nav-avatar-btn {
  height: 36px; border-radius: 20px;
  background: rgba(14,165,233,0.15); border: 1.5px solid rgba(14,165,233,0.4);
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  padding: 0 10px 0 4px; color: white; transition: var(--transition); flex-shrink: 0;
}
.nav-avatar-btn:hover { background: rgba(14,165,233,0.28); border-color: var(--accent); }
.nav-avatar-initials {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; color: white; flex-shrink: 0;
}
.nav-avatar-name {
  font-size: 0.82rem; font-weight: 600; color: white;
  max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-signin-btn { flex-shrink: 0; margin-right: 4px; }
.nav-user-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  min-width: 200px; padding: 6px; z-index: 9999;
}
.nav-user-dropdown.open { display: block; }
.nav-dd-info {
  padding: 10px 12px; border-bottom: 1px solid var(--border); margin-bottom: 4px;
}
.nav-dd-info strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.nav-dd-info span   { display: block; font-size: 0.73rem; color: var(--text-muted); margin-top: 1px; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 0.84rem; color: var(--text-body); text-decoration: none;
  transition: var(--transition); cursor: pointer;
  background: none; border: none; width: 100%; text-align: left;
}
.nav-dropdown-item i { width: 14px; text-align: center; color: var(--text-muted); }
.nav-dropdown-item:hover { background: var(--bg-light); color: var(--primary); }
.nav-dropdown-item:hover i { color: var(--accent); }
.nav-dropdown-item.danger { color: var(--danger); }
.nav-dropdown-item.danger:hover { background: #FEE2E2; }
.nav-dropdown-item.danger i { color: var(--danger); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ============================================
   AUTH PAGE — Split Layout
   ============================================ */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: stretch;
}

/* ── Left branding panel ── */
.auth-left {
  flex: 0 0 480px;
  background: linear-gradient(160deg, #0f2340 0%, #1C3557 55%, #1a4a72 100%);
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 36px;
  position: relative; overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(14,165,233,0.08); pointer-events: none;
}
.auth-left::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(14,165,233,0.06); pointer-events: none;
}
.al-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: white;
}
.al-brand-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: white; flex-shrink: 0;
}
.al-brand span { font-size: 1.2rem; font-weight: 400; letter-spacing: -0.01em; }
.al-brand strong { font-weight: 800; color: var(--accent); }

.al-headline h2 {
  font-size: 1.55rem; font-weight: 800; color: white;
  line-height: 1.3; margin: 0 0 12px;
}
.al-headline p {
  font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0;
}

.al-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.al-features li {
  display: flex; align-items: flex-start; gap: 14px;
}
.al-feat-ico {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(14,165,233,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #67c6f5;
}
.al-features li div strong {
  display: block; font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 2px;
}
.al-features li div span {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}

.al-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 18px 24px;
}
.al-stat { flex: 1; text-align: center; }
.al-stat strong { display: block; font-size: 1.2rem; font-weight: 800; color: white; }
.al-stat span   { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; display: block; }
.al-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

.al-quote {
  border-left: 3px solid var(--accent);
  padding-left: 18px; position: relative;
}
.al-quote-icon {
  color: var(--accent); font-size: 1rem; margin-bottom: 8px; display: block; opacity: 0.7;
}
.al-quote p {
  font-size: 0.88rem; font-style: italic; color: rgba(255,255,255,0.75);
  line-height: 1.6; margin: 0 0 8px;
}
.al-quote span { font-size: 0.76rem; color: rgba(255,255,255,0.4); font-weight: 600; }

/* ── Right form panel ── */
.auth-right {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--bg-light); padding: 40px 24px;
}

@media (max-width: 900px) {
  .auth-left { display: none; }
  .auth-right { background: var(--bg-light); }
}
.auth-card {
  background: var(--bg-white); border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(15,33,64,0.14);
  width: 100%; max-width: 440px; overflow: hidden;
}
.auth-header { background: var(--primary-dark); padding: 32px; text-align: center; }
.auth-logo {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  color: white; font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 700; margin-bottom: 6px;
}
.auth-logo span { color: #67c6f5; }
.auth-logo-ico {
  width: 38px; height: 38px; background: rgba(255,255,255,0.15);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.auth-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); }
.auth-tab-btn {
  flex: 1; padding: 14px; background: none; border: none;
  border-bottom: 2px solid transparent; font-size: 0.9rem;
  font-weight: 600; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.auth-tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.auth-form-body { padding: 28px 32px 32px; }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-or { display: flex; align-items: center; gap: 12px; margin: 16px 0; font-size: 0.8rem; color: var(--text-muted); }
.auth-or::before, .auth-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 11px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); background: white; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; color: var(--text-dark); transition: var(--transition);
}
.btn-google:hover { background: var(--bg-light); border-color: #9ca3af; }
.auth-alt { text-align: center; margin-top: 16px; font-size: 0.84rem; color: var(--text-muted); }
.auth-alt a { color: var(--accent); font-weight: 600; text-decoration: none; cursor: pointer; }
.auth-error {
  background: #FEE2E2; color: var(--danger); font-size: 0.84rem;
  border-radius: var(--radius-md); padding: 10px 14px;
  margin-bottom: 14px; display: none; align-items: center; gap: 8px;
}
.auth-error.show { display: flex; }
.auth-success {
  background: #D1FAE5; color: #065F46; font-size: 0.84rem;
  border-radius: var(--radius-md); padding: 10px 14px;
  margin-bottom: 14px; display: none; align-items: center; gap: 8px;
}
.auth-success.show { display: flex; }

/* ============================================
   ORDER PAGE — Auth Gate overlay
   ============================================ */
.order-auth-gate {
  position: fixed; inset: 0; background: rgba(15,33,64,0.72);
  z-index: 9990; display: none; align-items: center;
  justify-content: center; padding: 20px;
}
.order-auth-gate.open { display: flex; }
.oag-card {
  background: var(--bg-white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); width: 100%; max-width: 420px; overflow: hidden;
}
.oag-header { background: var(--primary-dark); padding: 26px 28px 22px; }
.oag-header h3 { color: white; font-size: 1.05rem; margin-bottom: 4px; }
.oag-header p  { color: rgba(255,255,255,0.55); font-size: 0.83rem; }
.oag-body { padding: 22px 28px 28px; }
.oag-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.oag-tab {
  flex: 1; background: none; border: none; border-bottom: 2px solid transparent;
  padding: 10px; font-size: 0.88rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.oag-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.oag-panel { display: none; }
.oag-panel.active { display: block; }
.oag-close {
  float: right; background: rgba(255,255,255,0.15); border: none;
  color: white; width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
}
.oag-close:hover { background: rgba(255,255,255,0.25); }
.oag-code-input {
  font-size: 1.6rem; font-weight: 700; letter-spacing: 0.4em;
  text-align: center; padding: 14px 16px;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dash-wrap { display: flex; min-height: calc(100vh - var(--nav-height)); }
.dash-sidebar {
  width: 252px; flex-shrink: 0; background: var(--primary-dark);
  display: flex; flex-direction: column;
}
.dash-sb-top {
  padding: 28px 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dash-sb-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 10px;
}
.dash-sb-name  { font-size: 0.95rem; font-weight: 700; color: white; line-height: 1.2; }
.dash-sb-email { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; word-break: break-all; }
.dash-nav { flex: 1; padding: 14px 10px; display: flex; flex-direction: column; gap: 2px; }
.dash-nav-btn {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  border-radius: var(--radius-md); color: rgba(255,255,255,0.6);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); background: none; border: none;
  width: 100%; text-align: left;
}
.dash-nav-btn i { width: 18px; text-align: center; font-size: 0.88rem; }
.dash-nav-btn:hover { background: rgba(255,255,255,0.08); color: white; }
.dash-nav-btn.active { background: var(--accent); color: white; }
.dash-nav-sep { height: 1px; background: rgba(255,255,255,0.1); margin: 6px 0; }
.dash-main { flex: 1; background: var(--bg-light); overflow-y: auto; }
.dash-panel { display: none; padding: 40px; }
.dash-panel.active { display: block; }
.dash-panel-title { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.dash-panel-sub   { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.dash-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 28px; }
.dash-stat-box { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 22px; }
.dash-stat-val { font-size: 1.9rem; font-weight: 900; color: var(--primary); font-family: var(--font-heading); line-height: 1; margin-bottom: 4px; }
.dash-stat-lbl { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.rr {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px; transition: var(--transition);
}
.rr:hover { box-shadow: var(--shadow-md); border-color: var(--primary-border); }
.rr-ico {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--primary-pale); display: flex; align-items: center;
  justify-content: center; color: var(--accent); font-size: 1rem; flex-shrink: 0;
}
.rr-info { flex: 1; min-width: 0; }
.rr-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.rr-addr { font-size: 0.79rem; color: var(--text-muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rr-meta { font-size: 0.73rem; color: var(--text-muted); margin-top: 3px; }
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.badge-processing { background: #FEF3C7; color: #B45309; }
.badge-completed  { background: #D1FAE5; color: #065F46; }
.badge-delivered  { background: #D1FAE5; color: #065F46; }
.badge-failed     { background: #FEE2E2; color: #991B1B; }
.badge-cancelled  { background: #F1F5F9; color: #475569; }
.badge-initiated  { background: #DBEAFE; color: #1E40AF; }
.rr-price { font-size: 1rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); flex-shrink: 0; }
.rr-actions { flex-shrink: 0; }
.bill-row {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 20px;
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
}
.bill-date { font-size: 0.78rem; color: var(--text-muted); min-width: 76px; flex-shrink: 0; }
.bill-desc { flex: 1; }
.bill-name { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.bill-tx   { font-size: 0.73rem; color: var(--text-muted); margin-top: 2px; }
.bill-amt  { font-size: 1rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); flex-shrink: 0; }
.dash-empty {
  text-align: center; padding: 56px 20px;
  color: var(--text-muted);
}
.dash-empty-ico { font-size: 3rem; margin-bottom: 14px; }
.dash-empty h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.dash-empty p  { font-size: 0.88rem; margin-bottom: 20px; }
.dash-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
@media (max-width: 900px) {
  .dash-wrap { flex-direction: column; }
  .dash-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .dash-sb-top { display: none; }
  .dash-nav { flex-direction: row; padding: 8px 12px; gap: 4px; overflow-x: auto; }
  .dash-nav-sep { display: none; }
  .dash-panel { padding: 24px 16px; }
  .dash-stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .dash-stats-row { grid-template-columns: 1fr; }
  .rr-actions { display: none; }
  .dash-profile-grid { grid-template-columns: 1fr; }
}
