
/* ==========================================================================
   Aero Pack — Shared stylesheet
   Clean, professional, GoDaddy-inspired design system
   ========================================================================== */

:root {
  /* Colors */
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-50: #eff6ff;
  --brand-100: #dbeafe;

  --ink: #0a1628;
  --ink-soft: #1e293b;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --teal: #00a4a6;
  --indigo: #4f46e5;
  --pink: #ec4899;
  --purple: #8b5cf6;
  --emerald: #10b981;
  --sky: #0ea5e9;

  --success: #16a34a;
  --warning: #eab308;
  --danger: #dc2626;

  /* Typography */
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --nav-h: 76px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-brand: 0 12px 30px rgba(37, 99, 235, 0.28);

  /* Motion */
  --t: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* Layout helpers */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
}

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; color: var(--ink); margin: 0 0 16px; letter-spacing: -0.02em; }
.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--brand-50);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.h-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.h-display { font-size: clamp(2.2rem, 5.2vw, 4rem); }
.h-title   { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.h-sub     { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.lead { font-size: 1.125rem; color: var(--slate-600); max-width: 720px; }
.lead-lg { font-size: 1.25rem; color: var(--slate-600); }
.muted { color: var(--slate-500); }
.gradient-text {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: var(--ink); color: #fff; }
.btn-secondary:hover { background: var(--slate-800); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--slate-200); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--brand-dark); }
.btn-ghost:hover { background: var(--brand-50); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  z-index: 100;
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { color: var(--ink); }
.brand-name span { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--slate-700);
  font-weight: 600;
  font-size: 15px;
  transition: color var(--t);
  position: relative;
}
.nav-links a:hover { color: var(--brand-dark); }

/* Location selector in nav */
.loc-select {
  position: relative;
  width: 210px;
  flex: 0 0 auto;
}
.loc-select select {
  appearance: none;
  width: 100%;
  padding: 9px 34px 9px 38px;
  max-width: 210px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t);
  text-overflow: ellipsis;
}
.loc-select select:hover { border-color: var(--brand); }
.loc-select select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.loc-select .loc-pin {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--brand-dark);
  pointer-events: none;
}
.loc-select .loc-chev {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  color: var(--slate-400);
  pointer-events: none;
}

/* Mobile nav */
.nav-mobile-btn { display: none; padding: 6px; border-radius: 8px; }
.nav-mobile { display: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .nav-mobile {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--slate-200);
    padding: 18px 24px 24px;
    box-shadow: var(--shadow-md);
  }
  .nav-mobile.open { display: block; }
  .nav-mobile a { display: block; padding: 12px 0; font-weight: 600; color: var(--slate-700); border-bottom: 1px solid var(--slate-100); }
  .nav-mobile .loc-select { margin: 14px 0; width: 100%; }
  .nav-mobile .loc-select select { max-width: none; }
  .nav-mobile .btn { margin-top: 10px; width: 100%; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(37, 99, 235, 0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 20%, rgba(14, 165, 233, 0.08), transparent 60%),
    #fff;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--slate-600);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-location-name { color: var(--brand-dark); }

/* GoDaddy-style hero search bar */
.hero-finder {
  background: #fff;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin-bottom: 28px;
}
.hero-finder-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: var(--slate-50);
  border-radius: var(--radius);
}
.hero-finder-input svg { width: 20px; height: 20px; color: var(--brand-dark); flex-shrink: 0; }
.hero-finder-input select {
  appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  width: 100%;
  cursor: pointer;
}
.hero-finder .btn { padding: 14px 26px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; margin-top: 18px; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--slate-600); font-weight: 500; }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--success); }

/* Hero illustration / visual */
.hero-visual {
  position: relative;
  height: 480px;
  display: grid;
  place-items: center;
}
.hero-blob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 55%);
  border-radius: 50%;
  filter: blur(20px);
}
.hero-card-stack { position: relative; width: 100%; height: 100%; }
.hero-floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.hero-floating-card .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.hero-floating-card .label { font-size: 12px; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.hero-floating-card .value { font-size: 18px; font-weight: 800; color: var(--ink); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-floating-card:nth-child(1) { top: 5%; left: 10%; animation-delay: 0s; }
.hero-floating-card:nth-child(2) { top: 30%; right: 0; animation-delay: 1.5s; }
.hero-floating-card:nth-child(3) { bottom: 25%; left: 0; animation-delay: 3s; }
.hero-floating-card:nth-child(4) { bottom: 5%; right: 15%; animation-delay: 4.5s; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 360px; }
  .hero { padding-top: calc(var(--nav-h) + 30px); padding-bottom: 50px; }
  .hero-finder { flex-direction: column; }
  .hero-finder .btn { width: 100%; }
}

/* ==========================================================================
   SERVICES GRID (GoDaddy-style category tiles)
   ========================================================================== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--slate-600); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.section-head .h-eyebrow { margin-bottom: 12px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.service-card.featured {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff;
  border-color: transparent;
}
.service-card.featured h3 { color: #fff; }
.service-card.featured .service-desc { color: #cbd5e1; }
.service-card.featured .service-arrow { background: var(--brand); border-color: var(--brand); }
.service-card.featured .service-arrow svg { color: #fff; }

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.service-ico {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--brand-50);
  color: var(--brand-dark);
  flex-shrink: 0;
}
.service-ico svg { width: 26px; height: 26px; }
.service-card.featured .service-ico { background: rgba(37, 99, 235, 0.15); color: var(--brand); }

.service-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--slate-200);
  display: grid; place-items: center;
  transition: background var(--t), border-color var(--t);
}
.service-arrow svg { width: 16px; height: 16px; color: var(--slate-400); transition: color var(--t); }
.service-card:hover .service-arrow { background: var(--brand); border-color: var(--brand); }
.service-card:hover .service-arrow svg { color: #fff; }

.service-card h3 { font-size: 1.25rem; margin: 0 0 8px; }
.service-desc { font-size: 0.93rem; color: var(--slate-600); margin-bottom: 18px; }
.service-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px;
  border-top: 1px dashed var(--slate-200);
}
.service-card.featured .service-meta { border-color: rgba(255,255,255,0.15); }
.service-price { font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.service-price .unit { font-weight: 500; color: var(--slate-500); font-size: 0.85rem; }
.service-card.featured .service-price { color: #fff; }
.service-card.featured .service-price .unit { color: #94a3b8; }
.service-cat-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
}
.service-card.featured .service-cat-tag { color: var(--brand); }

/* Category pills */
.cat-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 36px;
}
.cat-pill {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid var(--slate-200);
  font-weight: 600;
  font-size: 14px;
  color: var(--slate-700);
  transition: all var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cat-pill:hover { border-color: var(--brand); color: var(--brand-dark); }
.cat-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-pill .dot { width: 7px; height: 7px; border-radius: 50%; }

/* ==========================================================================
   STATS / TRUST
   ========================================================================== */
.stats-band {
  background: var(--ink);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 200px at 10% 50%, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(400px 200px at 90% 50%, rgba(14, 165, 233, 0.10), transparent);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.stat-label { color: #94a3b8; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 6px; }

/* ==========================================================================
   FEATURES — alternating split layout
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}
.split.reverse > :first-child { order: 2; }
.split-visual {
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 360px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.split-list { padding: 0; margin: 20px 0 0; list-style: none; }
.split-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--slate-700);
  font-weight: 500;
  border-bottom: 1px solid var(--slate-100);
}
.split-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse > :first-child { order: initial; }
}

/* ==========================================================================
   PRICING TABLE — GoDaddy style
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.popular {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.price-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-brand);
}
.price-name { font-size: 1.05rem; font-weight: 700; color: var(--slate-600); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.price-amount { font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.price-amount .currency { font-size: 1.4rem; vertical-align: top; }
.price-amount .period { font-size: 0.95rem; color: var(--slate-500); font-weight: 500; }
.price-desc { color: var(--slate-600); margin: 12px 0 22px; font-size: 0.95rem; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; }
.price-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.93rem;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.t-stars svg { width: 18px; height: 18px; color: #f59e0b; fill: #f59e0b; }
.t-quote { color: var(--slate-700); font-size: 1.05rem; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--slate-100); }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 18px;
}
.t-name { font-weight: 700; color: var(--ink); }
.t-role { font-size: 0.85rem; color: var(--slate-500); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open { border-color: var(--brand); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  text-align: left;
  transition: color var(--t);
}
.faq-q:hover { color: var(--brand-dark); }
.faq-q svg { width: 20px; height: 20px; color: var(--brand-dark); transition: transform var(--t); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
  padding: 0 24px;
  color: var(--slate-600);
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 24px 22px; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2942 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(37, 99, 235, 0.20), transparent 60%),
    radial-gradient(500px 250px at 90% 100%, rgba(14, 165, 233, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: #cbd5e1; max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--slate-900);
  color: #cbd5e1;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}
.footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: #94a3b8; font-size: 0.93rem; transition: color var(--t); }
.footer a:hover { color: var(--brand); }
.footer-brand p { font-size: 0.93rem; margin: 14px 0 20px; max-width: 320px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  transition: background var(--t), border-color var(--t);
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 0.86rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-band { padding: 40px 24px; }
}

/* ==========================================================================
   SERVICE PAGE specifics
   ========================================================================== */
.svc-hero {
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 60px;
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(37, 99, 235, 0.10), transparent 60%),
    linear-gradient(180deg, #fff, var(--slate-50));
  position: relative;
}
.svc-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.svc-breadcrumbs { font-size: 0.85rem; color: var(--slate-500); margin-bottom: 18px; }
.svc-breadcrumbs a { color: var(--slate-600); }
.svc-breadcrumbs a:hover { color: var(--brand-dark); }
.svc-breadcrumbs .sep { margin: 0 6px; color: var(--slate-300); }

.svc-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 24px 0 32px; }
.svc-checklist li {
  list-style: none;
  padding-left: 28px;
  position: relative;
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.svc-checklist li::before {
  content: '';
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%;
}

/* Quote card on service hero */
.svc-quote-card {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.svc-quote-card h4 { font-size: 1rem; margin: 0 0 8px; color: var(--slate-500); font-weight: 600; }
.svc-quote-card .big-price { font-size: 2.2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.svc-quote-card .big-price .unit { font-size: 1rem; font-weight: 500; color: var(--slate-500); }
.svc-quote-card .form-row { display: grid; gap: 12px; margin-top: 22px; }
.svc-quote-card input,
.svc-quote-card select {
  width: 100%;
  padding: 13px 14px;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color var(--t), background var(--t);
}
.svc-quote-card input:focus,
.svc-quote-card select:focus { outline: none; border-color: var(--brand); background: #fff; }

@media (max-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-checklist { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.process-step {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  text-align: left;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.process-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 1.1rem; margin: 0 0 8px; }
.process-step p { font-size: 0.92rem; color: var(--slate-600); margin: 0; }

/* ==========================================================================
   ANIMATION REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.hidden { display: none !important; }
.text-brand { color: var(--brand-dark); }
.bg-slate { background: var(--slate-50); }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 40px; }

/* Back to top */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: none;
  place-items: center;
  box-shadow: var(--shadow-brand);
  z-index: 90;
  transition: background var(--t), transform var(--t);
}
.back-top.show { display: grid; }
.back-top:hover { background: var(--brand-dark); transform: translateY(-2px); }
.back-top svg { width: 18px; height: 18px; }

/* Loading state for selects */
.loc-select select[disabled] { opacity: 0.6; cursor: wait; }


/* ===== Aero Pack — blue theme tweaks, logo, SEO blocks, WhatsApp ===== */
.brand-logo{height:42px;width:auto;display:block}
.nav .brand{display:inline-flex;align-items:center}
.brand-logo--footer{height:42px;background:#fff;padding:7px 12px;border-radius:10px}
.svc-quote-card textarea{width:100%;padding:13px 15px;border:1.5px solid var(--slate-200);border-radius:12px;background:var(--slate-50);resize:vertical;font-family:inherit}
.svc-quote-card textarea:focus{outline:none;border-color:var(--brand);background:#fff}
.region-note{font-size:.82rem;color:var(--slate-500);margin-top:12px}
.price-region-note{font-size:.9rem;color:var(--slate-500);text-align:center;max-width:620px;margin:26px auto 0}
/* SEO location interlink grid */
.seo-locations{background:linear-gradient(180deg,#fff,var(--brand-50))}
.seo-loc-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:10px 22px;margin-top:30px}
.seo-loc-grid a{display:flex;align-items:center;gap:8px;padding:9px 12px;border-radius:10px;font-size:.93rem;color:var(--slate-700);background:#fff;border:1px solid var(--slate-200);transition:all var(--t)}
.seo-loc-grid a:hover{border-color:var(--brand);color:var(--brand-dark);background:var(--brand-50);transform:translateX(3px)}
.seo-loc-grid a::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--brand);flex:none}
.seo-related{margin-top:38px;padding-top:28px;border-top:1px solid var(--slate-200)}
.seo-related h3{font-size:1.05rem;margin-bottom:14px}
.seo-related-links{display:flex;flex-wrap:wrap;gap:10px}
.seo-related-links a{padding:8px 15px;border-radius:999px;background:var(--brand-50);color:var(--brand-dark);font-size:.9rem;font-weight:600;border:1px solid var(--brand-100);transition:all var(--t)}
.seo-related-links a:hover{background:var(--brand);color:#fff;border-color:var(--brand)}
.footer-addr{color:#94a3b8;font-size:.93rem;line-height:1.6;margin-top:14px;display:flex;gap:8px;align-items:flex-start}
/* Floating WhatsApp button */
.wa-float{position:fixed;right:18px;bottom:18px;z-index:900;display:inline-flex;align-items:center;gap:9px;background:#25d366;color:#fff;padding:13px 18px;border-radius:999px;font-weight:700;font-size:.95rem;box-shadow:0 10px 30px rgba(37,211,102,.45);transition:transform var(--t)}
.wa-float:hover{transform:translateY(-3px) scale(1.03);color:#fff}
.wa-float svg{width:22px;height:22px}
.cta-form{max-width:560px;margin:26px auto 0;background:#fff;border-radius:18px;padding:24px;display:grid;gap:12px;box-shadow:0 20px 50px rgba(15,23,42,.18);text-align:left}
.cta-form input,.cta-form select,.cta-form textarea{width:100%;padding:13px 15px;border:1.5px solid var(--slate-200);border-radius:12px;background:var(--slate-50);font-family:inherit;color:var(--ink)}
.cta-form input:focus,.cta-form select:focus,.cta-form textarea:focus{outline:none;border-color:var(--brand);background:#fff}
.cta-form .cta-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:560px){.cta-form .cta-form-row{grid-template-columns:1fr}}


/* ===== fix: nav primary button text must stay white (was overridden by .nav-links a) ===== */
.nav-links a.btn-primary, .nav-mobile a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover, .nav-mobile a.btn-primary:hover { color: #fff; }
.nav-links a.btn-outline { color: var(--brand-dark); }


/* ==========================================================================
   Aero Pack — SEO overhaul additions
   Accessibility, blog system, articles, about/contact, sitemap, 404
   ========================================================================== */

/* Skip link (a11y) — visible on keyboard focus only */
.skip-link{position:absolute;left:-999px;top:0;z-index:1000;background:var(--brand);color:#fff;padding:10px 18px;border-radius:0 0 10px 0;font-weight:700;font-size:.9rem}
.skip-link:focus{left:0}

/* Visible focus styles for keyboard users */
a:focus-visible,button:focus-visible,select:focus-visible,input:focus-visible,textarea:focus-visible{outline:3px solid var(--brand);outline-offset:2px;border-radius:6px}

/* Narrow reading column for articles & legal pages */
.container-narrow{max-width:780px}

/* ---------- Blog listing ---------- */
.blog-featured{display:grid;grid-template-columns:1.05fr .95fr;gap:38px;align-items:center;background:#fff;border:1px solid var(--slate-200);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);margin-top:30px}
.blog-featured img{width:100%;height:100%;min-height:280px;object-fit:cover;background:var(--brand-50)}
.blog-featured-body{padding:34px 38px 34px 0}
@media(max-width:820px){.blog-featured{grid-template-columns:1fr}.blog-featured-body{padding:0 24px 30px}}
.blog-featured-body h2{font-size:clamp(1.5rem,3vw,2.1rem);margin:12px 0 12px;line-height:1.2}
.blog-featured-body h2 a:hover{color:var(--brand-dark)}

.blog-filters{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:8px auto 0;max-width:880px}
.cat-pill{padding:9px 18px;border-radius:var(--radius-pill);background:#fff;color:var(--slate-700);font-size:.9rem;font-weight:600;border:1px solid var(--slate-200);transition:all var(--t)}
.cat-pill:hover{border-color:var(--brand);color:var(--brand-dark);background:var(--brand-50)}
.cat-pill.active{background:var(--brand);color:#fff;border-color:var(--brand);box-shadow:var(--shadow-brand)}

.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:28px;margin-top:38px}
.blog-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--slate-200);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform var(--t),box-shadow var(--t),border-color var(--t)}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--brand-100)}
.blog-card img{width:100%;aspect-ratio:1200/630;object-fit:cover;background:var(--brand-50)}
.blog-card-body{padding:22px 24px 24px;display:flex;flex-direction:column;flex:1}
.blog-card-body h3{font-size:1.18rem;line-height:1.3;margin:12px 0 10px}
.blog-card-body .muted{font-size:.95rem;flex:1}
.blog-readmore{display:inline-flex;align-items:center;gap:6px;margin-top:16px;color:var(--brand-dark);font-weight:700;font-size:.9rem}
.blog-readmore svg{width:16px;height:16px;transition:transform var(--t)}
.blog-card:hover .blog-readmore svg{transform:translateX(4px)}

/* Category chip (reused on cards + article hero) */
.post-cat{display:inline-block;align-self:flex-start;padding:5px 13px;border-radius:var(--radius-pill);background:var(--brand-50);color:var(--brand-dark);font-size:.76rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;border:1px solid var(--brand-100)}

/* ---------- Single article ---------- */
.post-hero{padding:46px 0 0}
.post-title{font-size:clamp(1.9rem,4.2vw,3rem);line-height:1.14;margin:16px 0 18px;letter-spacing:-.02em}
.post-meta{display:flex;flex-wrap:wrap;gap:20px;color:var(--slate-500);font-size:.9rem;margin-bottom:30px}
.post-meta span{display:inline-flex;align-items:center;gap:7px}
.post-meta svg{width:16px;height:16px;color:var(--brand)}
.post-cover{width:100%;aspect-ratio:1200/630;object-fit:cover;border-radius:var(--radius-lg);background:var(--brand-50);box-shadow:var(--shadow-md)}

.post-body{padding:44px 0 8px}
.post-body .post-lead{font-size:1.22rem;line-height:1.6;color:var(--slate-700);font-weight:500;margin:0 0 28px}
.post-body h2{font-size:1.6rem;line-height:1.25;margin:40px 0 14px;letter-spacing:-.01em}
.post-body h3{font-size:1.22rem;margin:28px 0 10px}
.post-body p{color:var(--slate-700);margin:0 0 18px;font-size:1.05rem}
.post-body ul,.post-body ol{color:var(--slate-700);margin:0 0 20px;padding-left:4px;list-style:none}
.post-body ol{counter-reset:ap;}
.post-body li{position:relative;padding-left:30px;margin-bottom:11px;font-size:1.05rem;line-height:1.6}
.post-body ul li::before{content:"";position:absolute;left:6px;top:11px;width:8px;height:8px;border-radius:50%;background:var(--brand)}
.post-body ol li{counter-increment:ap;}
.post-body ol li::before{content:counter(ap);position:absolute;left:0;top:1px;width:22px;height:22px;border-radius:50%;background:var(--brand-50);color:var(--brand-dark);font-size:.8rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.post-body a{color:var(--brand-dark);font-weight:600;text-decoration:underline;text-decoration-color:var(--brand-100);text-underline-offset:3px}
.post-body a:hover{text-decoration-color:var(--brand)}
.post-body strong{color:var(--ink)}
.post-body blockquote{margin:26px 0;padding:18px 24px;border-left:4px solid var(--brand);background:var(--brand-50);border-radius:0 12px 12px 0;color:var(--ink-soft);font-size:1.08rem}
.post-checklist li{padding-left:34px}
.post-checklist li::before{content:"✓";position:absolute;left:4px;top:1px;width:20px;height:20px;background:none;color:var(--success);font-weight:800;font-size:1rem}

/* Author box */
.author-box{display:flex;gap:20px;align-items:flex-start;background:#fff;border:1px solid var(--slate-200);border-radius:var(--radius-lg);padding:28px;box-shadow:var(--shadow-sm)}
.author-box p{margin:8px 0 16px;font-size:.97rem}
.author-avatar{flex:none;width:56px;height:56px;border-radius:50%;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.1rem;box-shadow:var(--shadow-brand)}

/* ---------- Contact page ---------- */
.contact-list{list-style:none;padding:0;margin:24px 0 0;display:grid;gap:18px}
.contact-list li{display:flex;gap:16px;align-items:flex-start}
.contact-list li>svg,.contact-list li>i{flex:none;width:46px;height:46px;padding:12px;border-radius:12px;background:var(--brand-50);color:var(--brand-dark);border:1px solid var(--brand-100)}
.contact-list strong{display:block;font-size:1.02rem;margin-bottom:2px}
.contact-list a{color:var(--slate-700)}
.contact-list a:hover{color:var(--brand-dark)}

/* ---------- HTML sitemap ---------- */
.sitemap-cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:30px;margin-top:14px}
.sitemap-col h2{font-size:1.15rem;margin:0 0 14px;padding-bottom:10px;border-bottom:2px solid var(--brand-100)}
.sitemap-col ul{list-style:none;padding:0;margin:0;display:grid;gap:9px}
.sitemap-col a{color:var(--slate-700);font-size:.96rem;display:inline-flex;align-items:center;gap:7px}
.sitemap-col a::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--brand);flex:none}
.sitemap-col a:hover{color:var(--brand-dark)}

/* ---------- 404 ---------- */
.err-wrap{text-align:center;max-width:640px;margin:0 auto;padding:40px 0}
.err-code{font-size:clamp(5rem,16vw,9rem);font-weight:800;line-height:1;background:linear-gradient(120deg,var(--brand),var(--sky));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;letter-spacing:-.04em}
.err-links{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:28px}

@media(max-width:640px){.post-body .post-lead{font-size:1.1rem}.post-body p,.post-body li{font-size:1rem}.post-body h2{font-size:1.4rem}.author-box{flex-direction:column;gap:14px}}
