/* ============================================================
   SIGNAL LOGIC SYSTEMS — style.css
   Shared styles for all pages
   ============================================================ */

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

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --gold:           #F4C542;
  --gold-hover:     #D4A017;
  --gold-deep:      #B8860B;
  --bg-black:       #0E0E10;
  --bg-card:        #141418;
  --border:         #2B2F36;
  --text-secondary: #B5B5BE;
  --text-primary:   #F8F9FA;

  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;

  --section-pad:    5rem 0;
  --container-max:  1200px;
  --card-radius:    12px;
  --card-border:    1px solid #2B2F36;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-hover); }

ul { list-style: none; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--section-pad); }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-secondary); line-height: 1.7; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.text-gold  { color: var(--gold); }
.text-white { color: var(--text-primary); }

/* ─── Grid Texture ────────────────────────────────────────── */
.grid-texture {
  background-color: var(--bg-black);
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-hover);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(244,197,66,.28);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(244,197,66,.08);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-sm { padding: .55rem 1.2rem; font-size: .9rem; }

/* ─── Status Badges ───────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.badge-available   { background: rgba(34,197,94,.15);  color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.badge-development { background: rgba(245,158,11,.15); color: #fbbf24; border: 1px solid rgba(245,158,11,.3); }
.badge-planned     { background: rgba(107,114,128,.15);color: #9ca3af; border: 1px solid rgba(107,114,128,.3);}
.badge-free        { background: rgba(244,197,66,.12); color: var(--gold); border: 1px solid rgba(244,197,66,.3); }
.badge-call        { background: rgba(244,197,66,.12); color: var(--gold); border: 1px solid rgba(244,197,66,.3); }

/* ─── Section Heading Block ───────────────────────────────── */
.section-heading { margin-bottom: 3rem; }
.section-heading.centered { text-align: center; }
.section-heading h2 { margin-bottom: .75rem; }
.section-heading p  { font-size: 1.05rem; max-width: 600px; }
.section-heading.centered p { margin: 0 auto; }

/* ─── Generic Card ────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 2rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(244,197,66,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.card-icon svg { width: 22px; height: 22px; }

/* ─── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-nav.scrolled {
  background: rgba(14,14,16,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .8rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  /* logo | [flex-fill centered links] | button — no gap so flex:1 on links works cleanly */
}

/* Logo — icon + wordmark */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem; /* 18px */
  color: #F8F9FA;
  letter-spacing: .2px;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .625rem; /* 10px */
  color: #F4C542;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop links — flex:1 centers them between logo and button */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: 0 1rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  color: var(--text-secondary);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; flex-shrink: 0; margin-left: auto; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-black);
  z-index: 1001;
  padding: 6rem 2rem 3rem;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--text-primary);
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color .2s ease;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  border-bottom: none;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
/* Footer logo — full horizontal image, company name is inside the image */
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: .9rem;
  margin-top: .8rem;
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a {
  color: var(--text-secondary);
  font-size: .9rem;
  transition: color .2s ease;
}
.footer-col ul a:hover { color: var(--text-primary); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-contact-list a,
.footer-contact-list span {
  color: var(--text-secondary);
  font-size: .9rem;
  display: block;
}
.footer-contact-list a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: var(--text-secondary); }

/* ─── HERO — HOME ─────────────────────────────────────────── */
.hero-home {
  padding: 7.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.08rem;
  line-height: 1.78;
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Dashboard preview widget */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.dashboard-preview {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}
.dashboard-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

/* ASSET: If you have a dashboard screenshot, replace .dashboard-mock-img with:
   <img src="dashboard-screenshot.png" alt="SLS Dashboard" class="dashboard-mock-img"> */
.dashboard-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.dashboard-product-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8rem;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.live-dot {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  color: #4ade80;
  font-weight: 500;
}
.live-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.dash-metric {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem;
}
.dash-metric-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: .2rem;
}
.dash-metric-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.dash-metric-value.alert { color: #f87171; }
.dash-metric-sub {
  font-size: .6rem;
  color: var(--text-secondary);
  margin-top: .2rem;
}
.dash-chart-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: .65rem;
}
.dash-bars { display: flex; flex-direction: column; gap: .45rem; }
.dash-bar-row {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.dash-bar-name {
  font-size: .62rem;
  color: var(--text-secondary);
  width: 68px;
  flex-shrink: 0;
}
.dash-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.05);
  border-radius: 3px;
  overflow: hidden;
}
.dash-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gold);
  opacity: .75;
}
.dash-bar-fill.constrained { background: #f87171; opacity: .85; }
.dash-footer {
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-footer-text {
  font-size: .62rem;
  color: var(--text-secondary);
}
.dash-footer-badge {
  font-size: .62rem;
  color: var(--gold);
  font-weight: 500;
}

/* ─── PAGE HERO (non-home) ────────────────────────────────── */
.page-hero {
  padding: 7.5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── TRANSFORM STRIP ─────────────────────────────────────── */
.transform-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.transform-strip-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.transform-strip-heading h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-secondary);
  font-weight: 600;
}
.transform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.transform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .45rem;
  padding: 1.5rem 1rem;
  position: relative;
}
.transform-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.transform-before {
  font-size: .88rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: .55;
}
.transform-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  font-family: var(--font-heading);
}
.transform-after {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

/* ─── TOOL CARDS (home preview) ──────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tool-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.tool-card:hover {
  border-color: rgba(244,197,66,.3);
  box-shadow: 0 4px 24px rgba(244,197,66,.06);
}
.tool-card-icon {
  width: 46px; height: 46px;
  background: rgba(244,197,66,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.tool-card-icon svg { width: 22px; height: 22px; }
.tool-card h3 { margin-bottom: .65rem; }
.tool-card p  { font-size: .93rem; flex: 1; }
.tool-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: gap .2s ease, color .2s ease;
}
.tool-card-cta:hover { gap: .55rem; color: var(--gold-hover); }

/* ─── HOW IT WORKS — HOME (3 steps row) ──────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 2rem;
}
.step-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(244,197,66,.14);
  line-height: 1;
  margin-bottom: .35rem;
}
.step-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: .65rem;
}

/* ─── TRUST / STATS STRIP ────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.trust-heading { text-align: center; margin-bottom: 2.5rem; }
.trust-heading h2 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
}
.stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: .4rem;
}
.stat-label { font-size: .88rem; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 3.5rem;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 1.5rem; font-size: clamp(1.4rem, 3vw, 2rem); }

/* ─── SOLUTIONS PAGE ─────────────────────────────────────── */
.philosophy-callout {
  border-left: 4px solid var(--gold);
  background: rgba(244,197,66,.04);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0 3.5rem;
}
.philosophy-callout p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-primary);
}

/* Solution detail card */
.solution-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: border-color .2s ease;
}
.solution-card.featured { border-color: rgba(244,197,66,.22); }
.solution-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.solution-icon {
  width: 52px; height: 52px;
  background: rgba(244,197,66,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.solution-icon svg { width: 24px; height: 24px; }
.solution-meta { flex: 1; }
.solution-meta h3 { margin-bottom: .2rem; }
.solution-built-for {
  font-size: .78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.solution-desc { font-size: .97rem; line-height: 1.75; margin-bottom: 1.25rem; }
.capabilities-heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.capabilities-list { display: flex; flex-direction: column; gap: .5rem; }
.capabilities-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .92rem;
  color: var(--text-secondary);
}
.cap-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: .48em;
  flex-shrink: 0;
}
.works-with {
  font-size: .85rem;
  color: var(--text-secondary);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.works-with strong { color: var(--text-primary); }
.solution-card-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Pricing section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}
.pricing-col {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
}
.pricing-col-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: .75rem;
}
.pricing-col p { font-size: .9rem; }
.pricing-note {
  text-align: center;
  font-size: .9rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ─── HOW IT WORKS PAGE ──────────────────────────────────── */
.process-steps {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 27px; top: 28px; bottom: 40px;
  width: 2px;
  background: var(--border);
}
.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.process-step-num {
  width: 56px; height: 56px;
  background: var(--bg-black);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step-body { flex: 1; padding-top: .8rem; padding-bottom: 1.5rem; }
.process-step-body h3 { color: var(--gold); margin-bottom: .7rem; font-size: 1.25rem; }
.step-italics {
  font-style: italic;
  font-size: .85rem;
  color: var(--text-secondary);
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.security-callout {
  border: 1px solid rgba(244,197,66,.35);
  background: rgba(244,197,66,.04);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.security-callout p { font-size: .9rem; color: var(--text-primary); }
.security-callout strong { color: var(--gold); }

/* Data security blocks */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.security-item { display: flex; flex-direction: column; gap: .7rem; }
.security-item-icon {
  width: 44px; height: 44px;
  background: rgba(244,197,66,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.security-item-icon svg { width: 20px; height: 20px; }
.security-item h4 { font-size: 1.1rem; }

/* Audience section */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.audience-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 2rem;
}
.audience-card h3 { margin-bottom: .75rem; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text-primary);
  transition: background .2s ease;
}
.faq-question:hover { background: rgba(255,255,255,.02); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; }
.faq-answer-inner p { font-size: .93rem; line-height: 1.75; }

/* ─── GET STARTED PAGE ───────────────────────────────────── */
.get-started-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.path-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 2.5rem;
}
.path-card h2 { font-size: 1.65rem; margin-bottom: .9rem; }
.path-card > .path-desc { font-size: .97rem; line-height: 1.75; margin-bottom: 2rem; }

/* Form */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: .4rem;
}
.form-group .optional { opacity: .65; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .7rem 1rem;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,197,66,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(181,181,190,.35); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B5B5BE' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input[type="file"] { padding: .55rem; cursor: pointer; }
.form-submit-btn { width: 100%; justify-content: center; margin-top: .75rem; }
.form-privacy {
  font-size: .78rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: .9rem;
  line-height: 1.55;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success-icon {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-icon svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: .65rem; }

/* Calendly placeholder */
.calendly-placeholder {
  border: 1px solid rgba(244,197,66,.3);
  border-radius: var(--card-radius);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,197,66,.02);
  margin-top: 1.75rem;
  padding: 2rem;
}
.calendly-mock {
  text-align: center;
}
.calendly-mock-icon {
  width: 52px; height: 52px;
  background: rgba(244,197,66,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.calendly-mock-icon svg { width: 22px; height: 22px; }
.calendly-mock p { font-size: .9rem; margin-bottom: .4rem; }
.calendly-mock p:last-child { font-size: .82rem; opacity: .7; }

/* What happens next */
.next-steps {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}
.next-steps h2 { text-align: center; margin-bottom: 2.5rem; }
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.next-step-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
}
.next-step-num {
  width: 48px; height: 48px;
  background: rgba(244,197,66,.1);
  border: 1px solid rgba(244,197,66,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.next-step-item h4 { margin-bottom: .45rem; }

/* ─── UTILITIES ───────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* 1024px — tablet landscape: collapse hero to single column, keep widget visible below */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  /* Text first, dashboard widget below */
  .hero-content { order: 1; }
  .hero-visual  { order: 2; display: flex; }
  .hero-sub { max-width: 100%; }
  .dashboard-preview { max-width: 560px; margin: 0 auto; }

  .transform-grid { grid-template-columns: repeat(2, 1fr); }
  .transform-card::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > .footer-brand { grid-column: 1 / -1; }
}

/* 768px — collapse nav to hamburger, continue single-col stacking */
@media (max-width: 768px) {
  :root { --section-pad: 3rem 0; }

  .container { padding: 0 1.25rem; }

  /* Nav collapse */
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  /* Keep logo compact on mobile so nav height stays consistent */
  .nav-logo-img { height: 36px; }
  .nav-logo-main { font-size: 1rem; }
  .nav-logo-sub  { font-size: .58rem; }

  .hero-home { padding: 6.5rem 0 3rem; }
  .page-hero  { padding: 6.5rem 0 3rem; }

  /* Keep dashboard widget visible but constrained */
  .hero-visual  { display: flex; }
  .dashboard-preview { max-width: 100%; }

  .transform-grid   { grid-template-columns: 1fr 1fr; }
  .tools-grid       { grid-template-columns: 1fr; }
  .steps-row        { grid-template-columns: 1fr; }
  .stats-row        { grid-template-columns: 1fr; }
  .security-grid    { grid-template-columns: 1fr; }
  .audience-grid    { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .get-started-grid { grid-template-columns: 1fr; }
  .next-steps-grid  { grid-template-columns: 1fr; }

  .process-steps::before { display: none; }
  .process-step { flex-direction: column; gap: 1rem; }

  .solution-card-top { flex-direction: column; gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .cta-banner { padding: 2.5rem 1.25rem; }
  .path-card  { padding: 2rem 1.25rem; }

  .solution-card { padding: 1.75rem 1.25rem; }
}

/* 480px — small phones */
@media (max-width: 480px) {
  :root { --section-pad: 2.5rem 0; }

  .container { padding: 0 1rem; }

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

  /* Tighten dashboard metrics font on very small screens */
  .dash-metric-value { font-size: 1.1rem; }
  .dash-bar-name     { width: 56px; font-size: .58rem; }

  /* Prevent hero headline overflow */
  h1 { font-size: clamp(1.85rem, 8vw, 2.2rem); }

  .cta-banner { padding: 2rem 1rem; }
  .cta-banner h2 { font-size: clamp(1.25rem, 5vw, 1.6rem); }
}
