:root {
  --bg: #FAFCFF;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: #ffffff;
  --surface-dark: rgba(18, 31, 74, 0.62);
  --line: rgba(140, 159, 187, 0.2);
  --line-strong: rgba(114, 138, 180, 0.35);
  --ink: #0F172A;
  --muted: #64748B;
  --muted-strong: #334155;
  --blue: #2563EB;
  --blue-deep: #1E3A8A;
  --teal: #0D9488;
  --sky: #EFF6FF;
  --glow: rgba(37, 99, 235, 0.12);
  --shadow-soft: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px -15px rgba(15, 23, 42, 0.12);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1280px;
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  --gold-glow: rgba(212, 175, 55, 0.22);
  --monaco-dark: #070a12;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(37, 99, 235, 0.08), transparent 25%),
    radial-gradient(circle at 90% 14%, rgba(13, 148, 136, 0.06), transparent 28%),
    linear-gradient(180deg, #F8FAFC 0%, #ffffff 40%, #F1F5F9 100%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Base animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 56px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(20, 42, 92, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 14px 30px rgba(27, 77, 255, 0.24);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav .nav-cta {
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 28px rgba(27, 77, 255, 0.2);
  color: white;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero,
.signal-band {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-bottom: 24px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(16, 30, 76, 0.97), rgba(63, 79, 142, 0.9)),
    linear-gradient(135deg, #1845dd, #0b897a);
  box-shadow: var(--shadow-strong);
}

.hero::before,
.hero::after,
.signal-band::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  right: -140px;
  top: -120px;
  background: radial-gradient(circle, rgba(180, 208, 255, 0.36), transparent 62%);
}

.hero::after {
  width: 320px;
  height: 320px;
  left: -60px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(15, 133, 118, 0.3), transparent 66%);
}

.hero-copy,
.hero-panel,
.signal-copy,
.signal-grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.eyebrow-light {
  border-color: rgba(27, 77, 255, 0.08);
  background: rgba(27, 77, 255, 0.08);
  color: var(--blue-deep);
}

.hero h1,
.hero .hero-text,
.hero-signals,
.hero-card {
  color: white;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.1rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.74;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #dce7ff);
  color: #10245c;
  box-shadow: 0 16px 36px rgba(9, 20, 51, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(27, 77, 255, 0.12);
  background: linear-gradient(180deg, rgba(232, 239, 255, 0.92), rgba(245, 248, 255, 0.92));
  color: var(--blue-deep);
  box-shadow: 0 12px 24px rgba(21, 43, 98, 0.08);
}

.btn-highlight {
  border: 1px solid rgba(255, 196, 79, 0.28);
  background: linear-gradient(135deg, #ffd36f, #ff9e45);
  color: #10245c;
  box-shadow: 0 18px 40px rgba(255, 159, 67, 0.28);
}

.btn-highlight:hover,
.btn-highlight:focus-visible {
  box-shadow: 0 22px 48px rgba(255, 159, 67, 0.34);
}

.hero-signals {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-signals li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.hero-signals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #96e0cf;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}

.hero-card {
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.hero-card.emphasis {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
}

.hero-card span,
.architecture-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.38;
}

.signal-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-bottom: 30px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(27, 77, 255, 0.1), rgba(15, 133, 118, 0.08));
  box-shadow: var(--shadow-soft);
}

.signal-band::before {
  width: 240px;
  height: 240px;
  right: -70px;
  top: -60px;
  background: radial-gradient(circle, rgba(32, 79, 255, 0.14), transparent 64%);
}

.signal-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  letter-spacing: -0.06em;
}

.signal-copy h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.signal-copy p:last-child,
.section-heading p:last-child,
.metrics-strip p,
.product-feature p,
.industry-grid p,
.plan-card ul,
.process-list p,
.trust-grid p,
.architecture-card p,
.contact-copy p,
.footer p,
.footer-links a {
  color: var(--muted);
  line-height: 1.74;
}

.signal-grid,
.metrics-strip,
.industry-grid,
.plans-grid,
.process-list,
.trust-grid,
.module-groups,
.module-grid,
.services-grid,
.service-band,
.vertical-grid,
.education-pillars,
.education-journey,
.education-proof-grid {
  display: grid;
  gap: 18px;
}

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

.signal-grid article,
.metrics-strip article,
.industry-grid article,
.plan-card,
.process-list article,
.trust-grid article,
.architecture-card,
.contact-card,
.product-feature {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(25, 54, 109, 0.06);
}

.signal-grid article {
  padding: 20px;
}

.signal-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-grid strong {
  display: block;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.5;
}

.metrics-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 30px;
}

.metrics-strip article {
  padding: 24px;
}

.metrics-strip span,
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(27, 77, 255, 0.08);
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.metrics-strip h2,
.plan-card h3,
.process-list h3,
.trust-grid h3,
.industry-grid h3,
.product-feature h3,
.architecture-card h3 {
  margin: 0 0 10px;
}

.section {
  margin-top: 18px;
  padding: 34px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.compact {
  max-width: 660px;
}

.product-columns {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 18px;
}

.product-feature {
  min-height: 220px;
  padding: 24px;
}

.product-feature.large {
  grid-row: span 2;
}

.product-feature ul,
.plan-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

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

.industry-grid article,
.trust-grid article,
.architecture-card {
  padding: 24px;
}

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

.vertical-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.vertical-card,
.education-pillars article,
.education-journey article,
.education-proof-grid article {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(25, 54, 109, 0.06);
}

.vertical-card {
  padding: 26px;
}

.featured-vertical {
  background:
    linear-gradient(180deg, rgba(22, 44, 108, 0.98), rgba(40, 62, 138, 0.95)),
    linear-gradient(135deg, #163ea8, #0c857b);
  color: white;
}

.featured-vertical p,
.featured-vertical li,
.featured-vertical .text-link {
  color: rgba(255, 255, 255, 0.82);
}

.vertical-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.vertical-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

.vertical-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.muted-badge {
  background: rgba(27, 77, 255, 0.08);
  color: var(--blue-deep);
}

.vertical-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.vertical-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
}

.module-groups {
  grid-template-columns: 1fr;
}

.module-group,
.services-grid article,
.service-band article {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(25, 54, 109, 0.06);
}

.module-group {
  padding: 24px;
}

.module-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.module-group-head h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.module-state {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-state.live {
  background: rgba(15, 133, 118, 0.1);
  color: var(--teal);
}

.module-state.planned {
  background: rgba(27, 77, 255, 0.1);
  color: var(--blue);
}

.module-state.premium {
  background: rgba(16, 36, 92, 0.1);
  color: var(--blue-deep);
}

.premium-group {
  background: linear-gradient(180deg, rgba(236, 242, 255, 0.94), rgba(248, 250, 255, 0.92));
}

.module-grid,
.services-grid,
.service-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-grid article,
.services-grid article,
.service-band article {
  padding: 20px;
}

.module-grid h4,
.services-grid h3,
.service-band span {
  margin: 0 0 10px;
}

.module-grid h4,
.services-grid h3 {
  font-size: 1.05rem;
}

.module-grid p,
.services-grid p,
.service-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-band span {
  display: inline-block;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  margin-bottom: 24px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(18, 34, 86, 0.97), rgba(52, 73, 148, 0.92)),
    linear-gradient(135deg, #1b4dff, #0c857b);
  box-shadow: var(--shadow-strong);
}

.page-hero h1,
.page-hero p,
.page-hero li {
  color: white;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.page-hero .hero-text {
  margin-top: 0;
}

.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero-panel {
  display: grid;
  gap: 14px;
}

.page-hero-panel article {
  min-height: 120px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.page-hero-panel span {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero-panel strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.45;
}

.education-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.education-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.education-journey {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.education-pillars article,
.education-proof-grid article,
.education-journey article {
  padding: 24px;
}

.plan-card {
  padding: 26px;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(24, 72, 223, 0.97), rgba(22, 47, 136, 0.97));
}

.plan-card.featured,
.plan-card.featured p,
.plan-card.featured strong,
.plan-card.featured h3,
.plan-card.featured li {
  color: white;
}

.plan-tier {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-card.featured .plan-tier {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card strong {
  display: block;
  margin-bottom: 18px;
}

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

.architecture-card.highlighted {
  border-color: rgba(27, 77, 255, 0.16);
  background: linear-gradient(180deg, rgba(224, 235, 255, 0.98), rgba(245, 249, 255, 0.98));
}

.architecture-label {
  color: var(--blue-deep);
}

.process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-list article {
  padding: 24px;
}

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

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
}

.lead-form {
  width: min(540px, 100%);
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-grid label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted-strong);
}

.lead-grid-wide {
  grid-column: 1 / -1;
}

.lead-grid input,
.lead-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(125, 144, 171, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

.lead-grid textarea {
  resize: vertical;
  min-height: 110px;
}

.lead-grid input:focus,
.lead-grid textarea:focus {
  outline: 0;
  border-color: rgba(27, 77, 255, 0.38);
  box-shadow: 0 0 0 4px rgba(27, 77, 255, 0.08);
}

.lead-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.lead-status.is-success {
  color: var(--teal);
}

.lead-status.is-error {
  color: #b42318;
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: start;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(125, 144, 171, 0.24);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-meta p {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero,
  .signal-band,
  .product-columns,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-grid,
  .signal-grid,
  .metrics-strip,
  .industry-grid,
  .plans-grid,
  .process-list,
  .trust-grid,
  .architecture-layout,
  .module-grid,
  .services-grid,
  .service-band,
  .vertical-grid,
  .education-pillars,
  .education-journey,
  .education-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-feature.large {
    grid-row: auto;
  }

  .contact-card,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .lead-form {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-shell {
    padding: 18px 16px 34px;
  }

  .topbar {
    top: 8px;
    border-radius: 24px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    max-width: 22ch;
    font-size: 10px;
    line-height: 1.3;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    z-index: 30;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(29, 52, 100, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero,
  .signal-band {
    padding: 28px 22px;
    border-radius: 30px;
  }

  .page-hero {
    padding: 28px 22px;
    border-radius: 30px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4rem);
    line-height: 0.98;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-grid,
  .signal-grid,
  .metrics-strip,
  .industry-grid,
  .plans-grid,
  .process-list,
  .trust-grid,
  .architecture-layout,
  .module-grid,
  .services-grid,
  .service-band,
  .vertical-grid,
  .education-pillars,
  .education-journey,
  .education-proof-grid {
    grid-template-columns: 1fr;
  }

  .lead-grid {
    grid-template-columns: 1fr;
  }

  .module-group-head {
    flex-direction: column;
  }

  .hero-card {
    min-height: auto;
  }
}

/* --- UI Mockups CSS --- */

.hero-image-wrapper {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: floatMockup 6s ease-in-out infinite;
}

.hero-ui-mockup {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.hero-ui-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.vertical-ui-mockup {
  width: 100%;
  border-radius: 16px;
  margin: 16px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  transition: transform 0.3s ease;
}

.vertical-ui-mockup:hover {
  transform: scale(1.02);
}

.vertical-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vertical-ui-mockup-small {
  width: 100%;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.4);
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: pulseWhatsApp 2s infinite alternate, floatWidget 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-widget:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 40px rgba(18, 140, 126, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-widget span {
    display: none;
  }
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 16px 32px rgba(18, 140, 126, 0.3); }
  100% { box-shadow: 0 16px 32px rgba(18, 140, 126, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.2); }
}

@keyframes floatWidget {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- ROI Leakage Calculator Section --- */
.calc-section {
  background: radial-gradient(circle at 50% 50%, rgba(27, 77, 255, 0.05), transparent 60%);
  padding: 80px 0;
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
  .calculator-container {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group label {
  font-weight: 700;
  font-size: 15px;
  color: var(--muted-strong);
}

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-wrapper input[type="range"] {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: var(--sky);
  outline: none;
  -webkit-appearance: none;
}

.slider-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 4px 10px rgba(27, 77, 255, 0.3);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.slider-wrapper input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

#revenue-display {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  min-width: 120px;
  text-align: right;
}

.input-group select {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--ink);
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.result-card.highlight {
  background: linear-gradient(135deg, rgba(27, 77, 255, 0.06), rgba(15, 133, 118, 0.04));
  border: 1px solid rgba(27, 77, 255, 0.2);
  box-shadow: 0 12px 30px rgba(27, 77, 255, 0.08);
}

.result-card.highlight strong {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-card small {
  font-size: 12px;
  color: var(--muted);
}

.calc-cta-wrapper {
  margin-top: 10px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── Testimonials Section ─────────────────────────────────────── */
.testimonials-section {
  margin-top: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-strong);
  font-style: italic;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-author strong {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Plan Pricing ─────────────────────────────────────────────── */
.plan-price {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 4px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.plan-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-card.featured .plan-price strong {
  font-size: 32px;
}

/* ── FAQ Section ──────────────────────────────────────────────── */
.faq-section {
  margin-top: 48px;
}

.faq-list {
  max-width: 820px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-strong);
}

/* ── Blog Styles ──────────────────────────────────────────────── */
.blog-hero {
  text-align: center;
  padding: 60px 24px 40px;
}

.blog-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}

.blog-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  padding: 0 24px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.blog-card .blog-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.blog-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}

.blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card .blog-read {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .blog-read::after {
  content: "→";
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-read::after {
  transform: translateX(4px);
}

/* Blog Article */
.article-shell {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.article-shell .article-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-shell h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 24px;
}

.article-shell h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-shell h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.article-shell p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted-strong);
  margin: 0 0 18px;
}

.article-shell ul,
.article-shell ol {
  padding-left: 24px;
  margin: 0 0 18px;
}

.article-shell li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-strong);
  margin-bottom: 6px;
}

.article-shell table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.article-shell th {
  background: var(--sky);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-shell td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.article-shell tr:hover td {
  background: rgba(27, 77, 255, 0.03);
}

.article-cta {
  background: linear-gradient(135deg, rgba(27, 77, 255, 0.06), rgba(15, 133, 118, 0.04));
  border: 1px solid rgba(27, 77, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 40px 0;
  text-align: center;
}

.article-cta h3 {
  margin: 0 0 10px;
  border: none;
  padding: 0;
}

.article-cta p {
  margin: 0 0 20px;
  font-size: 15px;
}

.article-cta .btn {
  display: inline-block;
  margin: 4px 8px;
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
  }
  .article-shell {
    padding: 32px 16px 60px;
  }
}


/* Monaco Ultra-Luxury High-Tech Visual Accents */
.brand-mark {
  background: linear-gradient(135deg, #1e3a8a 0%, #d4af37 100%) !important;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.eyebrow {
  letter-spacing: 0.12em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25), 0 0 15px rgba(212, 175, 55, 0.2) !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.35), 0 0 25px rgba(212, 175, 55, 0.4) !important;
}

.vertical-badge {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #b48a1d !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

.hero-card.emphasis {
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2), 0 0 20px rgba(212, 175, 55, 0.15) !important;
}

.architecture-card.highlighted {
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25), 0 0 30px rgba(212, 175, 55, 0.2) !important;
}


/* Clean Enterprise Dropdown Navigation & Hierarchy */
.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--blue, #2563eb);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #0f172a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 14px;
  min-width: 280px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.15);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: fadeIn 0.2s ease forwards;
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dropdown-item strong {
  color: #f8fafc;
  font-size: 0.92rem;
  display: block;
}

.dropdown-item span {
  color: #94a3b8;
  font-size: 0.78rem;
  display: block;
  margin-top: 2px;
}


/* Bulletproof Dropdown Navigation Fix */
.nav-dropdown {
  position: relative !important;
  display: inline-block !important;
}

.nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  cursor: pointer !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  color: var(--ink, #0f172a) !important;
  white-space: nowrap !important;
}

.nav-dropdown-trigger:hover {
  background: rgba(37, 99, 235, 0.1) !important;
  color: var(--blue, #2563eb) !important;
}

.nav-dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: #0f172a !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 16px !important;
  padding: 14px !important;
  width: 290px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px rgba(212, 175, 55, 0.2) !important;
  z-index: 9999 !important;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.dropdown-item {
  display: flex !important;
  flex-direction: column !important;
  padding: 8px 12px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  white-space: normal !important;
  transition: background 0.2s !important;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.dropdown-item strong {
  color: #f8fafc !important;
  font-size: 0.9rem !important;
  display: block !important;
}

.dropdown-item span {
  color: #94a3b8 !important;
  font-size: 0.78rem !important;
  display: block !important;
  margin-top: 2px !important;
}


/* Stripe/Vercel-Grade Luxury Floating Mega-Dropdown Navigation */
.site-nav {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.nav-dropdown {
  position: relative !important;
  display: inline-block !important;
}

.nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  cursor: pointer !important;
  padding: 8px 14px !important;
  border-radius: 99px !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  color: var(--ink, #0f172a) !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.nav-dropdown-trigger:hover {
  background: rgba(37, 99, 235, 0.1) !important;
  color: var(--blue, #2563eb) !important;
}

/* Floating Dropdown Card (hidden by default, floats OVER content) */
.mega-dropdown-panel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  top: calc(100% + 14px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  background: #0b0f19 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  min-width: 320px !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.2) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 99999 !important;
}

.nav-dropdown:hover .mega-dropdown-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.mega-dropdown-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.mega-item {
  display: flex !important;
  flex-direction: column !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.2s ease !important;
}

.mega-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(212, 175, 55, 0.5) !important;
  transform: translateX(4px) !important;
}

.mega-item strong {
  color: #f8fafc !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  display: block !important;
}

.mega-item span {
  color: #94a3b8 !important;
  font-size: 0.78rem !important;
  display: block !important;
  margin-top: 2px !important;
}


/* Hardcoded Cache-Bypassing Dropdown Rules */
.mega-dropdown-panel {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: #0b0f19 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  width: 320px !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.2) !important;
  z-index: 999999 !important;
}

.nav-dropdown:hover .mega-dropdown-panel {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}


/* Ultra-Premium Monaco Dark Space Metallic & Champagne Gold Theme */
:root {
  --bg-dark: #070a12;
  --surface-glass: rgba(15, 23, 42, 0.75);
  --surface-glass-strong: rgba(26, 38, 66, 0.85);
  --line-gold: rgba(212, 175, 55, 0.35);
  --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
  --blue-glow: rgba(56, 189, 248, 0.25);
  --shadow-luxury: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.15);
}

body {
  background: 
    radial-gradient(circle at 15% 10%, rgba(30, 58, 138, 0.25), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.12), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(13, 148, 136, 0.1), transparent 45%),
    linear-gradient(180deg, #070a12 0%, #0b0f19 50%, #04060a 100%) !important;
  color: #f8fafc !important;
}

.topbar {
  background: rgba(11, 15, 25, 0.85) !important;
  backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1) !important;
}

.brand-copy strong {
  color: #f8fafc !important;
}

.brand-copy small {
  color: #d4af37 !important;
  font-weight: 600 !important;
}

.hero {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 32px !important;
  box-shadow: var(--shadow-luxury) !important;
  padding: 48px !important;
}

.hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 60%, #d4af37 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-text {
  color: #94a3b8 !important;
  font-size: 1.15rem !important;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #0b0f19 100%) !important;
  border: 1px solid #d4af37 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%) !important;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.4), 0 0 30px rgba(212, 175, 55, 0.5) !important;
}

/* Service Cards Glassmorphism Grid */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card-luxury {
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 24px !important;
  padding: 28px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card-luxury:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(212, 175, 55, 0.6) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.25) !important;
}

.service-card-luxury h3 {
  color: #f8fafc;
  font-size: 1.3rem;
  margin-top: 14px;
  margin-bottom: 8px;
}

.service-card-luxury p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.3);
}


/* Platinum White & Gold High-Contrast Topbar Styling */
.topbar {
  background: rgba(11, 15, 25, 0.92) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
}

.site-nav a {
  color: #e2e8f0 !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
}

.site-nav a:hover {
  color: #d4af37 !important;
}

.nav-dropdown-trigger {
  color: #f8fafc !important;
  font-weight: 600 !important;
  transition: color 0.2s ease, background 0.2s ease !important;
}

.nav-dropdown-trigger:hover {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #d4af37 !important;
}


/* Perfect Contrast Rules for Light Cards & Signal Band */
.signal-band {
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 32px !important;
  padding: 48px !important;
}

.signal-copy h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  margin-top: 12px !important;
  line-height: 1.2 !important;
}

.signal-copy p {
  color: #cbd5e1 !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
}

.signal-grid article {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  color: #0f172a !important;
}

.signal-grid article span {
  color: #2563eb !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
}

.signal-grid article strong {
  color: #0f172a !important;
  font-size: 1.05rem !important;
  display: block !important;
  margin-top: 6px !important;
}

/* Ensure crisp contrast across all general cards */
.vertical-card, .feature-card, .price-card {
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  color: #f8fafc !important;
}

.vertical-card h3, .feature-card h3, .price-card h3 {
  color: #ffffff !important;
}

.vertical-card p, .feature-card p, .price-card p {
  color: #cbd5e1 !important;
}


/* Total Card Dark Background & Ultra-Sharp Text Contrast Fix */
.signal-band, .signal-card, .grid article, article, div[class*="card"] {
  background: #0b0f19 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 24px !important;
}

.signal-band h2, .signal-copy h2, h2, h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 800 !important;
}

.signal-copy p, p, li, span {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

.signal-grid article {
  background: #0f172a !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
}

.signal-grid article span {
  color: #d4af37 !important;
  font-weight: 800 !important;
}

.signal-grid article strong {
  color: #ffffff !important;
}

/* 01 02 03 Bottom Cards */
article span, .step-number, .card-number {
  color: #d4af37 !important;
  font-weight: 800 !important;
}


/* Contact Section & Form Dark Luxury Fix */
.contact-section, .contact-card {
  background: #0b0f19 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 32px !important;
  padding: 48px !important;
  color: #f8fafc !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.15) !important;
}

.contact-copy h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  margin-top: 12px !important;
  line-height: 1.2 !important;
}

.contact-copy p {
  color: #cbd5e1 !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
}

.lead-form label span {
  color: #d4af37 !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.lead-form input, .lead-form select, .lead-form textarea {
  background: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 1rem !important;
}

.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: #d4af37 !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3) !important;
  outline: none !important;
}


/* Universal Dark Luxury Card & Contrast Overrides for ALL Sections */
.foundation-band, .foundation-grid, .foundation-card,
.expansion-band, .expansion-grid, .expansion-card,
.signal-band, .contact-card, .contact-section,
.vertical-card, .feature-card, .price-card, .module-card,
article, div[class*="band"], div[class*="card"], div[class*="grid"] > div, div[class*="panel"] {
  background: #0b0f19 !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 24px !important;
  color: #f8fafc !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.12) !important;
}

.foundation-card, .expansion-card, .module-card, div[class*="card"] > div {
  background: rgba(15, 23, 42, 0.85) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
}

h1, h2, h3, h4, h5, h6, strong, b {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 700 !important;
}

p, li, span, small {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

/* Accent Badges & Tags */
.badge, .eyebrow, .tag, .service-tag, span[class*="tag"], span[class*="badge"], .eyebrow-light {
  color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  font-weight: 700 !important;
}


/* Ultra-Luxury Monaco ROI Calculator Overrides */
.calculator-container {
  background: #0b0f19 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 32px !important;
  padding: 48px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2) !important;
  backdrop-filter: blur(24px) !important;
  color: #f8fafc !important;
}

.calculator-inputs label {
  color: #d4af37 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.85rem !important;
}

#revenue-display {
  color: #d4af37 !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

#calc-vertical {
  background: rgba(15, 23, 42, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #ffffff !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  font-size: 1.05rem !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

#calc-vertical option {
  background: #0f172a !important;
  color: #ffffff !important;
}

.result-card {
  background: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5) !important;
}

.result-card.highlight {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.4) 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.6) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.25) !important;
}

.result-card span {
  color: #38bdf8 !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
}

.result-card.highlight span {
  color: #d4af37 !important;
}

.leakage-value {
  color: #ef4444 !important;
  font-size: 2.6rem !important;
  font-weight: 800 !important;
  display: block !important;
  margin: 8px 0 !important;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.4) !important;
}

.savings-value {
  color: #22c55e !important;
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  display: block !important;
  margin: 8px 0 !important;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.5) !important;
}

.result-card small {
  color: #cbd5e1 !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
}
