:root {
  --bg-page: #020617;
  --bg-card: #020617;
  --bg-card-light: #0b1220;

  --text-main: #0f172a;
  --text-on-dark: #e5e7eb;
  --text-muted: #6b7280;
  --accent: #2563eb;
  --accent-soft: #93c5fd;
  --border-subtle: rgba(148, 163, 184, 0.25);

  --radius-xl: 32px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.3);
  --shadow-pill: 0 8px 20px rgba(15, 23, 42, 0.25);
  --transition-base: 180ms ease-out;
}

/* GLOBAL RESET & BASE */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-page); /* solid dark blue everywhere */
  color: var(--text-main);
}


body {
  min-height: 100vh;
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

/* NAV */

header.nav {
  background: #020617;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.nav-brand-text {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e5e7eb;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  color: #cbd5f5;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Pills that sit under the nav on demo pages */
.nav-pill,
.nav-pill-demo {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.26), transparent 60%),
    rgba(15, 23, 42, 0.96);
  box-shadow: 0 16px 40px rgba(15,23,42,0.85);
}

.nav-pill-dot,
.nav-pill-demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

/* Shared pill bar */
.page-pill-bar {
  max-width: 1120px;
  margin: 8px auto 0;
  padding: 0 24px 8px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    padding: 10px 16px;
  }

  .page-pill-bar {
    padding: 0 16px 8px;
  }
}

/* Top-of-page pill row (for demo pages) */
.page-pill-bar {
  max-width: 1120px;
  margin: 8px auto 0;
  padding: 0 24px 8px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .page-pill-bar {
    padding: 0 16px 8px;
  }
}


/* GENERAL TYPOGRAPHY & SECTIONS */

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
  line-height: 1.6;
}

.section {
  margin-top: 40px;
}

.section-card {
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.25), transparent 60%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 60%),
    #f9fafb;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(22px);
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 163, 184, 0.25),
    transparent
  );
  margin: 40px 0 8px;
}

.section-heading {
  font-size: 1.8rem;
  color: #e5e7eb;
  margin-bottom: 18px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 0.98rem;
  color: rgba(209, 213, 219, 0.86);
  margin-bottom: 26px;
}

/* HERO */

.hero {
  margin-top: 8px;
  background:
    radial-gradient(circle at top right, rgba(129, 140, 248, 0.42), transparent 55%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.2), transparent 55%),
    #f9fafb;
  border-radius: 40px;
  padding: 40px 40px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 0, rgba(148, 163, 184, 0.16) 0, transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.18) 0, transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.75;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

.hero-logo {
  margin-bottom: 12px;
}

.hero-logo img {
  width: 340px;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-tagline {
  font-size: 1.02rem;
  font-weight: 400;
  color: rgba(30, 41, 59, 0.82);
  max-width: 32rem;
  margin-bottom: 24px;
}

 @media (max-width: 640px) {
  .hero-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
  }

  .hero-contact-secondary {
    text-align: center;
  }
}


.btn-primary {
  position: relative;
  border: none;
  cursor: pointer;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  color: #ffffff;
  background: var(--accent); /* flat color */
  box-shadow: var(--shadow-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent); /* still the trade accent */
  opacity: 0.92;             /* tiny visual change on hover */
}

.btn-secondary {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.9);
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1f2933;
  background: rgba(249, 250, 251, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: #e5edff;
  border-color: #6366f1;
  box-shadow: 0 16px 40px rgba(129, 140, 248, 0.35);
}

.hero-cta-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0;
}

.hero-price-note {
  font-size: 0.86rem;
  color: #9ca3af;
  margin-top: 2px;
}

.hero-side {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pill {
  background: linear-gradient(135deg, #0b1120 0%, #0f172a 100%);
  color: #f9fafb;
  padding: 26px 38px;
  border-radius: 20px;
  max-width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  margin-top: 30px;
}

.hero-pill-header {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 6px;
}

.hero-pill-main {
  font-size: 0.99rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-pill-sub {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 8px;
}

/* WHAT WE DO */

.what-we-do-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 26px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: var(--shadow-soft);
  color: var(--text-on-dark);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(129, 140, 248, 0.5);
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.92rem;
  color: #9ca3af;
}

.what-we-do-card:hover {
  transform: translateY(-4px);
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(129, 140, 248, 0.8);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.8);
}

/* WHY CHOOSE US */

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.98rem;
  color: #111827;
}

.why-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 0, #bfdbfe, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.6),
    0 16px 35px rgba(37, 99, 235, 0.45);
  color: #e5e7eb;
  font-size: 0.78rem;
}

.why-footnote {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #4b5563;
}

.why-circle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-circle {
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 0, rgba(129, 140, 248, 0.5), transparent 55%),
    var(--bg-page);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e5e7eb;
  padding: 24px;
  border: 1px solid rgba(129, 140, 248, 0.65);
}

.why-circle-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 4px;
}

.why-circle-text {
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* TESTIMONIALS */

.testimonials-card {
  background: var(--bg-page);
  border-radius: var(--radius-xl);
  padding: 26px 28px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-on-dark);
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.testimonial {
  background: var(--bg-page);
  border-radius: 18px;
  padding: 16px 18px 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.testimonial:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
}

.stars {
  color: #60a5fa;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.quote-text {
  font-style: italic;
  font-size: 0.96rem;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.quote-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.quote-caption {
  font-size: 0.82rem;
  color: #9ca3af;
}

.testimonials-footer-cta {
  margin-top: 18px;
  font-size: 0.9rem;
  text-align: center;
  color: #e5e7eb;
}

.testimonials-footer-cta a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* QUOTE / FORM */

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: flex-start;
}

.quote-card {
  background: #f9fafb;
  border-radius: var(--radius-xl);
  padding: 26px 26px 22px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

.quote-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--bg-page);
}

.quote-intro {
  font-size: 0.96rem;
  color: #4b5563;
  margin-bottom: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.86rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 2px;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #ffffff;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    transform var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5);
  background: #f9fafb;
  transform: translateY(-1px);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.field-help {
  font-size: 0.78rem;
  color: #9ca3af;
}

.quote-secondary {
  background: var(--bg-page);
  border-radius: var(--radius-xl);
  padding: 24px 24px 20px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #e5e7eb;
  box-shadow: var(--shadow-soft);
}

.quote-secondary h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.how-steps {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: #d1d5db;
}

.how-steps li {
  margin-bottom: 6px;
}

.how-steps strong {
  font-weight: 600;
  color: #e5e7eb;
}

.quote-secondary-foot {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #9ca3af;
}

/* FORM MESSAGES */

.form-success {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.85rem;
  border: 1px solid #86efac;
}

.form-error {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.85rem;
  border: 1px solid #fecaca;
}

/* FOOTER */

footer {
  margin-top: 26px;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

/* STICKY MOBILE CTA */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 16px 14px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), var(--bg-page));
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  display: none;
}

.sticky-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky-cta-text {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.sticky-btn {
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.7);
}

.sticky-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 22px 26px;
    border-radius: 30px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-cta-row {
    justify-content: center;
    align-items: center;
  }

  .hero-side {
    justify-content: center;
    margin-top: 18px;
  }

  .hero-pill {
    margin: 0 auto;
  }

  .what-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-circle-wrap {
    justify-content: center;
    margin-top: 18px;
  }

  .quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 20px 16px 96px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .section-card {
    padding: 22px 18px 22px;
  }

  .what-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-circle {
    width: 200px;
    height: 200px;
  }

  .testimonials-card {
    padding: 22px 18px;
  }

  .sticky-cta {
    display: block;
  }

  .hero-logo {
    max-width: 250px;
    margin: 0 auto 20px;
    display: block;
  }
}
.service-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
}

.service-icon {
    width: 22px;
    height: 22px;
    opacity: 0.85;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.service-text-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* =============================== */
/*   HERO IMPROVEMENTS — OVERRIDES */
/* =============================== */

/* Shift hero content downward */
.hero {
    padding-top: 28px;
    padding-bottom: 72px;
     border-radius: 32px;
}

/* Center + control the vertical spacing more predictably */
.hero-cta-row {
    margin-top: 26px;
    margin-bottom: 20px;
}

.hero {
    border-radius: 32px;
    padding-top: 28px;
    padding-bottom: 72px;
}

.btn-primary {
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}

.hero-cta-note {
    font-size: 0.94rem;
    font-weight: 500;
    color: #55637a;
    margin-top: 14px;
    margin-bottom: 4px;
    text-align: center;
    max-width: 26rem;
}

/* SECTION-SPECIFIC HOOKS – for future tweaks */

.section--services {
  /* Dark section with pill cards – currently fine, hook here if we ever need spacing tweaks */
}

/* Headings on light card sections */
.section-card .section-heading {
  color: #0f172a;   /* dark slate */
}

.section-card .section-subtitle {
  color: #4b5563;   /* medium slate */
}

.section--results {
  /* Testimonials section – dark background, glowing cards */
}

.section--quote {
  /* Quote form + process sidebar – light/dark split */
}

/* ============================================
   Trade demo layout + components
   ============================================ */

/* Shell around the whole demo page */
.demo-shell {
    max-width: 1120px;
    margin: 20px auto 40px;
    padding: 0 20px 40px;
}

/* Each section on the demo page */
.section.demo-section-shell {
    margin-top: 26px;
}

/* Kicker + heading system */
.demo-section-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    opacity: 0.9;
}

.demo-section-kicker.light {
    color: #9ca3af;
}

.demo-section-kicker.dark {
    color: #cbd5f5;
}

.demo-section-heading {
    font-size: 1.45rem;          /* ~23px, above 18px card titles */
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.demo-section-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 2px 0 16px;
}

.demo-section-sub.light {
    color: #4b5563;   /* muted dark on light cards */
}

.demo-section-sub.dark {
    color: #cbd5f5;   /* soft light on dark cards */
}

/* ============================================
   Trade demo shell + hero
   ============================================ */

.demo-shell {
    max-width: 1120px;
    margin: 20px auto 40px;
    padding: 0 20px 40px;
}

/* HERO (own class so we do not fight the main hero on index.php) */
.demo-hero {
    margin-top: 22px;
    background: var(--bg-hero);
    border-radius: 32px;
    padding: 26px 22px 26px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
}

/* Left side content */
.demo-hero-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1d4ed8;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(191, 219, 254, 0.9);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.demo-hero-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #020617;
}

.demo-hero-sub {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 32rem;
}

.demo-hero-bullets {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 10px;
    font-size: 0.86rem;
}

.demo-hero-bullet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(209, 213, 219, 0.95);
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.4);
}

.demo-hero-bullet-check {
    font-size: 0.78rem;
    font-weight: 700;
    color: #16a34a;
}

.demo-hero-bullet-text {
    font-size: 0.8rem;
    color: #4b5563;
}

/* Right side contact content */
.demo-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #6b7280;
}

.demo-hero-right strong {
    color: #020617;
}

.demo-hero-contact {
    margin-top: 18px;
}

.demo-contact-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 16px 18px 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(209, 213, 219, 0.9);
    text-align: center;
}

.demo-contact-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #020617;
}

.demo-contact-sub {
    font-size: 0.86rem;
    margin-top: 2px;
    color: #4b5563;
}

.demo-contact-line {
    font-size: 0.8rem;
    margin-top: 6px;
    color: #6b7280;
}

.demo-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        opacity var(--transition-base);
}

.demo-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.5);
    opacity: 0.96;
}

.demo-contact-email {
    margin-top: 6px;
    font-size: 0.8rem;
}

.demo-contact-email a {
    color: #2563eb;
}

/* Mobile adjustments for hero */
@media (max-width: 960px) {
    .demo-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 18px 24px;
    }

    .demo-hero-bullets {
        justify-content: center;
    }
}

/* Base card shapes for demo sections (marketing can still use its own) */
.demo-services-card,
.demo-process-card,
.demo-reviews-card,
.demo-faq-card {
    border-radius: 32px;
    padding: 22px 20px 22px;
}

/* Light cards: services + reviews */
.demo-services-card,
.demo-reviews-card {
    background: #f9fafb;
    border: 1px solid rgba(148,163,184,0.45);
}

/* Dark cards: process + FAQ */
.demo-process-card,
.demo-faq-card {
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(148,163,184,0.45);
    color: #e5e7eb;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.demo-services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 12px;
}

.demo-service {
    border-radius: 22px;
    padding: 18px 22px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(15,23,42,0.06),
                0 8px 20px rgba(15,23,42,0.04);
}

/* Two-column layout: icon lane | text lane */
.demo-services-card .service-header {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 14px;
    align-items: center;
}

.demo-services-card .service-icon-chip-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Icon wrapper circle */
.demo-services-card .service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 1px solid var(--borderSoft);
    background: var(--bgCardSoft);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The actual SVG icon */
.demo-services-card .service-icon {
    width: 40px;
    height: 40px;
    display: block;
}

/* Right-hand column text */
.demo-services-card .service-text-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-services-card .demo-service-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: -2px 0 0; /* tiny visual pull upwards */
    color: var(--textMain);
}

.demo-services-card .demo-service-body {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: var(--textMuted);
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.demo-process-card {
    color: #e5e7eb;
}

.demo-process-intro {
    font-size: 0.95rem;
    color: #cbd5f5;
    margin-bottom: 16px;
}

.demo-process-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-process-step {
    border-radius: 22px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(148,163,184,0.28);
    background: rgba(15,23,42,0.9);
}

/* Accent line at top of each step */
.demo-process-step::before {
    content: "";
    display: block;
    height: 2px;
    width: 55px;
    background: var(--accent);
    border-radius: 999px;
    margin-bottom: 12px;
}

.demo-process-step-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 4px;
}

.demo-process-step-title {
    font-size: 1rem;
    font-weight: 650;
    margin-bottom: 6px;
    color: #e5e7eb;
}

.demo-process-step-body {
    font-size: 0.95rem;
    color: #cbd5f5;
    line-height: 1.5;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.demo-reviews-card {
    /* uses light card base */
}

.demo-reviews-list,
.demo-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.demo-review {
    border-radius: 16px;
    background: #f3f4f6;
    padding: 10px 14px;
}

.demo-review-stars {
    font-size: 14px;
    margin-bottom: 4px;
    color: #f59e0b;
}

.demo-review-text {
    font-size: 0.9rem;
    color: #111827;
    margin: 0 0 4px;
}

.demo-review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.demo-review-location {
    font-weight: 400;
    color: #6b7280;
}

/* ============================================
   FAQ SECTION – matches PROCESS style
   ============================================ */

.demo-faq-card {
    /* dark card base already applied */
}

.demo-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.demo-faq-item {
    border-radius: 22px;
    padding: 18px 18px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(148,163,184,0.28);
    position: relative;
}

/* Accent line at top of each FAQ item */
.demo-faq-item::before {
    content: "";
    display: block;
    height: 2px;
    width: 55px;
    background: var(--accent);
    border-radius: 999px;
    margin-bottom: 12px;
}

.demo-faq-question {
    font-size: 1rem;
    font-weight: 650;
    color: #e5e7eb;
    margin-bottom: 6px;
}

.demo-faq-answer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cbd5f5;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    border-radius: 32px;
    padding: 22px 20px 24px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.45);
    text-align: center;
    color: #e5e7eb;
}

.final-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.final-sub {
    font-size: 0.95rem;
    margin: 0 0 18px;
    color: #cbd5f5;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Reuse the main demo button style but make sure it looks like a pill CTA here */
.final-cta .demo-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15,23,42,0.4);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        opacity var(--transition-base);
}

.final-cta .demo-btn-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(15,23,42,0.55);
    opacity: 0.97;
}

/* ============================================
   BACK LINK TO DEMO GENERATOR
   ============================================ */

.demo-back-link {
    margin: 28px 0 0;
    text-align: center;
}

.demo-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(59,130,246,0.35);
    background: rgba(59,130,246,0.10);
    color: var(--accent);
}

.demo-back-btn:hover {
    background: rgba(59,130,246,0.18);
}
