/* =========================================================
   Dream&Build LLC — Modern theme (homepage v2)
   Palette anchored to the logo: teal-cyan + indigo-blue
   ========================================================= */

:root {
  --m-teal:        #0d9488;
  --m-teal-light:  #14b8a6;
  --m-teal-deep:   #0f766e;
  --m-indigo:      #4f46e5;
  --m-indigo-light:#6366f1;
  --m-amber:       #f59e0b;
  --m-amber-soft:  #fbbf24;

  --m-ink:         #0a0e1a;        /* near-black with cool cast */
  --m-ink-2:       #111827;
  --m-ink-3:       #1f2937;
  --m-line-dark:   rgba(255,255,255,0.08);
  --m-line-dark-2: rgba(255,255,255,0.14);

  --m-paper:       #fafaf9;
  --m-paper-2:     #f5f5f4;
  --m-line:        #e7e5e4;
  --m-line-2:      #d6d3d1;
  --m-text:        #111827;
  --m-text-2:      #4b5563;
  --m-text-3:      #6b7280;

  --m-brand-grad:  linear-gradient(135deg, #0d9488 0%, #4f46e5 100%);
  --m-brand-grad-soft: linear-gradient(135deg, rgba(13,148,136,0.18) 0%, rgba(79,70,229,0.18) 100%);
}

/* ==== Body baseline (homepage only — uses same body but layered) ==== */
body {
  background: var(--m-paper);
  color: var(--m-text);
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  -webkit-font-smoothing: antialiased;
}

/* ==== Brand gradient text (replaces .gradient-text on this page) ==== */
.brand-gradient-text {
  background: var(--m-brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ==== Section eyebrows ==== */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--m-teal);
  margin-bottom: 16px;
}
.section-header-dark .section-eyebrow { color: var(--m-teal-light); }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header-dark h2 { color: white; }
.section-lead {
  font-size: 1.1rem;
  color: var(--m-text-2);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.section-header-dark .section-lead { color: rgba(255,255,255,0.72); }

/* ==== Sections (light/dark backgrounds for rhythm) ==== */
.section-light {
  padding: 120px 24px;
  background: var(--m-paper);
  position: relative;
}
.section-tight { padding: 100px 24px; }
.section-dark {
  padding: 120px 24px;
  background: var(--m-ink);
  color: white;
  position: relative;
  overflow: hidden;
}

/* ==========================================================
   NAVBAR — dark, glassy, sticks to the top of the dark hero
   ========================================================== */
.navbar.navbar-dark {
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--m-line-dark);
  box-shadow: none;
}
.navbar.navbar-dark .nav-container {
  padding: 14px 24px;
}

/* Brand lockup: logo + wordmark, sized for real presence */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.brand-lockup:hover { opacity: 0.85; }
.navbar.navbar-dark .brand-lockup .logo-image {
  height: 120px;
  width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-wordmark-main {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.brand-wordmark-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--m-teal-light);
  margin-top: 5px;
}
.theme-amber .brand-wordmark-sub {
  color: var(--m-amber-soft);
}

/* Service toggle on dark */
.service-toggle-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--m-line-dark);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}
.service-toggle-dark .service-toggle-btn {
  color: rgba(255,255,255,0.65);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  background: transparent;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.service-toggle-dark .service-toggle-btn:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}
.service-toggle-dark .service-toggle-btn.active {
  background: var(--m-brand-grad);
  color: white;
  box-shadow: 0 4px 14px rgba(13,148,136,0.4);
}

/* Nav links on dark */
.nav-links-dark a {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav-links-dark a:hover { color: white; }

/* ==========================================================
   BUTTONS — modern, tactile
   ========================================================== */
.btn.btn-primary-modern {
  background: var(--m-brand-grad);
  color: white;
  font-weight: 600;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 14px rgba(13,148,136,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn.btn-primary-modern::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.btn.btn-primary-modern:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn.btn-primary-modern.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn.btn-ghost-modern {
  background: transparent;
  color: white;
  border: 1px solid var(--m-line-dark-2);
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.btn.btn-ghost-modern:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}
.btn.btn-ghost-modern.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }

.btn.btn-ghost-light {
  background: transparent;
  color: var(--m-text);
  border: 1px solid var(--m-line-2);
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.btn.btn-ghost-light:hover {
  background: var(--m-paper-2);
  border-color: var(--m-text-3);
  transform: translateY(-1px);
}

.btn.btn-ghost-dark {
  background: transparent;
  color: white;
  border: 1px solid var(--m-line-dark-2);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.btn.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}

/* ==========================================================
   HERO — dark, ambient, grid + blobs
   ========================================================== */
.hero-modern {
  position: relative;
  background: var(--m-ink);
  color: white;
  overflow: hidden;
  padding: 180px 24px 120px;
  isolation: isolate;
}

.hero-modern-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--m-line-dark-2);
  color: rgba(255,255,255,0.78);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--m-teal-light);
  box-shadow: 0 0 12px var(--m-teal-light);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.hero-modern-title {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 24px;
  color: white;
}
.hero-modern-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-modern-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Mini venture tags under hero */
.hero-ventures-mini {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--m-line-dark);
  margin-top: 20px;
}
.hero-mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--m-line-dark);
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.hero-mini-tag:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: white;
  transform: translateY(-1px);
}
.hero-mini-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-cloud      { background: linear-gradient(135deg, var(--m-teal), var(--m-indigo)); box-shadow: 0 0 10px rgba(13,148,136,0.6); }
.dot-consulting { background: linear-gradient(135deg, var(--m-indigo), var(--m-indigo-light)); box-shadow: 0 0 10px rgba(79,70,229,0.6); }
.dot-foot       { background: linear-gradient(135deg, var(--m-amber), var(--m-amber-soft)); box-shadow: 0 0 10px rgba(245,158,11,0.6); }

/* Hero blobs — soft ambient color */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.hero-blob-1 {
  width: 560px; height: 560px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(13,148,136,0.65) 0%, transparent 70%);
}
.hero-blob-2 {
  width: 520px; height: 520px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(79,70,229,0.55) 0%, transparent 70%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85) 0%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================
   VENTURES — modern card grid (light section)
   ========================================================== */
.ventures-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.venture-card-modern {
  position: relative;
  background: white;
  border: 1px solid var(--m-line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.venture-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(13,148,136,0.18), 0 8px 24px -8px rgba(0,0,0,0.08);
  border-color: var(--m-line-2);
}

.venture-modern-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--m-brand-grad);
}
.venture-cloud-modern .venture-modern-accent {
  background: linear-gradient(90deg, #0d9488 0%, #4f46e5 100%);
}
.venture-consulting-modern .venture-modern-accent {
  background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
}
.venture-foot-modern .venture-modern-accent {
  background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
}

.venture-modern-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.venture-modern-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--m-brand-grad-soft);
  color: var(--m-teal);
}
.venture-consulting-modern .venture-modern-icon {
  background: rgba(79,70,229,0.12);
  color: var(--m-indigo);
}
.venture-foot-modern .venture-modern-icon {
  background: rgba(245,158,11,0.14);
  color: var(--m-amber);
}

.venture-modern-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--m-text-3);
  background: var(--m-paper-2);
  padding: 6px 12px;
  border-radius: 999px;
}

.venture-card-modern h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--m-text);
}
.venture-modern-tagline {
  color: var(--m-teal);
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.venture-consulting-modern .venture-modern-tagline { color: var(--m-indigo); }
.venture-foot-modern .venture-modern-tagline { color: var(--m-amber); }

.venture-modern-body {
  color: var(--m-text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.venture-modern-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.venture-modern-list li {
  position: relative;
  padding-left: 22px;
  color: var(--m-text-2);
  font-size: 0.92rem;
}
.venture-modern-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--m-teal);
}
.venture-consulting-modern .venture-modern-list li::before { background: var(--m-indigo); }
.venture-foot-modern .venture-modern-list li::before { background: var(--m-amber); }

.venture-modern-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.venture-modern-actions .btn { flex: 1; min-width: 130px; justify-content: center; }

/* ==========================================================
   ABOUT — dark cards with numeric labels
   ========================================================== */
.dark-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.dark-blob-1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(13,148,136,0.4) 0%, transparent 65%);
}

.about-modern-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-modern-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--m-line-dark);
  border-radius: 16px;
  padding: 32px 28px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.about-modern-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--m-line-dark-2);
  transform: translateY(-3px);
}
.about-modern-num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--m-teal-light);
  margin-bottom: 18px;
}
.about-modern-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  letter-spacing: -0.01em;
}
.about-modern-card p {
  color: rgba(255,255,255,0.66);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ==========================================================
   FOUNDER — modern split layout
   ========================================================== */
.founder-modern {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.founder-modern-image {
  width: 320px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--m-paper-2);
  position: relative;
}
.founder-modern-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--m-brand-grad);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}
.founder-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-modern-info h3 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--m-text);
}
.founder-modern-title {
  color: var(--m-teal);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
}
.founder-modern-info p {
  color: var(--m-text-2);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}
.founder-modern-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--m-paper-2);
  color: var(--m-text);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1px solid var(--m-line);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.founder-modern-linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
  transform: translateY(-1px);
}

/* ==========================================================
   CTA — dark with brand-gradient blob
   ========================================================== */
.cta-modern {
  position: relative;
  padding: 120px 24px;
  background: var(--m-ink);
  color: white;
  overflow: hidden;
}
.cta-modern-blob {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, rgba(13,148,136,0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(79,70,229,0.35) 0%, transparent 45%);
  filter: blur(40px);
}
.cta-modern-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-modern-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: white;
}
.cta-modern-inner > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-modern-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-modern-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  margin: 0;
}
.cta-modern-sub a {
  color: var(--m-teal-light);
  text-decoration: none;
  font-weight: 600;
}
.cta-modern-sub a:hover { color: white; }

/* ==========================================================
   FOOTER — modern darker
   ========================================================== */
.footer-modern {
  background: #050810;
  color: rgba(255,255,255,0.6);
  padding: 80px 24px 32px;
  border-top: 1px solid var(--m-line-dark);
}
.footer-modern-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto 48px;
}
.footer-modern-brand .logo-image {
  height: 64px;
  width: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-modern-brand p {
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-size: 0.92rem;
}
.footer-modern-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-modern-col a {
  display: block;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-modern-col a:hover { color: white; }

.footer-modern-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--m-line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-modern-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-modern-linkedin {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--m-line-dark);
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-modern-linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1100px) {
  .ventures-grid-modern { grid-template-columns: 1fr; max-width: 600px; }
  .about-modern-grid { grid-template-columns: 1fr; max-width: 600px; }
  .founder-modern { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .founder-modern-image { margin: 0 auto; }
  .founder-modern-linkedin { margin-left: auto; margin-right: auto; }
  .footer-modern-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  .hero-modern { padding: 140px 20px 80px; }
  .section-light, .section-dark, .cta-modern { padding: 80px 20px; }
  .footer-modern-grid { grid-template-columns: 1fr; }
  .navbar.navbar-dark .nav-container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav-links-dark { display: none; }
  .service-toggle-dark .service-toggle-btn { font-size: 0.74rem; padding: 5px 10px; }

  /* Compact brand lockup on mobile */
  .brand-lockup { gap: 10px; }
  .navbar.navbar-dark .brand-lockup .logo-image { height: 72px; width: 72px; }
  .brand-wordmark-main { font-size: 1.05rem; }
  .brand-wordmark-sub { font-size: 0.6rem; letter-spacing: 0.18em; margin-top: 3px; }
}

/* Tighter screens — drop the wordmark text entirely so just the logo shows */
@media (max-width: 520px) {
  .brand-wordmark { display: none; }
}


/* =========================================================
   Sub-page additions: hero stats, why-cards, pricing, etc.
   ========================================================= */

/* Hero stats row (under buttons on Cloud / Foot / Consulting) */
.hero-stats-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--m-line-dark);
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-stat-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--m-line-dark);
}

/* Why cards (3-up on light section) */
.why-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card-modern {
  background: white;
  border: 1px solid var(--m-line);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.why-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(13,148,136,0.18), 0 8px 24px -8px rgba(0,0,0,0.06);
  border-color: var(--m-line-2);
}
.why-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--m-brand-grad-soft);
  color: var(--m-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.why-card-icon-indigo {
  background: rgba(79,70,229,0.12);
  color: var(--m-indigo);
}
.why-card-icon-amber {
  background: rgba(245,158,11,0.14);
  color: var(--m-amber);
}
.why-card-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--m-text);
}
.why-card-modern p {
  color: var(--m-text-2);
  line-height: 1.6;
  font-size: 0.97rem;
}

/* Section footer link (subtle "see more" link with arrow) */
.section-footer-link {
  text-align: center;
  margin-top: 60px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--m-teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: gap 0.2s, color 0.2s;
}
.link-arrow:hover {
  gap: 12px;
  color: var(--m-teal-deep);
}
.link-arrow-amber { color: var(--m-amber); }
.link-arrow-amber:hover { color: #d97706; }

/* =========================================================
   Pricing (modern, dark)
   ========================================================= */
.pricing-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-card-modern {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--m-line-dark);
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
}
.pricing-card-modern:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--m-line-dark-2);
  transform: translateY(-3px);
}
.pricing-card-featured {
  background: linear-gradient(180deg, rgba(13,148,136,0.10) 0%, rgba(79,70,229,0.10) 100%);
  border-color: rgba(13,148,136,0.45);
}
.pricing-card-featured:hover {
  background: linear-gradient(180deg, rgba(13,148,136,0.14) 0%, rgba(79,70,229,0.14) 100%);
  border-color: rgba(13,148,136,0.6);
}
.pricing-card-badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--m-brand-grad);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(13,148,136,0.4);
}
.pricing-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: white;
  margin-bottom: 4px;
}
.pricing-currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card-period {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.pricing-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.pricing-card-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}
.pricing-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--m-teal-light);
  font-weight: 700;
}
.pricing-card-cta {
  width: 100%;
  justify-content: center;
}
.pricing-note-modern {
  text-align: center;
  margin-top: 40px;
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}
.pricing-note-modern a {
  color: var(--m-teal-light);
  text-decoration: none;
  font-weight: 600;
}
.pricing-note-modern a:hover { color: white; }

/* =========================================================
   Foot Solutions theme: amber accent system
   ========================================================= */
.amber-gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.eyebrow-amber { color: var(--m-amber) !important; }

/* Amber-themed body — switches navbar accent + active toggle */
.theme-amber .service-toggle-dark .service-toggle-btn.active {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(245,158,11,0.45);
}
.theme-amber .navbar.navbar-dark .btn-primary-modern {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(245,158,11,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.theme-amber .navbar.navbar-dark .btn-primary-modern:hover {
  box-shadow: 0 8px 24px rgba(245,158,11,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}
.theme-amber .eyebrow-dot {
  background: var(--m-amber-soft);
  box-shadow: 0 0 12px var(--m-amber-soft);
}

/* Hero blobs for amber theme */
.hero-blob-amber-1 {
  width: 560px; height: 560px;
  position: absolute;
  top: -180px; left: -120px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245,158,11,0.65) 0%, transparent 70%);
}
.hero-blob-amber-2 {
  width: 520px; height: 520px;
  position: absolute;
  bottom: -160px; right: -120px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(239,68,68,0.5) 0%, transparent 70%);
}

.dark-blob-amber {
  width: 600px; height: 600px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245,158,11,0.4) 0%, transparent 65%);
}

/* Amber primary button */
.btn.btn-amber-modern {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  font-weight: 600;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(245,158,11,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn.btn-amber-modern:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn.btn-amber-modern.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }

/* Stacked button (main + sub label) — modern variant */
.btn-stacked-modern {
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.2;
}
.btn-stacked-modern .btn-stack-main {
  font-weight: 700;
  font-size: 1rem;
}
.btn-stacked-modern .btn-stack-sub {
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.85;
}
.btn-stacked-modern.btn-lg {
  padding-top: 14px;
  padding-bottom: 14px;
}
.btn-stacked-modern.btn-lg .btn-stack-main { font-size: 1.05rem; }

/* Why card amber variant (subtle background tint) */
.why-card-amber:hover {
  box-shadow: 0 20px 40px -20px rgba(245,158,11,0.22), 0 8px 24px -8px rgba(0,0,0,0.06);
}

/* =========================================================
   Foot Solutions: brand lockup pill (in dark hero)
   ========================================================= */
.hero-fs-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--m-line-dark-2);
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.fs-lockup-image {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);   /* makes the SVG render white on dark */
}
.fs-lockup-divider {
  width: 1px;
  height: 22px;
  background: var(--m-line-dark-2);
}
.fs-lockup-location {
  font-size: 0.92rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.005em;
}

/* =========================================================
   Cloud: product lockup in dark hero
   ========================================================= */
.hero-product-lockup-dark {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.product-lockup-dark-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   Foot Solutions: Location grid (dark)
   ========================================================= */
.location-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.location-modern-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--m-line-dark);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.location-modern-block:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--m-line-dark-2);
  transform: translateY(-3px);
}
.location-modern-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.location-modern-block h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.location-modern-block p {
  color: white;
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
}
.location-modern-block a {
  color: white;
  text-decoration: none;
}
.location-modern-block a:hover { color: var(--m-amber-soft); }

.location-modern-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* CTA amber variant */
.cta-amber .cta-modern-blob-amber {
  background:
    radial-gradient(circle at 20% 50%, rgba(245,158,11,0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(239,68,68,0.3) 0%, transparent 45%);
}

/* =========================================================
   Consulting: Practices (2-up cards on light)
   ========================================================= */
.practices-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.practice-card-modern {
  background: white;
  border: 1px solid var(--m-line);
  border-radius: 20px;
  padding: 40px 36px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.practice-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(13,148,136,0.18), 0 8px 24px -8px rgba(0,0,0,0.06);
  border-color: var(--m-line-2);
}
.practice-card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--m-brand-grad-soft);
  color: var(--m-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.practice-card-icon-indigo {
  background: rgba(79,70,229,0.12);
  color: var(--m-indigo);
}
.practice-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--m-text);
}
.practice-card-tagline {
  color: var(--m-teal);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 14px;
}
.practice-card-modern:nth-child(2) .practice-card-tagline {
  color: var(--m-indigo);
}
.practice-card-body {
  color: var(--m-text-2);
  line-height: 1.6;
  margin-bottom: 22px;
  font-size: 0.97rem;
}
.practice-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.practice-card-list li {
  position: relative;
  padding-left: 22px;
  color: var(--m-text-2);
  font-size: 0.95rem;
}
.practice-card-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--m-teal);
}
.practice-card-modern:nth-child(2) .practice-card-list li::before {
  background: var(--m-indigo);
}

/* =========================================================
   Consulting: Engagement grid (4-up dark cards)
   ========================================================= */
.engagement-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.engagement-card-modern {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--m-line-dark);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.engagement-card-modern:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--m-line-dark-2);
  transform: translateY(-3px);
}
.engagement-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--m-teal-light);
  margin-bottom: 18px;
}
.engagement-card-modern h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
  letter-spacing: -0.01em;
}
.engagement-card-modern p {
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.engagement-best {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--m-line-dark);
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.85rem !important;
  font-style: italic;
}

/* =========================================================
   Consulting: Process (3-step horizontal flow)
   ========================================================= */
.process-grid-modern {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.process-step-modern {
  flex: 1;
  min-width: 240px;
  background: white;
  border: 1px solid var(--m-line);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.process-step-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(13,148,136,0.18);
  border-color: var(--m-line-2);
}
.process-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--m-brand-grad);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(13,148,136,0.32);
}
.process-step-modern h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--m-text);
  letter-spacing: -0.01em;
}
.process-step-modern p {
  color: var(--m-text-2);
  line-height: 1.6;
  font-size: 0.95rem;
}
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--m-text-3);
  font-weight: 300;
  flex-shrink: 0;
}

/* =========================================================
   Responsive (sub-pages)
   ========================================================= */
@media (max-width: 1100px) {
  .why-grid-modern { grid-template-columns: 1fr; max-width: 600px; }
  .pricing-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .practices-grid-modern { grid-template-columns: 1fr; }
  .engagement-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .location-modern-grid { grid-template-columns: repeat(2, 1fr); }
  .process-arrow { display: none; }
}

@media (max-width: 700px) {
  .pricing-grid-modern { grid-template-columns: 1fr; }
  .engagement-grid-modern { grid-template-columns: 1fr; }
  .location-modern-grid { grid-template-columns: 1fr; }
  .hero-stats-modern { gap: 24px; padding-top: 28px; }
  .hero-stat-divider { height: 24px; }
  .hero-fs-lockup { gap: 10px; padding: 8px 16px; }
  .fs-lockup-image { height: 22px; }
  .fs-lockup-location { font-size: 0.82rem; }
  .product-lockup-dark-image { max-width: 220px; }
}


/* =========================================================
   FOOT SOLUTIONS theme: deep blue accent system
   (Foot Solutions's actual brand color is blue)
   ========================================================= */

:root {
  --m-fs-blue:        #1d4ed8;
  --m-fs-blue-mid:    #2563eb;
  --m-fs-blue-light:  #60a5fa;
  --m-fs-blue-soft:   #93c5fd;
  --m-fs-cyan:        #0891b2;
}

.blue-gradient-text {
  background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.eyebrow-blue { color: var(--m-fs-blue-light) !important; }

/* theme-blue body — switches navbar accent + active toggle to deep blue */
.theme-blue .service-toggle-dark .service-toggle-btn.active {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  box-shadow: 0 4px 14px rgba(29,78,216,0.5);
}
.theme-blue .navbar.navbar-dark .btn-primary-modern {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  box-shadow: 0 4px 14px rgba(29,78,216,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.theme-blue .navbar.navbar-dark .btn-primary-modern:hover {
  box-shadow: 0 8px 24px rgba(29,78,216,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
}
.theme-blue .eyebrow-dot {
  background: var(--m-fs-blue-light);
  box-shadow: 0 0 12px var(--m-fs-blue-light);
}
.theme-blue .brand-wordmark-sub {
  color: var(--m-fs-blue-light);
}

/* Hero blobs for blue theme */
.hero-blob-blue-1 {
  width: 560px; height: 560px;
  position: absolute;
  top: -180px; left: -120px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(29,78,216,0.7) 0%, transparent 70%);
}
.hero-blob-blue-2 {
  width: 520px; height: 520px;
  position: absolute;
  bottom: -160px; right: -120px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(8,145,178,0.55) 0%, transparent 70%);
}

.dark-blob-blue {
  width: 600px; height: 600px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(29,78,216,0.5) 0%, transparent 65%);
}

/* Blue primary button */
.btn.btn-blue-modern {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: white;
  font-weight: 600;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(29,78,216,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn.btn-blue-modern:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29,78,216,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn.btn-blue-modern.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }

/* Why card blue variant */
.why-card-icon-blue {
  background: rgba(29,78,216,0.12);
  color: var(--m-fs-blue);
}
.why-card-blue:hover {
  box-shadow: 0 20px 40px -20px rgba(29,78,216,0.25), 0 8px 24px -8px rgba(0,0,0,0.06);
}

.link-arrow-blue { color: var(--m-fs-blue); }
.link-arrow-blue:hover { color: #1e3a8a; }

/* CTA blue variant */
.cta-blue .cta-modern-blob-blue {
  background:
    radial-gradient(circle at 20% 50%, rgba(29,78,216,0.45) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(8,145,178,0.4) 0%, transparent 45%);
}

/* Foot Solutions: brand lockup pill — adjust accent to blue */
.theme-blue .hero-fs-lockup {
  background: rgba(255,255,255,0.06);
  border-color: var(--m-line-dark-2);
}

/* =========================================================
   CONSULTING uses theme-amber — make it more pervasive than
   just the navbar accent, since Consulting now owns the warm
   amber palette across the page.
   ========================================================= */

/* On consulting (theme-amber), replace the brand gradient text
   with an amber gradient so the headlines feel warm too. */
.theme-amber .brand-gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Section eyebrow color */
.theme-amber .section-eyebrow { color: var(--m-amber); }
.theme-amber .section-header-dark .section-eyebrow { color: var(--m-amber-soft); }

/* Pricing-card accents on the dark sections */
.theme-amber .pricing-card-list li::before { color: var(--m-amber-soft); }
.theme-amber .pricing-card-featured {
  background: linear-gradient(180deg, rgba(245,158,11,0.10) 0%, rgba(239,68,68,0.10) 100%);
  border-color: rgba(245,158,11,0.45);
}
.theme-amber .pricing-card-featured:hover {
  background: linear-gradient(180deg, rgba(245,158,11,0.14) 0%, rgba(239,68,68,0.14) 100%);
  border-color: rgba(245,158,11,0.6);
}
.theme-amber .pricing-card-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(245,158,11,0.45);
}

/* Cards & list accents */
.theme-amber .practice-card-icon {
  background: rgba(245,158,11,0.14);
  color: var(--m-amber);
}
.theme-amber .practice-card-icon-indigo {
  background: rgba(239,68,68,0.14);
  color: #ef4444;
}
.theme-amber .practice-card-tagline { color: var(--m-amber); }
.theme-amber .practice-card-modern:nth-child(2) .practice-card-tagline { color: #ef4444; }
.theme-amber .practice-card-list li::before { background: var(--m-amber); }
.theme-amber .practice-card-modern:nth-child(2) .practice-card-list li::before { background: #ef4444; }

.theme-amber .why-card-icon {
  background: rgba(245,158,11,0.14);
  color: var(--m-amber);
}
.theme-amber .why-card-icon-indigo {
  background: rgba(239,68,68,0.14);
  color: #ef4444;
}

/* Engagement num accent */
.theme-amber .engagement-num { color: var(--m-amber-soft); }
.theme-amber .about-modern-num { color: var(--m-amber-soft); }

/* Process step circle */
.theme-amber .process-step-num {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  box-shadow: 0 6px 18px rgba(245,158,11,0.4);
}
.theme-amber .process-step-modern:hover {
  box-shadow: 0 20px 40px -20px rgba(245,158,11,0.25);
}

/* Hero blobs on consulting now warm */
.theme-amber .hero-blob-1 {
  background: radial-gradient(circle, rgba(245,158,11,0.6) 0%, transparent 70%);
}
.theme-amber .hero-blob-2 {
  background: radial-gradient(circle, rgba(239,68,68,0.5) 0%, transparent 70%);
}
.theme-amber .dark-blob-1 {
  background: radial-gradient(circle, rgba(245,158,11,0.4) 0%, transparent 65%);
}

/* Primary buttons on consulting (in light + dark sections) become amber */
.theme-amber .btn-primary-modern {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(245,158,11,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.theme-amber .btn-primary-modern:hover {
  box-shadow: 0 8px 24px rgba(245,158,11,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
}

/* CTA modern blob (default brand-grad) — shift on consulting */
.theme-amber .cta-modern-blob {
  background:
    radial-gradient(circle at 20% 50%, rgba(245,158,11,0.4) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(239,68,68,0.35) 0%, transparent 45%);
}

/* Pricing-card list checks on Cloud (no theme-amber) stay default teal,
   so don't override .pricing-card-list li::before globally — only via theme. */


/* =========================================================
   CLOUD theme: deep orange (matches skills-platform #f05a28)
   ========================================================= */

:root {
  --m-cloud-orange:        #f05a28;
  --m-cloud-orange-deep:   #d94e20;
  --m-cloud-orange-light:  #fb923c;
  --m-cloud-orange-soft:   #fdba74;
  --m-cloud-orange-grad-2: #f97316;
}

.orange-gradient-text {
  background: linear-gradient(135deg, #f05a28 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* On the Cloud page, the brand-gradient-text should pick up orange */
.theme-orange .brand-gradient-text {
  background: linear-gradient(135deg, #f05a28 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Section eyebrow color */
.theme-orange .section-eyebrow { color: var(--m-cloud-orange-light); }
.theme-orange .section-header-dark .section-eyebrow { color: var(--m-cloud-orange-soft); }

/* Navbar */
.theme-orange .service-toggle-dark .service-toggle-btn.active {
  background: linear-gradient(135deg, #f05a28 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(240,90,40,0.5);
}
.theme-orange .navbar.navbar-dark .btn-primary-modern {
  background: linear-gradient(135deg, #f05a28 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(240,90,40,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.theme-orange .navbar.navbar-dark .btn-primary-modern:hover {
  box-shadow: 0 8px 24px rgba(240,90,40,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
}
.theme-orange .eyebrow-dot {
  background: var(--m-cloud-orange-light);
  box-shadow: 0 0 12px var(--m-cloud-orange-light);
}
.theme-orange .brand-wordmark-sub { color: var(--m-cloud-orange-light); }

/* Primary buttons (in body sections) */
.theme-orange .btn-primary-modern {
  background: linear-gradient(135deg, #f05a28 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(240,90,40,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.theme-orange .btn-primary-modern:hover {
  box-shadow: 0 8px 24px rgba(240,90,40,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
}

/* Hero blobs warm */
.theme-orange .hero-blob-1 {
  background: radial-gradient(circle, rgba(240,90,40,0.65) 0%, transparent 70%);
}
.theme-orange .hero-blob-2 {
  background: radial-gradient(circle, rgba(249,115,22,0.55) 0%, transparent 70%);
}
.theme-orange .dark-blob-1 {
  background: radial-gradient(circle, rgba(240,90,40,0.4) 0%, transparent 65%);
}

/* Why cards on the cloud page — colored icon row variety stays
   diverse but all dot accents resolve to orange */
.theme-orange .why-card-icon {
  background: rgba(240,90,40,0.12);
  color: var(--m-cloud-orange);
}
.theme-orange .why-card-icon-indigo {
  background: rgba(249,115,22,0.16);
  color: var(--m-cloud-orange-deep);
}
.theme-orange .why-card-icon-amber {
  background: rgba(251,146,60,0.18);
  color: #c2410c;
}

/* Pricing — warm tints */
.theme-orange .pricing-card-list li::before { color: var(--m-cloud-orange-light); }
.theme-orange .pricing-card-featured {
  background: linear-gradient(180deg, rgba(240,90,40,0.10) 0%, rgba(249,115,22,0.10) 100%);
  border-color: rgba(240,90,40,0.5);
}
.theme-orange .pricing-card-featured:hover {
  background: linear-gradient(180deg, rgba(240,90,40,0.14) 0%, rgba(249,115,22,0.14) 100%);
  border-color: rgba(240,90,40,0.65);
}
.theme-orange .pricing-card-badge {
  background: linear-gradient(135deg, #f05a28 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(240,90,40,0.45);
}

/* Process step circle (used elsewhere; stays consistent) */
.theme-orange .process-step-num {
  background: linear-gradient(135deg, #f05a28 0%, #f97316 100%);
  box-shadow: 0 6px 18px rgba(240,90,40,0.4);
}
.theme-orange .process-step-modern:hover {
  box-shadow: 0 20px 40px -20px rgba(240,90,40,0.25);
}

/* Engagement / about numbers (if used) */
.theme-orange .engagement-num { color: var(--m-cloud-orange-soft); }
.theme-orange .about-modern-num { color: var(--m-cloud-orange-soft); }

/* Link arrows (used for "see more on dreamandbuildcloudai.com") */
.theme-orange .link-arrow {
  color: var(--m-cloud-orange);
}
.theme-orange .link-arrow:hover {
  color: var(--m-cloud-orange-deep);
}

/* CTA blob for the cloud page */
.theme-orange .cta-modern-blob {
  background:
    radial-gradient(circle at 20% 50%, rgba(240,90,40,0.4) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(249,115,22,0.35) 0%, transparent 45%);
}
