/* ============================================================
   WebDesignUSA — Main Stylesheet
   Dark theme, electric blue primary, red accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:            hsl(240, 10%, 4%);
  --bg-card:       hsl(240, 10%, 6%);
  --bg-muted:      hsl(240, 10%, 12%);
  --fg:            hsl(0, 0%, 98%);
  --fg-muted:      hsl(240, 5%, 65%);
  --border:        hsl(240, 10%, 12%);
  --primary:       hsl(210, 92%, 56%);
  --primary-fg:    #fff;
  --brand-red:     hsl(0, 82%, 55%);
  --destructive:   hsl(0, 84%, 60%);
  --radius:        0.5rem;
  --font-sans:     'Inter', sans-serif;
  --font-heading:  'Plus Jakarta Sans', sans-serif;
  --container:     1200px;
  --topbar-h:      2rem;
  --navbar-h:      4.5rem;
  --offset-h:      calc(var(--topbar-h) + var(--navbar-h));
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-muted);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); }

/* ── Layout Helpers ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--sm  { max-width: 768px; }
.container--md  { max-width: 896px; }
.container--lg  { max-width: 1024px; }
.container--xl  { max-width: 1280px; }

.section { padding: 6rem 0; }
.section--card { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--sm { padding: 4rem 0; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--fg-muted); }
.text-brand-red { color: var(--brand-red); }

.gradient-text {
  background: linear-gradient(90deg, var(--primary), hsl(210,92%,70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
  border: 1px solid var(--primary);
}
.btn--primary:hover { background: hsl(210,92%,48%); border-color: hsl(210,92%,48%); }
.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid transparent;
}
.btn--ghost:hover { color: var(--fg); background: var(--bg-muted); }
.btn--stripe {
  background: #635bff;
  color: #fff;
  border: 1px solid #635bff;
  margin-bottom: 0.5rem;
}
.btn--stripe:hover { background: #5147e5; border-color: #5147e5; color: #fff; }
.btn--lg { height: 3.5rem; padding: 0 2rem; font-size: 1.125rem; }
.btn--sm { height: 2rem; padding: 0 0.875rem; font-size: 0.8125rem; }

/* ── Top Bar ───────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--topbar-h);
  background: var(--brand-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar a:hover { text-decoration: underline; }

/* ── Admin Bar offset ──────────────────────────────────────── */
.admin-bar .topbar   { top: 32px; }
.admin-bar .navbar   { top: calc(var(--topbar-h) + 32px); }
.admin-bar .page-offset { height: calc(var(--offset-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .topbar   { top: 46px; }
  .admin-bar .navbar   { top: calc(var(--topbar-h) + 46px); }
  .admin-bar .page-offset { height: calc(var(--offset-h) + 46px); }
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 190;
  padding: 0.625rem 0;
  background: rgba(9,9,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 0.375rem 0;
  background: rgba(9,9,16,0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
  flex-shrink: 0;
}
.navbar__logo-img {
  height: 2.75rem;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.navbar__logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
}
.navbar__logo-usa {
  background: linear-gradient(90deg, hsl(210,92%,60%), hsl(0,82%,58%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.navbar__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.navbar__nav a:hover, .navbar__nav a.active { color: var(--fg); }
.navbar__nav .nav-sale {
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-badge {
  background: var(--brand-red);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 0.125rem;
}
.navbar__ctas {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.navbar__toggle {
  display: none;
  padding: 0.5rem;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.375rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  color: var(--fg-muted);
  font-weight: 500;
  transition: all 0.2s;
}
.mobile-nav a:hover { background: var(--bg-muted); color: var(--fg); }
.mobile-nav a.active { background: hsl(210,92%,56%,0.1); color: var(--primary); }
.mobile-nav__phone {
  background: hsl(0,82%,55%,0.1) !important;
  color: var(--brand-red) !important;
  font-weight: 600 !important;
}
.mobile-nav__divider { border-top: 1px solid var(--border); margin: 0.5rem 0; }
.mobile-nav__ctas { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav__ctas .btn { width: 100%; justify-content: center; }

/* Page offset — pushes content below fixed topbar + navbar */
.page-offset {
  height: var(--offset-h);
  display: block;
}

/* ── Floating Action Buttons ───────────────────────────────── */
.floating-btn--facebook{
    background:#1877f2;
}

.floating-btn--facebook:hover{
    background:#1664d9;
}
.floating-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: all 0.2s;
  white-space: nowrap;
}
.floating-btn svg { width: 1.375rem; height: 1.375rem; flex-shrink: 0; }
.floating-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); color: #fff; }
.floating-btn--whatsapp { background: #25d366; }
.floating-btn--whatsapp:hover { background: #1fb557; }
.floating-btn--call { background: var(--primary); }
.floating-btn--call:hover { background: hsl(210,92%,48%); }
.floating-btn__label { letter-spacing: 0.01em; }

@keyframes float-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 8px rgba(37,211,102,0); }
}
.floating-btn--whatsapp { animation: float-pulse 2.5s infinite; }

@media (max-width: 480px) {
  .floating-btns { bottom: 1rem; right: 1rem; }
  .floating-btn__label { display: none; }
  .floating-btn { padding: 0.875rem; }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  text-decoration: none;
  color: var(--fg);
}
.footer__logo-img {
  height: 2.25rem;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.footer__tagline { color: var(--fg-muted); font-size: 0.875rem; margin-bottom: 1.5rem; }
.footer__contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--fg-muted);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--primary); }
.footer__contact address { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--fg-muted); font-style: normal; }
.footer__heading { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; margin-bottom: 1.5rem; }
.footer__links { display: flex; flex-direction: column; gap: 1rem; }
.footer__links a { font-size: 0.875rem; color: var(--fg-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p, .footer__bottom a { font-size: 0.875rem; color: var(--fg-muted); }
.footer__bottom a:hover { color: var(--primary); }
.footer__legal { display: flex; gap: 1rem; }

/* ── Hero Slider ───────────────────────────────────────────── */
.hero-slider {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slider__slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(9,9,16,0.78);
  z-index: 1;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, hsl(210,92%,56%,0.14), transparent 60%);
  z-index: 2;
}
.hero-slider__content { position: relative; z-index: 10; }
.hero-slider__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.hero-slider h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
}
.hero-slider p { font-size: 1.25rem; color: var(--fg-muted); max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.hero-trust span { display: flex; align-items: center; gap: 0.5rem; }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.slider-btn {
  width: 2rem; height: 2rem;
  border-radius: 9999px;
  background: rgba(9,9,16,0.6);
  border: 1px solid var(--border);
  color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.slider-btn:hover { border-color: var(--primary); }
.slider-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 9999px;
  background: hsl(240,5%,65%,0.5);
  transition: all 0.3s;
  border: none;
}
.slider-dot.active { background: var(--primary); width: 1.25rem; }

/* ── Section Headers ───────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.section-desc { font-size: 1.125rem; color: var(--fg-muted); max-width: 40rem; margin: 0 auto; line-height: 1.7; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: hsl(210,92%,56%,0.4); }
.card--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 50px -10px hsl(210,92%,56%,0.4);
}
.card__icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius);
  background: hsl(210,92%,56%,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card__icon--red { background: hsl(0,84%,60%,0.1); color: var(--destructive); }
.card__icon svg { width: 1.375rem; height: 1.375rem; }
.card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ── Grid Layouts ──────────────────────────────────────────── */
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; align-items: start; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.grid-5col { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

/* ── Pricing Cards ─────────────────────────────────────────── */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 50px -10px hsl(210,92%,56%,0.4);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: 0; right: 2rem;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}
.pricing-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-desc { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 2rem; }
.pricing-amount { font-size: 2.5rem; font-weight: 800; }
.pricing-period { font-size: 0.875rem; color: var(--fg-muted); }
.pricing-features { list-style: none; flex: 1; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.pricing-features li svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.pricing-features li.pricing-no { color: var(--fg-muted); }
.pricing-features li.pricing-no svg { color: hsl(240,5%,65%,0.4); }

/* ── Testimonial Cards ─────────────────────────────────────── */
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: #eab308; }
.stars svg { width: 1.125rem; height: 1.125rem; fill: currentColor; }
.testimonial blockquote { font-style: italic; color: var(--fg-muted); font-size: 1rem; line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 2.75rem; height: 2.75rem; border-radius: 9999px; border: 1px solid var(--border); object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 0.875rem; }
.testimonial-role { font-size: 0.75rem; color: var(--fg-muted); }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: hsl(210,92%,56%,0.3); }
.faq-item.open { border-color: hsl(210,92%,56%,0.4); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  gap: 1rem;
  user-select: none;
}
.faq-question svg { flex-shrink: 0; color: var(--fg-muted); transition: transform 0.25s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-answer {
  display: none;
  padding: 1rem 1.5rem 1.25rem;
  color: var(--fg-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
}
.faq-item.open .faq-answer { display: block; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-error { font-size: 0.75rem; color: var(--destructive); margin-top: 0.375rem; display: none; }
.form-success {
  text-align: center;
  padding: 3rem;
}
.form-success__icon {
  width: 5rem; height: 5rem;
  border-radius: 9999px;
  background: hsl(210,92%,56%,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}
.form-success__icon svg { width: 2.5rem; height: 2.5rem; }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 3rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.stat-label { font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.375rem; }
.stat-desc { font-size: 0.875rem; color: var(--fg-muted); }

/* ── Benefit List ──────────────────────────────────────────── */
.benefit-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}
.benefit-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius);
  background: hsl(210,92%,56%,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.benefit-icon svg { width: 1.25rem; height: 1.25rem; }
.benefit-text { font-weight: 500; }

/* ── Checklist ─────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.checklist li svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; width: 1rem; height: 1rem; }

/* ── Hero Section (non-slider) ─────────────────────────────── */
.hero-page {
  padding: 6rem 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-page h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 1.5rem; }
.hero-page p { font-size: 1.25rem; color: var(--fg-muted); max-width: 40rem; margin: 0 auto; }

/* ── Page Hero (with image bg) ─────────────────────────────── */
.hero-image {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  text-align: center;
}
.hero-image__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-image__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,16,0.75), var(--bg));
}
.hero-image__content { position: relative; z-index: 10; }

/* ── Process Steps ─────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
}
.process-step__num { font-size: 2.5rem; font-weight: 800; color: var(--border); margin-bottom: 0.75rem; }
.process-step h3 { font-size: 0.9375rem; font-weight: 600; }
.process-arrow {
  position: absolute;
  right: -0.75rem; top: 50%;
  transform: translateY(-50%);
  color: var(--fg-muted);
  z-index: 10;
}

/* ── Contact Layout ────────────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--primary); }
.contact-card__icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius);
  background: hsl(210,92%,56%,0.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 1.5rem; height: 1.5rem; }
.contact-card__icon--green { background: hsl(142,76%,36%,0.1); color: #22c55e; }
.contact-card__title { font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.25rem; }
.contact-card__detail { font-size: 0.875rem; color: var(--fg-muted); }

/* ── Portfolio Cards ───────────────────────────────────────── */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.portfolio-card:hover { border-color: hsl(210,92%,56%,0.4); transform: translateY(-2px); }
.portfolio-card__img {
  aspect-ratio: 16/10;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(240,5%,65%,0.3);
  position: relative;
  overflow: hidden;
}
.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.04); }
.portfolio-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(9,9,16,0.85);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
}
.portfolio-card__body { padding: 1.5rem; flex: 1; }
.portfolio-card__cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); margin-bottom: 0.5rem; }
.portfolio-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.portfolio-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ── Service Cards (on Services page) ─────────────────────── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.service-card:hover { border-color: hsl(210,92%,56%,0.5); box-shadow: 0 8px 32px hsl(210,92%,56%,0.05); }
.service-card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__tag {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.service-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.service-card h2 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; transition: color 0.2s; }
.service-card:hover h2 { color: var(--primary); }
.service-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }

/* ── Comparison Table ──────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.compare-table thead { background: var(--bg-muted); }
.compare-table th { font-weight: 700; }
.compare-table td:not(:first-child) { text-align: center; border-left: 1px solid var(--border); }
.compare-table tr:hover { background: hsl(240,10%,12%,0.3); }
.compare-table .col-featured { background: hsl(210,92%,56%,0.05); }

/* ── Tags ──────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.75rem;
  background: hsl(210,92%,56%,0.1);
  color: var(--primary);
  border: 1px solid hsl(210,92%,56%,0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 6rem 0;
}
.cta-banner h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.cta-banner p { font-size: 1.125rem; color: var(--fg-muted); margin-bottom: 2.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-banner__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Availability Banner ───────────────────────────────────── */
.avail-banner {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  text-align: center;
}
.avail-banner__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  max-width: 60rem; margin: 0 auto;
  font-size: 0.875rem;
}
.avail-banner strong { font-weight: 600; }
.spot-dots { display: flex; gap: 0.25rem; align-items: center; }
.spot-dot {
  width: 1.25rem; height: 0.625rem;
  border-radius: 9999px;
  transition: background 0.3s;
}
.spot-dot.taken { background: var(--brand-red); }
.spot-dot.open  { background: var(--primary); }

/* ── Notice banner ─────────────────────────────────────────── */
.notice-bar {
  background: var(--brand-red);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.875rem;
}
.notice-bar a { color: #fff; text-decoration: underline; }

/* ── Map ───────────────────────────────────────────────────── */
.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.map-wrapper iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ── Blob animation ────────────────────────────────────────── */
@keyframes blob1 { 0%,100%{transform:translate(0,0)scale(1)} 33%{transform:translate(30px,-50px)scale(1.1)} 66%{transform:translate(-20px,20px)scale(0.9)} }
@keyframes blob2 { 0%,100%{transform:translate(0,0)scale(1)} 33%{transform:translate(-50px,30px)scale(0.9)} 66%{transform:translate(20px,-20px)scale(1.1)} }
@keyframes blob3 { 0%,100%{transform:translate(0,0)scale(1)} 33%{transform:translate(20px,20px)scale(1.2)} 66%{transform:translate(-30px,-30px)scale(0.8)} }
.blob { position: absolute; border-radius: 9999px; filter: blur(80px); opacity: 0.5; pointer-events: none; }
.blob--1 { animation: blob1 7s infinite ease-in-out; background: hsl(210,92%,56%,0.3); }
.blob--2 { animation: blob2 8s infinite ease-in-out; background: hsl(270,60%,50%,0.3); }
.blob--3 { animation: blob3 9s infinite ease-in-out; background: hsl(0,82%,55%,0.2); }

/* ── Tabs (Portfolio) ──────────────────────────────────────── */
.tabs__nav {
  display: flex;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.375rem;
  gap: 0.25rem;
  margin-bottom: 3rem;
  width: fit-content;
  margin-left: auto; margin-right: auto;
}
.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active {
  background: var(--primary);
  color: var(--primary-fg);
}
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── Why Section list ──────────────────────────────────────── */
.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.why-item svg { color: var(--primary); flex-shrink: 0; }

/* ── ROI insight box ───────────────────────────────────────── */
.insight-box {
  background: hsl(210,92%,56%,0.05);
  border: 1px solid hsl(210,92%,56%,0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ── Sticky tab nav (Sale page) ─────────────────────────────── */
.sticky-nav {
  position: sticky;
  top: var(--offset-h);
  z-index: 40;
  background: var(--bg-card);
  border-bottom: 1px solid hsl(240,10%,12%,0.6);
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* ── Trust Badges ──────────────────────────────────────────── */
.trust-badges {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  font-size: 0.875rem;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.375rem;
  color: #4ade80;
  font-weight: 500;
}
.trust-badge svg { width: 1rem; height: 1rem; }

/* ── Inline SVG icons helper ───────────────────────────────── */
.icon { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
.icon--xl { width: 2rem; height: 2rem; }
.icon--check { fill: currentColor; stroke: none; }

/* ── Legal pages ───────────────────────────────────────────── */
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-content h3 { font-size: 1.125rem; margin-top: 1.5rem; margin-bottom: .75rem; }
.legal-content p { color: var(--fg-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { display: flex; flex-direction: column; gap: .5rem; margin: 1rem 0 1.5rem 1.25rem; list-style: disc; }
.legal-content ul li { color: var(--fg-muted); line-height: 1.7; font-size: .9375rem; }
.legal-content a { color: var(--primary); }
.legal-content a:hover { text-decoration: underline; }
.legal-content code { background: var(--bg-muted); padding: .125rem .375rem; border-radius: .25rem; font-size: .875rem; }

/* ── 404 ───────────────────────────────────────────────────── */
.notfound { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1rem; }
.notfound h1 { font-size: 8rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 1rem; }
.notfound h2 { font-size: 2rem; margin-bottom: 1rem; }
.notfound p { color: var(--fg-muted); font-size: 1.125rem; margin-bottom: 2rem; }

/* ── Utilities ─────────────────────────────────────────────── */
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.pt-8  { padding-top: 2rem; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.border-top { border-top: 1px solid var(--border); }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.shrink-0 { flex-shrink: 0; }
.hidden { display: none !important; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.rounded-full { border-radius: 9999px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar__nav, .navbar__ctas { display: none; }
  .navbar__toggle { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-arrow { display: none; }
  .grid-5col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --topbar-h: 2.25rem; }
  .grid-2, .grid-3, .grid-2-3, .grid-3-2, .stats-strip { grid-template-columns: 1fr; }
  .stats-strip .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-strip .stat-item:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .tab-panel.active { grid-template-columns: 1fr 1fr; }
  .grid-5col { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__ctas { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  :root { --topbar-h: 2.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .grid-5col { grid-template-columns: 1fr 1fr; }
  .footer__legal { flex-direction: column; gap: 0.5rem; }
}

/* ── WP Core Compatibility ─────────────────────────────────── */
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption-text { font-size: 0.875rem; color: var(--fg-muted); text-align: center; margin-top: 0.5rem; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }

.btn--secondary{
    background:#25D366;
    color:#fff;
    border:1px solid #25D366;
    transition:all .3s ease;
}

.btn--secondary:hover{
    background:#22c35d;
    border-color:#22c35d;
    color:#fff;
    transform:translateY(-2px);
}
