:root {
  /* Core Neutrals */
  --ink: #1B1C1E;
  --smoke: #F5F5F5;
  --matte: #2A2D32;
  --steel: #8A8D91;
  --concrete: #D4D6D8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius: 16px;

  /* Brand Accents */
  --red: #C82020;          /* Digital */
  --green: #2E7D4F;        /* Financials */
  --green-dark: #256843;
  --gray-soft: #E5E7EA;    /* Background elements */

  /* Missing vars (added) */
  --amber: #F5A524;
  --crimson: #C82020;      /* same as red */
  --gunmetal: #2A2D32;
}

/* Brand-specific themes */
[data-brand="digital"] {
  --accent: var(--red);
  --hero-bg: url('../images/hero-bg-steel.jpg');
}

[data-brand="financials"] {
  --accent: var(--green);
  --hero-bg: url('../images/bg-graph-paper.jpg');
}

[data-brand="businessgroup"] {
  --accent: var(--ink);
  --hero-bg: url('../images/bg-concrete.jpg');
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================*/

/* --- Header Layout --- */
header {
  position: sticky; 
  top: 0; 
  z-index: 1000;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 14px 20px; 
  background: var(--matte);
  box-shadow: var(--shadow);
}

#brand img {
  height: 38px; 
  display: block;
}

/* --- Desktop Nav --- */
#desktop-nav ul {
  display: flex; 
  gap: 22px; 
  list-style: none; 
  margin: 0; 
  padding: 0;
}

#desktop-nav a {
  display: inline-block; 
  padding: 8px 10px; 
  text-decoration: none;
  color: var(--smoke); 
  font-weight: 600; 
  letter-spacing: .2px;
}

#desktop-nav a:hover { 
  color: var(--amber); 
}

#desktop-nav a.btn {
  background: var(--crimson); 
  color: white; 
  padding: 10px 14px; 
  border-radius: var(--radius);
}

#desktop-nav a.btn:hover { 
  filter: brightness(1.08); 
}

/* --- Mobile hamburger --- */
#menu-btn {
  display: none; 
  background: transparent; 
  border: 0; 
  padding: 8px; 
  cursor: pointer;
}

#menu-btn span {
  display: block; 
  width: 26px; 
  height: 2px; 
  background: var(--smoke);
  margin: 6px 0; 
  transition: transform .2s ease, opacity .2s ease;
}

/* X state */
#menu-btn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
#menu-btn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile menu panel --- */
#mobile-nav {
  position: fixed; 
  top: 60px; 
  left: 0; 
  right: 0;
  background: var(--matte); 
  border-top: 1px solid rgba(255,255,255,.06);
  list-style: none; 
  margin: 0; 
  padding: 12px 16px;
  display: none;           /* JS toggles this to flex */
  flex-direction: column; 
  gap: 4px;
}

#mobile-nav a {
  display: block; 
  padding: 14px 10px;
  text-decoration: none;
  color: var(--smoke); 
  font-weight: 600; 
  border-radius: 12px;
}

#mobile-nav a:hover {
  background: rgba(255,255,255,.06); 
  color: var(--amber);
}

#mobile-nav .btn {
  background: var(--crimson); 
  color: white; 
  text-align: center;
}

/* Mobile visibility */
@media (max-width: 900px) {
  #desktop-nav { display: none; }
  #menu-btn   { display: block; }
}

/* Active link highlight */
#desktop-nav a.active, 
#mobile-nav a.active {
  color: var(--amber);
}

/* Anchor offset so #whyus isn't hidden behind sticky header */
[id] {
  scroll-margin-top: 90px;
}

/* ============================================================
   WHY US SECTION
   ============================================================*/

.whyus-section {
  padding: 80px 20px;
  background: var(--gunmetal);
  color: var(--smoke);
}

.whyus-wrapper {
  max-width: 1100px; 
  margin: 0 auto;
}

.whyus-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 18px;
}

.whyus-lead {
  color: var(--steel);
  max-width: 70ch;
  margin-bottom: 28px;
}

.whyus-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.whyus-card {
  background: rgba(255,255,255,.04);
  padding: 18px;
  border-radius: 16px;
}

.whyus-ca

.pricing-teaser{
  margin-top:1.5rem;
  padding:0.85rem 1rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.28);
  display:inline-flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.5rem;
  font-size:.9rem;
  color:#E2E4E8;
}

.pricing-teaser strong{
  color:var(--crimson);
}

.pricing-teaser a{
  font-weight:600;
  border-bottom:1px dashed rgba(255,255,255,.5);
}

.pricing-teaser a:hover{
  border-bottom-style:solid;
}
