/* ============================================================
   BRIQBI THEME — GLOBAL STYLES
   v1.0.0 | Modular, scalable, page-extendable
   ============================================================ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --orange: #FF5D17;
  --orange-hover: #E54E0E;
  --grey: #7D7D7D;
  --grey-light: #F5F5F5;
  --grey-mid: #E0E0E0;
  --grey-dark: #2A2A2A;
  --green: #22C55E;
  --orange-soft: rgba(255,93,23,0.08);
  --orange-border: rgba(255,93,23,0.25);
  --green-soft: rgba(34,197,94,0.1);
  --error: #EF4444;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-primary-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-dark:hover {
  background: #1a1a1a;
  color: var(--white);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ─── NAVIGATION ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  padding: 0 var(--space-lg);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--black);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

/* Dropdown */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px; /* same as your gap */
}
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown > a::after {
  content: '▾';
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
  padding: 6px;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--grey-light);
}

.dropdown-flag {
  font-size: 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.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 {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 32px var(--space-md);
  overflow-y: auto;
  border-top: 1px solid var(--grey-mid);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-mid);
}

.mobile-menu .mobile-cta {
  margin-top: 32px;
}

.mobile-menu .mobile-submenu {
  padding-left: 16px;
}

.mobile-menu .mobile-submenu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--grey);
}

/* ─── SECTION LABEL ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
}

.section-headline {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 20px;
}

.section-headline .accent {
  color: var(--orange);
}

.section-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--grey);
}

/* ─── FADE IN ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ─── HERO ─── */
.hero {
  background: var(--black);
  padding: 100px var(--space-lg) 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,93,23,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border: 1.5px solid var(--orange);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: 62px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline .accent {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Dashboard Card */
.dashboard-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,93,23,0.1);
  animation: floatCard 4s ease-in-out infinite;
}

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

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}

.live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.metric-row {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-label {
  font-family: 'DM Mono', 'SF Mono', Consolas, monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

.metric-value {
  font-family: 'DM Mono', 'SF Mono', Consolas, monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.metric-change {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  margin-left: 6px;
}

.card-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 20px 0;
}

.agent-activity {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 5px;
  flex-shrink: 0;
}

.activity-dot.dot-green {
  background: var(--green);
}

.activity-text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.activity-time {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-left: auto;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  padding: 20px var(--space-lg);
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
}

.trust-item::before {
  content: '●';
  color: var(--orange);
  font-size: 8px;
}

/* ─── PROBLEM SECTION ─── */
.problem {
  background: var(--white);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

.problem-inner {
  max-width: 680px;
  margin: 0 auto;
}

.problem .section-label {
  justify-content: center;
}

/* ─── THREE PILLARS ─── */
.pillars {
  background: var(--white);
  padding: 0 var(--space-lg) var(--space-2xl);
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-header {
  text-align: center;
  margin-bottom: 56px;
}

.pillars-header .section-label {
  justify-content: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--grey-light);
  border-radius: 14px;
  padding: 36px 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border-color: var(--grey-mid);
}

.pillar-number {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.pillar-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.pillar-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--grey);
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: var(--black);
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.how-it-works .hero-grid-bg {
  opacity: 0.5;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header .section-headline {
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(255,93,23,0.2), var(--orange));
}

.step-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 36px 28px;
  transition: border-color 0.2s;
}

.step-card:hover {
  border-color: rgba(255,93,23,0.3);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ─── SOLUTIONS BY FUNCTION ─── */
.solutions {
  background: var(--white);
  padding: var(--space-2xl) var(--space-lg);
}

.solutions-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-header {
  text-align: center;
  margin-bottom: 56px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-card {
  border: 1px solid var(--grey-mid);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.solution-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.solution-card-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--grey-mid);
}

.solution-function {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.3px;
}

.solution-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.solution-col {
  padding: 20px 20px 24px;
  border-right: 1px solid var(--grey-mid);
}

.solution-col:last-child {
  border-right: none;
}

.solution-col-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 3px solid;
}

.col-human .solution-col-header {
  color: var(--black);
  border-color: var(--black);
}

.col-ai .solution-col-header {
  color: var(--orange);
  border-color: var(--orange);
}

.col-dash .solution-col-header {
  color: var(--grey);
  border-color: var(--grey);
}

.solution-col-body {
  font-size: 12px;
  line-height: 1.65;
  color: var(--grey);
}

/* ─── SOCIAL PROOF ─── */
.social-proof {
  background: var(--grey-light);
  padding: var(--space-2xl) var(--space-lg);
}

.social-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.social-header {
  text-align: center;
  margin-bottom: 56px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 14px;
  padding: 32px 28px;
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  color: var(--orange);
  font-size: 24px;
  font-style: normal;
}

.testimonial-attr {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, #FF5D17 0%, #E04A0A 100%);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  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: 40px 40px;
}

.cta-band-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--grey-dark);
  padding: var(--space-xl) var(--space-lg) 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 220px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-cta {
  background: rgba(255,93,23,0.1);
  border: 1px solid rgba(255,93,23,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.footer-cta-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.footer-cta-body {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-contact {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

.footer-contact a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

  .hero-headline {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 var(--space-md);
  }

  .nav-links {
    display: none;
  }

  .nav-cta-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px var(--space-md) 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-headline {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .dashboard-card {
    display: none;
  }

  .problem,
  .pillars,
  .how-it-works,
  .solutions,
  .social-proof {
    padding: 60px var(--space-md);
  }

  .pillars {
    padding-top: 0;
  }

  .pillar-grid,
  .steps-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .steps-grid::before {
    display: none;
  }

  .section-headline {
    font-size: 28px;
  }

  .solution-cols {
    grid-template-columns: 1fr;
  }

  .solution-col {
    border-right: none;
    border-bottom: 1px solid var(--grey-mid);
  }

  .solution-col:last-child {
    border-bottom: none;
  }

  .cta-band {
    padding: 60px var(--space-md);
  }

  .cta-headline {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .trust-bar {
    padding: 20px var(--space-md);
  }

  .trust-bar-inner {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 34px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ═══════════════════════════════════════════════
   WORDPRESS MENU OVERRIDES
   wp_nav_menu() wraps items in <ul><li><a>.
   These rules normalise that output to match
   the Briqbi design without touching the walker.
   ═══════════════════════════════════════════════ */

/* Mobile nav list generated by wp_nav_menu */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-mid);
  transition: color 0.2s;
}

.mobile-nav-list li a:hover {
  color: var(--orange);
}

/* Sub-menu (dropdown children) inside mobile */
.mobile-nav-list .sub-menu {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
}

.mobile-nav-list .sub-menu li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--grey);
  border-bottom: 1px solid var(--grey-mid);
}

/* Footer menus generated by wp_nav_menu */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: var(--white);
}

/* Remove WP default current-menu-item underlines */
.footer-links .current-menu-item a,
.footer-links .current_page_item a {
  color: var(--white);
}


/* ─── MOBILE SUBMENU TOGGLE BUTTON ─── */
.submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  color: var(--grey);
  font-size: 14px;
  line-height: 1;
  float: right;
  margin-top: -40px; /* align with parent link */
}

.submenu-toggle span {
  display: inline-block;
  transition: transform 0.2s;
}

/* Clear float */
.mobile-nav-list .menu-item-has-children::after {
  content: '';
  display: table;
  clear: both;
}


/* ════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ════════════════════════════════════════════════════ */

/* ── ABOUT HERO ── */
.about-hero {
  background: var(--black);
  padding: 100px 48px 0;
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.about-hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.glow-l {
  position: absolute; top: -80px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,93,23,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.glow-r {
  position: absolute; bottom: 0; right: -40px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,93,23,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  position: relative; z-index: 1;
}

.about-hero-left { padding-bottom: 80px; }

.about-hero-headline {
  font-size: 54px; font-weight: 900; line-height: 1.06;
  letter-spacing: -2px; color: var(--white); margin-bottom: 24px;
}

.about-hero-headline .accent { color: var(--orange); }

.about-hero-subtitle {
  font-size: 17px; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.5); max-width: 460px;
}

/* ── FOUNDER CARD ── */
.founder-card {
  align-self: flex-end;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  padding: 36px 32px 40px;
  position: relative;
}

.founder-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hover));
}

.founder-avatar-wrap {
  display: flex; align-items: flex-end; gap: 20px; margin-bottom: 28px;
}

.founder-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #c23f0e);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; color: var(--white);
  flex-shrink: 0; border: 3px solid rgba(255,93,23,0.3);
  letter-spacing: -1px;
}

.founder-meta { flex: 1; }

.founder-name {
  font-size: 20px; font-weight: 800; color: var(--white);
  letter-spacing: -0.4px; margin-bottom: 4px;
}

.founder-role { font-size: 13px; color: rgba(255,255,255,0.45); }

.founder-quote {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px; font-style: italic; font-weight: 400;
  line-height: 1.75; color: rgba(255,255,255,0.7);
  border-left: 2px solid var(--orange);
  padding-left: 18px; margin-bottom: 24px;
}

.founder-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.f-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 14px 16px;
}

.f-stat-val {
  font-family: 'DM Mono', monospace;
  font-size: 22px; font-weight: 500; color: var(--white);
  letter-spacing: -1px; line-height: 1; margin-bottom: 4px;
}

.f-stat-val .or { color: var(--orange); }
.f-stat-label { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.4; }

/* ── NUMBERS BAND ── */
.numbers-band {
  background: var(--grey-light);
  padding: 72px 48px;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}

.numbers-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}

.number-block {
  padding: 16px 32px;
  border-right: 1px solid var(--grey-mid);
  text-align: center;
}

.number-block:last-child { border-right: none; }

.nb-val {
  font-family: 'DM Mono', monospace;
  font-size: 40px; font-weight: 500; color: var(--black);
  letter-spacing: -2px; line-height: 1; margin-bottom: 8px;
}
.nb-val{
	display: flex;
    justify-content: center;
    gap: 5px;
}
.nb-val .or { color: var(--orange); }
.nb-label { font-size: 13px; color: var(--grey); line-height: 1.4; font-weight: 500; }

/* ── STORY SECTION ── */
.story {
  background: var(--white);
  padding: 100px 48px;
}

.story-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 340px 1fr;
  gap: 100px; align-items: start;
}

.story-sidebar { position: sticky; top: 88px; }

.story-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 40px; }

.story-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--grey);
  cursor: pointer; transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.story-nav-item:hover,
.story-nav-item.active {
  background: rgba(255,93,23,0.08);
  color: var(--orange);
}

.story-nav-item::before {
  content: attr(data-num);
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  color: var(--grey); width: 20px; flex-shrink: 0;
}

.story-nav-item.active::before { color: var(--orange); }

.story-content { display: flex; flex-direction: column; }

.story-chapter {
  padding: 0 0 64px;
  border-bottom: 1px solid var(--grey-mid);
  margin-bottom: 64px;
}

.story-chapter:last-child {
  border-bottom: none; padding-bottom: 0; margin-bottom: 0;
}

.chapter-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--orange);
  letter-spacing: 1px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}

.chapter-eyebrow::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,93,23,0.08);
}

.chapter-title {
  font-size: 28px; font-weight: 900; letter-spacing: -0.8px;
  color: var(--black); margin-bottom: 20px; line-height: 1.2;
}

.chapter-body {
  font-size: 16px; line-height: 1.85; color: var(--grey);
  display: flex; flex-direction: column; gap: 16px;
}

.chapter-body strong { color: var(--black); font-weight: 700; }

.pullquote {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px; font-style: italic; font-weight: 400;
  line-height: 1.65; color: var(--black);
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 24px; margin: 8px 0;
}

.chapter-milestones {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}

.milestone {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--grey-light);
  border-radius: 100px; font-size: 12px; font-weight: 700; color: var(--black);
}

.milestone::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ── TIMELINE ── */
.timeline-section {
  background: var(--black);
  padding: 100px 48px;
  position: relative; overflow: hidden;
}

.timeline-section .grid-bg { opacity: 0.35; }

.timeline-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}

.timeline-header { max-width: 560px; margin-bottom: 72px; }
.timeline-header .section-headline { color: var(--white); }

.timeline {
  position: relative; padding-left: 32px;
}

.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(255,93,23,0.1));
}

.tl-item {
  position: relative; padding: 0 0 56px 40px;
  display: grid; grid-template-columns: 120px 1fr;
  gap: 48px; align-items: start;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute; left: -7px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 3px solid var(--black);
  box-shadow: 0 0 0 3px rgba(255,93,23,0.25);
}

.tl-year {
  font-family: 'DM Mono', monospace;
  font-size: 13px; font-weight: 500; color: var(--orange);
  letter-spacing: 0.5px; padding-top: 4px;
}

.tl-title {
  font-size: 18px; font-weight: 800; color: var(--white);
  letter-spacing: -0.3px; margin-bottom: 8px;
}

.tl-body {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5);
}

/* ── PRINCIPLES ── */
.principles {
  background: var(--white);
  padding: 100px 48px;
}

.principles-inner { max-width: 1200px; margin: 0 auto; }

.principles-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}

.principles-header p { font-size: 16px; line-height: 1.75; color: var(--grey); }

.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.principle-card {
  border: 1px solid var(--grey-mid); border-radius: 14px;
  padding: 36px 32px; position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.principle-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,93,23,0.25);
}

.principle-card::after {
  content: attr(data-num);
  position: absolute; right: 24px; bottom: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 64px; font-weight: 500; color: rgba(0,0,0,0.04);
  line-height: 1; pointer-events: none; letter-spacing: -3px;
}

.pc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,93,23,0.08);
  display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}

.pc-title {
  font-size: 20px; font-weight: 800; letter-spacing: -0.4px;
  color: var(--black); margin-bottom: 10px;
}

.pc-body { font-size: 14px; line-height: 1.75; color: var(--grey); }

/* ── TEAM ── */
.team-section { background: var(--white); padding: 100px 48px; }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-header { max-width: 600px; margin-bottom: 64px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.team-card {
  border: 1px solid var(--grey-mid); border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.team-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: rgba(255,93,23,0.2);
}

.tc-top {
  height: 100px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 0 24px;
}

.tc-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--white);
  border: 3px solid var(--white); margin-bottom: -20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative; z-index: 1; flex-shrink: 0;
}

.tc-body { padding: 32px 24px 28px; }
.tc-name { font-size: 17px; font-weight: 800; color: var(--black); letter-spacing: -0.3px; margin-bottom: 2px; }
.tc-role { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
.tc-bio { font-size: 13px; line-height: 1.65; color: var(--grey); }
.tc-tag {
  display: inline-flex; margin-top: 14px; padding: 4px 12px;
  background: var(--grey-light); border-radius: 100px;
  font-size: 11px; font-weight: 700; color: var(--grey);
}

/* ── FADE-UP ANIMATION (About page uses fade-up, not fade-in) ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 960px) {
  .about-hero { padding: 60px 24px 0; min-height: auto; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-headline { font-size: 38px; }
  .founder-card {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
  }
  .numbers-band { padding: 56px 24px; }
  .numbers-inner { grid-template-columns: 1fr 1fr; }
  .number-block:nth-child(2) { border-right: none; }
  .number-block:nth-child(3) { border-right: 1px solid var(--grey-mid); border-top: 1px solid var(--grey-mid); }
  .number-block:nth-child(4) { border-right: none; border-top: 1px solid var(--grey-mid); }
  .story { padding: 64px 24px; }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-sidebar { position: static; }
  .story-nav { display: none; }
  .timeline-section { padding: 64px 24px; }
  .tl-item { grid-template-columns: 80px 1fr; gap: 24px; }
  .principles { padding: 64px 24px; }
  .principles-header { grid-template-columns: 1fr; gap: 24px; }
  .principles-grid { grid-template-columns: 1fr; }
  .team-section { padding: 64px 24px; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .about-hero-headline { font-size: 30px; }
  .founder-stats { grid-template-columns: 1fr; }
  .numbers-inner { grid-template-columns: 1fr; }
  .number-block { border-right: none; border-bottom: 1px solid var(--grey-mid); }
  .number-block:last-child { border-bottom: none; }
  .tl-item { grid-template-columns: 60px 1fr; gap: 16px; }
}


/* ════════════════════════════════════════════════════
   MEDIA IMAGE OVERRIDES
   Handles WP image fields replacing emoji/initials
   ════════════════════════════════════════════════════ */

/* Founder avatar — image replaces initials text */
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Team card avatar — image replaces initials */
.tc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Team card top — photo replaces gradient bg */
.tc-top img.tc-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.6;
}

/* Trust bar icons */
.trust-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Principle card icon — image replaces emoji */
.pc-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Story chapter image (optional) */
.chapter-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.chapter-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero background image (optional overlay) */
.about-hero.has-bg-image .grid-bg {
  opacity: 0.4;
}

/* Logo image (if using image instead of text) */
.logo img,
.footer-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}


/* ════════════════════════════════════════════════════
   SOLUTIONS PAGE STYLES
   ════════════════════════════════════════════════════ */

/* ── SOLUTIONS HERO ── */
.solutions-hero {
  background: var(--black);
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

.solutions-hero .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.solutions-hero .hero-glow {
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,93,23,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.solutions-hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}

.solutions-hero-left { max-width: 580px; }

.solutions-hero-headline {
  font-size: 54px; font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; color: var(--white); margin-bottom: 24px;
}

.solutions-hero-headline .accent { color: var(--orange); }

.solutions-hero-subtitle {
  font-size: 18px; font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* Jump nav (right column) */
.hero-right { display: flex; flex-direction: column; gap: 12px; }

.jump-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px;
}

.jump-links { display: flex; flex-direction: column; gap: 2px; }

.jump-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.jump-link:hover {
  background: rgba(255,93,23,0.08);
  border-color: rgba(255,93,23,0.25);
}

.jump-link-num {
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500;
  color: var(--orange); width: 18px; flex-shrink: 0;
}

.jump-link-name { font-size: 14px; font-weight: 700; color: var(--white); flex: 1; }
.jump-link-arrow { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── SOLUTION SECTIONS ── */
.solutions-wrap { background: var(--white); }

.solution-section {
  border-bottom: 1px solid var(--grey-mid);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.solution-section:nth-child(even) { background: var(--grey-light); }

.solution-inner { max-width: 1200px; margin: 0 auto; }

.sol-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-bottom: 56px;
}

.sol-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}

.sol-label::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--orange); flex-shrink: 0;
}

.sol-label span {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--orange); text-transform: uppercase;
}

.sol-number {
  font-family: 'DM Mono', monospace;
  font-size: 80px; font-weight: 500; line-height: 1;
  color: var(--grey-mid); position: absolute;
  top: 64px; right: 48px;
  pointer-events: none; user-select: none;
  letter-spacing: -4px;
}

.solution-section:nth-child(even) .sol-number { color: rgba(0,0,0,0.06); }

.sol-title {
  font-size: 38px; font-weight: 900; line-height: 1.12;
  letter-spacing: -1px; color: var(--black); margin-bottom: 12px;
}

.sol-tagline {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}

.sol-desc {
  font-size: 15px; font-weight: 400; line-height: 1.75; color: var(--grey);
}

/* Role chips */
.sol-roles { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

.role-chip {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--black);
  white-space: nowrap;
}

/* Metrics strip */
.metrics-strip {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 32px;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}

.metric-num {
  font-family: 'DM Mono', monospace;
  font-size: 22px; font-weight: 500; color: var(--black); letter-spacing: -1px;
}

.metric-num.accent { color: var(--orange); }
.metric-label-sm { font-size: 11px; font-weight: 600; color: var(--grey); letter-spacing: 0.3px; }

/* 3-column blended model */
.blend-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--grey-mid);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.blend-col {
  background: var(--white);
  padding: 28px 24px 32px;
  position: relative;
}

.blend-col:nth-child(2) { background: #fff9f7; }

.blend-col-top {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 18px; margin-bottom: 20px;
  border-bottom: 3px solid;
}

.blend-col:nth-child(1) .blend-col-top { border-color: var(--black); }
.blend-col:nth-child(2) .blend-col-top { border-color: var(--orange); }
.blend-col:nth-child(3) .blend-col-top { border-color: var(--grey-mid); }

.blend-col-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  overflow: hidden;
}

.blend-col-icon img {
  width: 20px; height: 20px; object-fit: contain;
}

.blend-col:nth-child(1) .blend-col-icon { background: var(--black); }
.blend-col:nth-child(2) .blend-col-icon { background: var(--orange); }
.blend-col:nth-child(3) .blend-col-icon { background: var(--grey-mid); }

.blend-col-heading {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}

.blend-col:nth-child(1) .blend-col-heading { color: var(--black); }
.blend-col:nth-child(2) .blend-col-heading { color: var(--orange); }
.blend-col:nth-child(3) .blend-col-heading { color: var(--grey); }

.blend-items { display: flex; flex-direction: column; gap: 10px; }

.blend-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; font-weight: 400; line-height: 1.5; color: var(--black);
}

.blend-item::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}

.blend-col:nth-child(1) .blend-item::before { background: var(--black); }
.blend-col:nth-child(2) .blend-item::before { background: var(--orange); }
.blend-col:nth-child(3) .blend-item::before { background: var(--grey); }

/* ── CROSS-SELL SECTION ── */
.cross-sell {
  background: var(--black);
  padding: 80px 48px;
  position: relative; overflow: hidden;
}

.cross-sell .hero-grid { opacity: 0.4; }

.cross-sell-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.cross-sell-headline {
  font-size: 38px; font-weight: 900; line-height: 1.15;
  letter-spacing: -1px; color: var(--white); margin-bottom: 20px;
}

.cross-sell-body {
  font-size: 16px; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.5); margin-bottom: 36px;
}

.cross-sell-btns { display: flex; gap: 14px; }

.trust-chips { display: flex; flex-direction: column; gap: 14px; }

.trust-chip {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 18px 20px;
}

.trust-chip-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,93,23,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  overflow: hidden;
}

.trust-chip-icon img {
  width: 22px; height: 22px; object-fit: contain;
}

.trust-chip-text { display: flex; flex-direction: column; gap: 2px; }
.trust-chip-title { font-size: 14px; font-weight: 700; color: var(--white); }
.trust-chip-sub { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── SOLUTIONS RESPONSIVE ── */
@media (max-width: 900px) {
  .solutions-hero { padding: 60px 24px 48px; }
  .solutions-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .solutions-hero-headline { font-size: 36px; }
  .solution-section { padding: 56px 24px; }
  .sol-top { grid-template-columns: 1fr; gap: 32px; }
  .sol-number { display: none; }
  .blend-cols { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .cross-sell { padding: 56px 24px; }
  .cross-sell-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .solutions-hero-headline { font-size: 28px; }
  .metrics-strip { grid-template-columns: 1fr 1fr; }
  .cross-sell-btns { flex-direction: column; }
}

/* Homepage solution card — linked header state */
.solution-function--link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--black);
  transition: color 0.2s;
}

.solution-function--link:hover {
  color: var(--orange);
}

.solution-link-arrow {
  font-size: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.solution-function--link:hover .solution-link-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ════════════════════════════════════════════════════
   AI AGENTS PAGE STYLES
   ════════════════════════════════════════════════════ */

/* ── AI AGENTS HERO ── */
.ai-hero {
  background: var(--black);
  padding: 100px 48px 0;
  position: relative;
  overflow: hidden;
}

.ai-hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow-left {
  position: absolute; top: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,93,23,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-right {
  position: absolute; bottom: 0; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,93,23,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.ai-hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}

.ai-hero-left { padding-bottom: 80px; }

.ai-hero-headline {
  font-size: 54px; font-weight: 900; line-height: 1.06;
  letter-spacing: -2px; color: var(--white); margin-bottom: 24px;
}

.ai-hero-headline .accent { color: var(--orange); }

.ai-hero-subtitle {
  font-size: 17px; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.5); margin-bottom: 40px; max-width: 480px;
}

.ai-hero-ctas { display: flex; gap: 14px; align-items: center; }

/* ── HERO TERMINAL (STATIC) ── */
.hero-terminal {
  align-self: flex-end;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 -24px 80px rgba(255,93,23,0.08), 0 0 0 1px rgba(255,93,23,0.07);
}

.terminal-bar {
  background: #1a1a1a;
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.terminal-dots { display: flex; gap: 6px; }
.terminal-dots span { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dots span:nth-child(1) { background: #FF5F56; }
.terminal-dots span:nth-child(2) { background: #FFBD2E; }
.terminal-dots span:nth-child(3) { background: #27C93F; }

.terminal-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px;
}

.terminal-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--green);
}

.terminal-live::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
}

@keyframes blink {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0); }
}

.terminal-body {
  padding: 20px 20px 0;
  display: flex; flex-direction: column; gap: 6px;
}

.log-line {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 11.5px; line-height: 1.5;
  padding: 7px 10px; border-radius: 6px;
  animation: slideLog 0.4s ease both;
}

@keyframes slideLog {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: none; }
}

.log-line:nth-child(1) { animation-delay: 0.10s; }
.log-line:nth-child(2) { animation-delay: 0.35s; }
.log-line:nth-child(3) { animation-delay: 0.60s; }
.log-line:nth-child(4) { animation-delay: 0.85s; }
.log-line:nth-child(5) { animation-delay: 1.10s; }
.log-line:nth-child(6) { animation-delay: 1.35s; }
.log-line:nth-child(7) { animation-delay: 1.60s; }

.log-line.success { background: rgba(34,197,94,0.07); }
.log-line.process { background: rgba(255,93,23,0.06); }
.log-line.info    { background: rgba(255,255,255,0.03); }

.log-ts  { color: rgba(255,255,255,0.25); flex-shrink: 0; }

.log-tag {
  font-size: 10px; font-weight: 700; padding: 1px 7px;
  border-radius: 4px; flex-shrink: 0; letter-spacing: 0.5px;
}

.tag-ok  { background: rgba(34,197,94,0.15);    color: var(--green); }
.tag-run { background: rgba(255,93,23,0.15);     color: var(--orange); }
.tag-inf { background: rgba(255,255,255,0.08);   color: rgba(255,255,255,0.5); }

.log-msg      { color: rgba(255,255,255,0.6); }
.log-msg .hi  { color: var(--white); }
.log-msg .num { color: var(--orange); font-weight: 500; }
.log-msg .ok  { color: var(--green); }

.terminal-footer {
  padding: 14px 20px 18px;
  display: flex; align-items: center; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
}

.cursor {
  width: 8px; height: 16px; background: var(--orange);
  animation: cursorBlink 1.1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.terminal-prompt {
  font-family: 'DM Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.25);
}

/* ── STAT TICKER ── */
.ticker-bar {
  background: var(--orange);
  padding: 14px 0; overflow: hidden; position: relative;
}

.ticker-inner {
  display: flex; gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 40px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white);
}

.ticker-item::after {
  content: '●'; font-size: 6px; opacity: 0.5; margin-left: 10px;
}

/* ── AGENT CARDS ── */
.agents-section {
  background: var(--white);
  padding: 100px 48px;
}

.agents-inner { max-width: 1200px; margin: 0 auto; }

.agents-header { max-width: 640px; margin-bottom: 64px; }
.agents-header .section-headline { margin-bottom: 16px; }
.agents-header p { font-size: 16px; line-height: 1.75; color: var(--grey); }

.agents-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.agent-card {
  border: 1px solid var(--grey-mid);
  border-radius: 14px; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.agent-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: rgba(255,93,23,0.3);
}

.agent-card-top {
  padding: 28px 24px 24px;
  background: var(--grey-light);
  position: relative; overflow: hidden;
}

.agent-card-top::after {
  content: attr(data-num);
  position: absolute; right: 16px; top: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 52px; font-weight: 500; line-height: 1;
  color: rgba(0,0,0,0.05); letter-spacing: -2px;
  pointer-events: none;
}

.agent-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px; flex-shrink: 0;
  overflow: hidden;
}

.agent-icon img {
  width: 26px; height: 26px; object-fit: contain;
}

.agent-name {
  font-size: 17px; font-weight: 800; letter-spacing: -0.4px;
  color: var(--black); margin-bottom: 6px;
}

.agent-desc {
  font-size: 13px; line-height: 1.6; color: var(--grey);
}

.agent-card-bottom {
  padding: 20px 24px 24px;
  background: var(--white);
  display: flex; flex-direction: column; gap: 14px;
}

.ba-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.ba-box {
  border-radius: 8px; padding: 10px 12px; text-align: center;
}

.ba-box.before { background: var(--grey-light); }
.ba-box.after  { background: rgba(255,93,23,0.08); }

.ba-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 4px;
}

.ba-box.before .ba-label { color: var(--grey); }
.ba-box.after  .ba-label { color: var(--orange); }

.ba-val {
  font-family: 'DM Mono', monospace;
  font-size: 14px; font-weight: 500; letter-spacing: -0.3px;
}

.ba-box.before .ba-val { color: var(--grey); }
.ba-box.after  .ba-val { color: var(--orange); }

.agent-throughput {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--grey-light); border-radius: 8px;
}

.throughput-label { font-size: 11px; font-weight: 600; color: var(--grey); }
.throughput-val   {
  font-family: 'DM Mono', monospace;
  font-size: 12px; font-weight: 500; color: var(--black);
}

.throughput-val .green { color: var(--green); }

/* ── HUMAN-SUPERVISED SECTION ── */
.supervised {
  background: var(--black);
  padding: 100px 48px;
  position: relative; overflow: hidden;
}

.supervised .grid-bg { opacity: 0.4; }

.supervised-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
  position: relative; z-index: 1;
}

.supervised .section-label::before { background: var(--orange); }
.supervised .section-headline { color: var(--white); }
.supervised .section-headline .accent { color: var(--orange); }

.supervised-body {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.5); margin-bottom: 40px;
}

.check-list { display: flex; flex-direction: column; gap: 16px; }

.check-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.75); line-height: 1.5;
}

.check-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(34,197,94,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 12px; color: var(--green);
}

/* Workflow diagram */
.workflow-diagram { display: flex; flex-direction: column; gap: 4px; }

.wf-node {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 18px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.wf-node:hover {
  border-color: rgba(255,93,23,0.25);
  background: rgba(255,93,23,0.04);
}

.wf-node-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0; overflow: hidden;
}

.wf-node-icon img { width: 22px; height: 22px; object-fit: contain; }

.wf-node-ai   .wf-node-icon { background: rgba(255,93,23,0.12); }
.wf-node-human .wf-node-icon { background: rgba(255,255,255,0.08); }
.wf-node-dash .wf-node-icon  { background: rgba(34,197,94,0.1); }

.wf-node-text { flex: 1; }
.wf-node-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.wf-node-sub   { font-size: 12px; color: rgba(255,255,255,0.4); }

.wf-node-badge {
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; letter-spacing: 0.5px;
}

.badge-ai    { background: rgba(255,93,23,0.15);    color: var(--orange); }
.badge-human { background: rgba(255,255,255,0.1);   color: rgba(255,255,255,0.6); }
.badge-auto  { background: rgba(34,197,94,0.12);    color: var(--green); }

.wf-connector {
  width: 2px; height: 20px;
  background: rgba(255,255,255,0.06);
  margin-left: 38px;
}

/* ── INTEGRATIONS ── */
.integrations {
  background: var(--grey-light);
  padding: 100px 48px;
}

.integrations-inner { max-width: 1200px; margin: 0 auto; }

.integrations-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 64px;
}

.integrations-header p { font-size: 16px; line-height: 1.75; color: var(--grey); }

.tools-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}

.tool-chip {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 12px; padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.tool-chip:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(255,93,23,0.1);
  transform: translateY(-3px);
}

.tool-logo {
  	width:80px;
	height:80px;
   border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; overflow: hidden;
}

.tool-logo img {
  width: 100%; height: 100%; object-fit: contain;
}

.tool-name { font-size: 11px; font-weight: 700; color: var(--black); text-align: center; }
.tool-cat  { font-size: 10px; color: var(--grey); text-align: center; }

/* ── COMPLIANCE STRIP ── */
.compliance {
  background: var(--white);
  padding: 80px 48px;
  border-top: 1px solid var(--grey-mid);
}

.compliance-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.compliance-card {
  background: var(--grey-light);
  border-radius: 14px; padding: 28px 24px; text-align: center;
}

.compliance-icon {
  font-size: 28px; margin-bottom: 14px; display: block; line-height: 1;
  overflow: hidden;
}

.compliance-icon img {
  width: 32px; height: 32px; object-fit: contain; margin: 0 auto;
}

.compliance-title {
  font-size: 14px; font-weight: 800; color: var(--black);
  margin-bottom: 8px; letter-spacing: -0.2px;
}

.compliance-desc { font-size: 12px; line-height: 1.6; color: var(--grey); }

/* ── AI AGENTS RESPONSIVE ── */
@media (max-width: 960px) {
  .ai-hero { padding: 60px 24px 0; }
  .ai-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ai-hero-headline { font-size: 38px; }
  .hero-terminal { display: none; }
  .agents-section, .supervised, .integrations { padding: 64px 24px; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .supervised-inner { grid-template-columns: 1fr; gap: 48px; }
  .integrations-header { grid-template-columns: 1fr; gap: 24px; }
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
  .compliance-inner { grid-template-columns: repeat(2, 1fr); }
  .compliance { padding: 56px 24px; }
}

@media (max-width: 600px) {
  .ai-hero-headline { font-size: 30px; }
  .agents-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .compliance-inner { grid-template-columns: 1fr 1fr; }
  .ai-hero-ctas { flex-direction: column; align-items: flex-start; }
}


/* ════════════════════════════════════════════════════
   DASHBOARD PAGE STYLES
   ════════════════════════════════════════════════════ */

/* ── DASHBOARD HERO ── */
.dash-hero {
  background: var(--black);
  padding: 100px 48px 0;
  position: relative;
  overflow: hidden;
}

.dash-hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.glow-tl {
  position: absolute; top: -100px; left: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,93,23,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.glow-br {
  position: absolute; bottom: 80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,93,23,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.dash-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero top: 2-col copy + stat cards */
.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 64px;
}

.dash-hero-headline {
  font-size: 54px; font-weight: 900; line-height: 1.06;
  letter-spacing: -2px; color: var(--white); margin-bottom: 24px;
}

.dash-hero-headline .accent { color: var(--orange); }

.dash-hero-subtitle {
  font-size: 17px; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.5); margin-bottom: 40px; max-width: 460px;
}

.dash-hero-ctas { display: flex; gap: 14px; }

/* Hero right stat cards */
.hero-stats { display: flex; flex-direction: column; gap: 14px; }

.hero-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.2s, background 0.2s;
}

.hero-stat-card:hover {
  border-color: rgba(255,93,23,0.25);
  background: rgba(255,93,23,0.04);
}

.hs-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; overflow: hidden;
}

.hs-icon img { width: 22px; height: 22px; object-fit: contain; }
.hs-icon.orange { background: rgba(255,93,23,0.12); }
.hs-icon.green  { background: rgba(34,197,94,0.1); }
.hs-icon.white  { background: rgba(255,255,255,0.08); }
.hs-icon.blue   { background: rgba(96,165,250,0.1); }

.hs-text { flex: 1; }

.hs-val {
  font-family: 'DM Mono', monospace;
  font-size: 20px; font-weight: 500; color: var(--white);
  letter-spacing: -0.5px; line-height: 1; margin-bottom: 3px;
}

.hs-label { font-size: 12px; color: rgba(255,255,255,0.4); }

.hs-change {
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  white-space: nowrap;
}

.hs-change.up      { background: rgba(34,197,94,0.12);   color: var(--green); }
.hs-change.neutral { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }

/* ── DASHBOARD MOCKUP (STATIC) ── */
.dash-mockup-wrap { position: relative; z-index: 1; }

.dash-mockup {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 -32px 100px rgba(255,93,23,0.07), 0 0 0 1px rgba(255,93,23,0.06);
}

/* Chrome bar */
.mockup-chrome {
  background: #1a1a1a;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dots span:nth-child(1) { background: #FF5F56; }
.chrome-dots span:nth-child(2) { background: #FFBD2E; }
.chrome-dots span:nth-child(3) { background: #27C93F; }

.chrome-url {
  flex: 1; background: rgba(255,255,255,0.06);
  border-radius: 6px; padding: 6px 14px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.3px;
}

.chrome-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--green);
}

.chrome-live::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
}

/* Mockup tabs */
.mockup-tabs {
  background: #161616;
  display: flex; align-items: center; gap: 2px;
  padding: 10px 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mtab {
  padding: 8px 18px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.35); border-radius: 6px 6px 0 0;
  cursor: pointer; transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
}

.mtab.active {
  color: var(--white); background: #1e1e1e;
  border-bottom-color: var(--orange);
}

.mtab:not(.active):hover { color: rgba(255,255,255,0.6); }

/* Mockup body grid */
.mockup-body {
  background: #141414;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
}

/* KPI cards */
.kpi {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 18px 16px;
}

.kpi-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px;
}

.kpi-val {
  font-family: 'DM Mono', monospace;
  font-size: 24px; font-weight: 500; color: var(--white);
  letter-spacing: -1px; line-height: 1; margin-bottom: 8px;
}

.kpi-sub { font-size: 11px; color: rgba(255,255,255,0.3); }
.kpi-up  { color: var(--green); font-weight: 700; }
.kpi-or  { color: var(--orange); }

/* Mini chart bars */
.mini-bars {
  display: flex; align-items: flex-end; gap: 3px;
  height: 28px; margin-top: 10px;
}

.mbar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: rgba(255,255,255,0.1);
}

.mbar.active    { background: var(--orange); }
.mbar.green-bar { background: var(--green); }

/* Activity feed */
.mockup-activity {
  grid-column: span 2;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 18px;
}

.act-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}

.act-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.act-see   { font-size: 11px; font-weight: 600; color: var(--orange); cursor: pointer; }

.act-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}

.act-item:last-child { border-bottom: none; padding-bottom: 0; }

.act-dot { width: 7px; height: 7px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.dot-or  { background: var(--orange); }
.dot-gr  { background: var(--green); }
.dot-wh  { background: rgba(255,255,255,0.25); }

.act-msg { flex: 1; font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.act-msg strong { color: rgba(255,255,255,0.8); font-weight: 600; }
.act-time { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.2); flex-shrink: 0; }

/* Team table */
.mockup-table {
  grid-column: span 4;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; overflow: hidden;
}

.tbl-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}

.tbl-th { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.tbl-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 11px 18px; border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center; transition: background 0.15s;
}

.tbl-row:last-child { border-bottom: none; }
.tbl-row:hover { background: rgba(255,255,255,0.02); }

.tbl-td { font-size: 12px; color: rgba(255,255,255,0.6); font-family: 'DM Mono', monospace; }

.tbl-name { display: flex; align-items: center; gap: 10px; }

.tbl-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
  overflow: hidden;
}

.tbl-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tbl-name-txt { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; font-family: 'Outfit', sans-serif; }
.tbl-type     { font-size: 10px; color: rgba(255,255,255,0.3); font-family: 'Outfit', sans-serif; }

.pill { display: inline-flex; padding: 2px 9px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; font-family: 'Outfit', sans-serif; }
.pill-or { background: rgba(255,93,23,0.15);  color: var(--orange); }
.pill-gr { background: rgba(34,197,94,0.12);  color: var(--green); }
.pill-wh { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

.spark { display: flex; align-items: flex-end; gap: 2px; height: 18px; }
.spark span { flex: 1; border-radius: 1px; background: rgba(255,255,255,0.12); }
.spark span.hi { background: var(--green); }
.spark span.md { background: var(--orange); }

/* ── DASHBOARD MODULES ── */
.modules { background: var(--white); padding: 100px 48px; }
.modules-inner { max-width: 1200px; margin: 0 auto; }

.modules-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 64px;
}

.modules-header p { font-size: 16px; line-height: 1.75; color: var(--grey); }

.modules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.module-card {
  border: 1px solid var(--grey-mid); border-radius: 14px; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.module-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: rgba(255,93,23,0.25);
}

.module-top {
  padding: 32px 28px 28px;
  position: relative; overflow: hidden;
}

.module-top::after {
  content: attr(data-icon);
  position: absolute; right: 24px; top: 16px;
  font-size: 56px; opacity: 0.08;
  pointer-events: none; line-height: 1;
}

.module-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  color: var(--orange); letter-spacing: 1px;
  margin-bottom: 14px; display: block;
}

.module-title {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--black); margin-bottom: 10px;
}

.module-icon-img {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,93,23,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; overflow: hidden;
  font-size: 20px;
}

.module-icon-img img { width: 26px; height: 26px; object-fit: contain; }

.module-desc { font-size: 14px; line-height: 1.7; color: var(--grey); }

.module-metrics {
  padding: 0 28px 28px;
  display: flex; flex-direction: column; gap: 10px;
}

.module-metric {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: var(--grey-light); border-radius: 8px;
}

.mm-label { font-size: 12px; font-weight: 600; color: var(--grey); }
.mm-val   { font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 500; color: var(--black); }
.mm-val .or { color: var(--orange); }
.mm-val .gr { color: var(--green); }

/* ── ROI SECTION ── */
.roi-section {
  background: var(--black);
  padding: 100px 48px;
  position: relative; overflow: hidden;
}

.roi-section .grid-bg { opacity: 0.35; }

.roi-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.roi-section .section-headline { color: var(--white); }
.roi-section .section-headline .accent { color: var(--orange); }

.roi-body {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.5); margin-bottom: 40px;
}

.roi-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.roi-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 22px 20px;
}

.roi-stat-val {
  font-family: 'DM Mono', monospace;
  font-size: 30px; font-weight: 500; color: var(--white);
  letter-spacing: -1px; line-height: 1; margin-bottom: 6px;
}

.roi-stat-val .or { color: var(--orange); }
.roi-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* Comparison chart */
.compare-chart { display: flex; flex-direction: column; gap: 20px; }
.compare-row   { display: flex; flex-direction: column; gap: 10px; }
.roi-compare-row   { display: flex; flex-direction: column; gap: 10px; }

.compare-header { display: flex; justify-content: space-between; align-items: baseline; }
.compare-label  { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
.compare-vals   { display: flex; gap: 12px; align-items: center; }

.cv-before { font-size: 11px; color: rgba(255,255,255,0.3); font-family: 'DM Mono', monospace; text-decoration: line-through; }
.cv-after  { font-size: 13px; font-weight: 700; color: var(--green); font-family: 'DM Mono', monospace; }

.compare-bars  { display: flex; flex-direction: column; gap: 6px; }
.cbar-wrap     { display: flex; align-items: center; gap: 10px; }
.cbar-lbl      { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.3); width: 50px; flex-shrink: 0; letter-spacing: 0.5px; }
.cbar-track    { flex: 1; height: 8px; background: rgba(255,255,255,0.07); border-radius: 100px; overflow: hidden; }
.cbar-fill     { height: 100%; border-radius: 100px; }
.cbar-fill.before { background: rgba(255,255,255,0.18); }
.cbar-fill.after  { background: var(--orange); animation: barGrow 0.8s ease both; }

@keyframes barGrow { from { width: 0 !important; } }

.compare-divider { height: 1px; background: rgba(255,255,255,0.06); }

/* ── VISIBILITY PILLARS ── */
.visibility { background: var(--grey-light); padding: 100px 48px; }
.visibility-inner { max-width: 1200px; margin: 0 auto; }

.visibility-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 64px;
}

.visibility-header .section-label { justify-content: center; }
.visibility-header p { font-size: 16px; line-height: 1.75; color: var(--grey); }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pillar {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: 14px; padding: 32px 26px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.pillar:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
  border-color: rgba(255,93,23,0.2);
}

.pillar-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,93,23,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px; overflow: hidden;
}

.pillar-icon img { width: 26px; height: 26px; object-fit: contain; }
.pillar-title { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 10px; letter-spacing: -0.3px; }
.pillar-desc  { font-size: 14px; line-height: 1.7; color: var(--grey); }

/* ── DASHBOARD RESPONSIVE ── */
@media (max-width: 960px) {
  .dash-hero { padding: 60px 24px 0; }
  .hero-top { grid-template-columns: 1fr; gap: 40px; }
  .dash-hero-headline { font-size: 38px; }
  .dash-mockup-wrap { display: none; }
  .mockup-body { grid-template-columns: 1fr 1fr; }
  .mockup-activity { grid-column: span 2; }
  .mockup-table { grid-column: span 2; }
  .modules, .roi-section, .visibility { padding: 64px 24px; }
  .modules-header { grid-template-columns: 1fr; gap: 24px; }
  .modules-grid { grid-template-columns: 1fr; }
  .roi-inner { grid-template-columns: 1fr; gap: 48px; }
  .roi-stats { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .dash-hero-headline { font-size: 30px; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-activity, .mockup-table { grid-column: span 1; }
  .roi-stats { grid-template-columns: 1fr; }
  .dash-hero-ctas { flex-direction: column; align-items: flex-start; }
}


/* ════════════════════════════════════════════════════
   PRICING PAGE STYLES
   ════════════════════════════════════════════════════ */

/* ── PRICING HERO (centred) ── */
.pricing-hero {
  background: var(--black);
  padding: 100px 48px 80px;
  position: relative; overflow: hidden;
}

.pricing-hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}

.glow-c {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,93,23,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-hero-inner {
  max-width: 760px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}

.pricing-hero-headline {
  font-size: 54px; font-weight: 900; line-height: 1.06;
  letter-spacing: -2px; color: var(--white); margin-bottom: 20px;
}

.pricing-hero-headline .accent { color: var(--orange); }

.pricing-hero-subtitle {
  font-size: 18px; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* ── PRICING TRUST BAR ── */
.pricing-trust-bar {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
  padding: 16px 48px;
}

.pricing-trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}

.pricing-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--grey); text-transform: uppercase;
}

.pricing-trust-item::before {
  content: '●'; color: var(--orange); font-size: 7px;
}

/* ── PRICING CARDS SECTION ── */
.pricing-section {
  background: var(--white);
  padding: 80px 48px 100px;
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

/* Billing toggle */
.pricing-toggle-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 56px;
}

.toggle-label { font-size: 14px; font-weight: 600; color: var(--grey); }
.toggle-label.active { color: var(--black); }

.toggle-switch {
  width: 48px; height: 26px; background: var(--orange);
  border-radius: 100px; position: relative;
  cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}

.toggle-knob {
  width: 20px; height: 20px; background: var(--white);
  border-radius: 50%; position: absolute; top: 3px; left: 3px;
  transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-switch.annual .toggle-knob { transform: translateX(22px); }

.save-pill {
  background: rgba(34,197,94,0.1); color: var(--green);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 100px;
}

/* Pricing grid */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}

.price-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--grey-mid);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.price-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(255,93,23,0.15);
  transform: translateY(-12px);
}

.price-card.featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 24px 64px rgba(255,93,23,0.2);
}

.featured-ribbon {
  background: var(--orange); text-align: center; padding: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--white); text-transform: uppercase;
}

.card-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--grey-mid);
}
.price-card .card-header{
	flex-direction: column;
	align-items: flex-start;
}
.price-card.featured .card-header { border-bottom-color: rgba(255,93,23,0.15); }

.plan-name {
  font-size: 22px; font-weight: 900; letter-spacing: -0.5px;
  color: var(--black); margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px; line-height: 1.6; color: var(--grey); margin-bottom: 24px;
}

.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }

.price-label { font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: 0.5px; }
.price-sub   { font-size: 12px; color: var(--grey); }

.card-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 28px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 8px; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  margin-top: 20px; width: 100%;
}

.cta-outline {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--grey-mid);
}

.cta-outline:hover { border-color: var(--black); background: var(--grey-light); color: var(--black); }

.cta-filled {
  background: var(--orange); color: var(--white); border: none;
}

.cta-filled:hover { background: var(--orange-hover); transform: translateY(-1px); color: var(--white); }

.cta-dark {
  background: var(--black); color: var(--white); border: none;
}

.cta-dark:hover { background: #1a1a1a; transform: translateY(-1px); color: var(--white); }

/* Features */
.card-features { padding: 24px 28px 32px; }

.features-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey); margin-bottom: 18px;
}

.feature-list { display: flex; flex-direction: column; gap: 12px; }

.feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.5; color: var(--black);
}

.fi-icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; margin-top: 1px;
}

.fi-check { background: rgba(34,197,94,0.1); color: var(--green); }
.fi-plus  { background: rgba(255,93,23,0.08); color: var(--orange); }

.feature-divider {
  height: 1px; background: var(--grey-mid); margin: 16px 0;
  display: flex; align-items: center; gap: 12px;
}

.feature-divider span {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--grey);
  white-space: nowrap; background: var(--white);
  padding: 0 10px; margin-left: -10px;
}

/* ── COMPARISON TABLE ── */
.compare-section { background: var(--grey-light); padding: 80px 48px; }
.compare-inner   { max-width: 1200px; margin: 0 auto; }

.compare-header-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 0;
}

.ch-cell { padding: 20px 24px; text-align: center; }
.ch-cell:first-child { text-align: left; }

.ch-plan-name { font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.ch-plan-name.or { color: var(--orange); }
.ch-plan-sub  { font-size: 11px; color: var(--grey); }

.compare-table {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 14px; overflow: hidden;
}

.compare-group-title {
  padding: 14px 24px;
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey);
}

.compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--grey-mid);
}

.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,93,23,0.02); }

.cr-feature {
  padding: 14px 24px; font-size: 13px; font-weight: 500; color: var(--black);
  display: flex; align-items: center; gap: 8px;
  border-right: 1px solid var(--grey-mid);
}

.cr-cell {
  padding: 14px 24px; text-align: center;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--grey-mid);
  font-size: 12px; font-weight: 600; color: var(--grey);
}

.cr-cell:last-child { border-right: none; }
.cr-cell.featured-col { background: rgba(255,93,23,0.03); }

.check  { color: var(--green); font-size: 16px; font-weight: 900; }
.dash   { color: var(--grey-mid); font-size: 18px; }
.cr-text { color: var(--orange); font-size: 12px; font-weight: 700; }

/* ── FAQ ── */
.faq-header .section-label {
  justify-content: center;
}
.faq-section { background: var(--white); padding: 80px 48px; }
.faq-inner   { max-width: 800px; margin: 0 auto; }
.faq-header  { text-align: center; margin-bottom: 56px; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--grey-mid);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--grey-mid); }

.faq-q {
  width: 100%; padding: 22px 0; text-align: left;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: 'Outfit', sans-serif;
}

.faq-q-text { font-size: 16px; font-weight: 700; color: var(--black); line-height: 1.4; }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--grey); flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--orange); color: var(--white); transform: rotate(45deg);
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 15px; line-height: 1.75; color: var(--grey);
}

.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ── ENTERPRISE BAND ── */
.enterprise-band {
  background: var(--black); padding: 64px 48px;
  position: relative; overflow: hidden;
}

.enterprise-band .grid-bg { opacity: 0.3; }

.enterprise-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}

.ent-headline {
  font-size: 32px; font-weight: 900; letter-spacing: -1px;
  color: var(--white); margin-bottom: 14px; line-height: 1.2;
}

.ent-headline .accent { color: var(--orange); }
.ent-body { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.ent-btns { display: flex; gap: 14px; }

.btn-primary-ent {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 6px; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary-ent:hover { background: var(--orange-hover); transform: translateY(-1px); color: var(--white); }

.btn-ghost-ent {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: 6px;
  cursor: pointer; text-decoration: none; transition: border-color 0.2s, background 0.2s;
}

.btn-ghost-ent:hover { border-color: var(--white); background: rgba(255,255,255,0.05); color: var(--white); }

.ent-perks { display: flex; flex-direction: column; gap: 12px; }

.ent-perk {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 16px 18px;
  transition: border-color 0.2s;
}

.ent-perk:hover { border-color: rgba(255,93,23,0.2); }

.ep-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,93,23,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; overflow: hidden;
}

.ep-icon img { width: 20px; height: 20px; object-fit: contain; }
.ep-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }

/* ── PRICING RESPONSIVE ── */
@media (max-width: 960px) {
  .pricing-hero { padding: 60px 24px 56px; }
  .pricing-hero-headline { font-size: 38px; }
  .pricing-trust-bar { padding: 16px 24px; }
  .pricing-section { padding: 56px 24px 72px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .compare-section { padding: 56px 24px; }
  .compare-header-row { display: none; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .cr-feature { font-size: 12px; padding: 12px 14px; }
  .cr-cell { padding: 12px 10px; font-size: 11px; }
  .faq-section { padding: 56px 24px; }
  .enterprise-band { padding: 56px 24px; }
  .enterprise-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .pricing-hero-headline { font-size: 30px; }
  .ent-btns { flex-direction: column; }
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}


/* ════════════════════════════════════════════════════
   GLOBAL REACH — INDIA PAGE STYLES
   ════════════════════════════════════════════════════ */

/* ── PAGE SUBNAV ── */
.page-subnav {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
  padding: 0 48px;
}

.page-subnav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 0; height: 48px;
}

.subnav-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey);
  padding-right: 24px; border-right: 1px solid var(--grey-mid);
  margin-right: 24px; white-space: nowrap;
}

.subnav-link {
  display: flex; align-items: center; gap: 8px;
  padding: 0 18px; height: 48px; font-size: 13px; font-weight: 600;
  color: var(--grey); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.subnav-link:hover { color: var(--black); }
.subnav-link.active { color: var(--orange); border-bottom-color: var(--orange); }

/* ── GLOBAL REACH HERO ── */
.gr-hero {
  background: var(--black); padding: 100px 48px 0;
  position: relative; overflow: hidden;
}

.gr-hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}

.gr-glow-l {
  position: absolute; top: -80px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,93,23,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.gr-glow-r {
  position: absolute; bottom: 0; right: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,93,23,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.gr-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; position: relative; z-index: 1;
}

.gr-hero-left { padding-bottom: 80px; }

.gr-hero-headline {
  font-size: 54px; font-weight: 900; line-height: 1.06;
  letter-spacing: -2px; color: var(--white); margin-bottom: 24px;
}

.gr-hero-headline .accent { color: var(--orange); }

.gr-hero-subtitle {
  font-size: 17px; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.5); margin-bottom: 40px; max-width: 480px;
}

.gr-hero-ctas { display: flex; gap: 14px; }

/* ── MAP CARD (STATIC) ── */
.map-card {
  align-self: flex-end;
  background: #111; border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none; border-radius: 16px 16px 0 0;
  overflow: hidden; padding: 28px 28px 0;
  box-shadow: 0 -24px 80px rgba(255,93,23,0.07);
}

.map-card-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}

.map-card-title::before {
  content: ''; width: 18px; height: 2px; background: var(--orange);
}

#india-map-container {
  width: 100%; height: 340px; background: transparent;
}

/* amCharts overrides */
#india-map-container .highcharts-background { fill: transparent; }

/* City stats below map (DYNAMIC via ACF) */
.city-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 20px;
}

.city-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 12px; text-align: center;
}
.cs-flag {
		display: flex;
    justify-content: center;
}
.cs-flag { font-size: 14px; margin-bottom: 4px; }
.cs-city { font-size: 11px; font-weight: 700; color: var(--white); }
.cs-role { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; line-height: 1.3; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
  padding: 0 48px;
}

.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 32px 28px;
  border-right: 1px solid var(--grey-mid);
  text-align: center;
}

.stat-block:last-child { border-right: none; }

.sb-val {
  font-family: 'DM Mono', monospace;
  font-size: 36px; font-weight: 500; color: var(--black);
  letter-spacing: -2px; line-height: 1; margin-bottom: 6px;
}
.sb-val{
	display: flex;
	justify-content: center;
	gap: 5px;
}

.sb-val .or { color: var(--orange); }
.sb-label { font-size: 13px; color: var(--grey); font-weight: 500; line-height: 1.4; }

/* ── WHY INDIA ── */
.why-india { background: var(--white); padding: 100px 48px; }

.why-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

/* Left image — supports real WP image or placeholder */
.why-image { border-radius: 14px; overflow: hidden; position: relative; }

.why-image img {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
}

.why-image-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border-radius: 14px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}

.why-image-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,93,23,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(255,93,23,0.08) 0%, transparent 50%);
}

.city-skyline { font-size: 64px; z-index: 1; }
.city-skyline-label {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase; z-index: 1;
}

.why-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,93,23,0.3); border-radius: 10px;
  padding: 12px 16px; z-index: 2;
}

.wib-val {
  font-family: 'DM Mono', monospace;
  font-size: 22px; font-weight: 500; color: var(--white);
  letter-spacing: -1px;
}

.wib-val .or { color: var(--orange); }
.wib-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }

.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--grey-light);
  border-radius: 10px; border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.why-item:hover { border-color: rgba(255,93,23,0.2); background: rgba(255,93,23,0.03); }

.wi-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,93,23,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0; overflow: hidden;
}

.wi-icon img { width: 22px; height: 22px; object-fit: contain; }
.wi-text { flex: 1; }
.wi-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.wi-desc  { font-size: 13px; line-height: 1.55; color: var(--grey); }

/* ── TALENT HUBS ── */
.hubs { background: var(--black); padding: 100px 48px; position: relative; overflow: hidden; }
.hubs .grid-bg { opacity: 0.35; }
.hubs-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hubs-header { max-width: 600px; margin-bottom: 64px; }
.hubs-header .section-headline { color: var(--white); }
.hubs-header p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.5); }

.hubs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.hub-card {
  background: #111; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.hub-card:hover {
  border-color: rgba(255,93,23,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.hub-card-top {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, rgba(255,93,23,0.06), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: flex-start; gap: 16px;
}

.hub-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(255,93,23,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; overflow: hidden;
}

.hub-icon img { width: 28px; height: 28px; object-fit: contain; }
.hub-header-text { flex: 1; }
.hub-city { font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: -0.4px; margin-bottom: 4px; }
.hub-tagline { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }

.hub-card-body { padding: 24px 28px 28px; }
.hub-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

.hub-specialties { display: flex; flex-direction: column; gap: 8px; }

.hub-spec {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500;
}

.hub-spec::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

.hub-card-foot {
  padding: 16px 28px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; font-weight: 600;
  color: rgba(255,93,23,0.8); font-style: italic; line-height: 1.5;
}

/* ── FUNCTIONS COVERED ── */
.functions { background: var(--grey-light); padding: 80px 48px; }
.functions-inner { max-width: 1200px; margin: 0 auto; }
.functions-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.functions-header .section-label { justify-content: center; }

.functions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }

.func-chip {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: 12px; padding: 20px 16px; text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.func-chip:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,93,23,0.1);
  transform: translateY(-3px);
}

.func-icon { font-size: 26px; margin-bottom: 10px; display: block; overflow: hidden; }
.func-icon img { width: 28px; height: 28px; object-fit: contain; margin: 0 auto; }
.func-name  { font-size: 12px; font-weight: 700; color: var(--black); line-height: 1.4; }
.func-roles { font-size: 10px; color: var(--grey); margin-top: 4px; line-height: 1.5; }

/* ── BRIQBI ADVANTAGE ── */
.advantage { background: var(--white); padding: 100px 48px; }
.advantage-inner { max-width: 1200px; margin: 0 auto; }

.advantage-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 64px;
}

.advantage-header p { font-size: 16px; line-height: 1.75; color: var(--grey); }

.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }

.adv-card {
  border: 1px solid var(--grey-mid); border-radius: 14px; padding: 32px 26px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}

.adv-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,93,23,0.2);
}

.adv-card::after {
  content: attr(data-num);
  position: absolute; right: 20px; bottom: 12px;
  font-family: 'DM Mono', monospace; font-size: 60px; font-weight: 500;
  color: rgba(0,0,0,0.04); line-height: 1; pointer-events: none; letter-spacing: -3px;
}

.adv-icon { font-size: 28px; margin-bottom: 16px; display: block; overflow: hidden; }
.adv-icon img { width: 32px; height: 32px; object-fit: contain; }
.adv-title { font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 8px; letter-spacing: -0.3px; }
.adv-desc  { font-size: 13px; line-height: 1.7; color: var(--grey); }

/* Advantage callout */
.advantage-callout {
  background: var(--black); border-radius: 16px;
  padding: 40px 48px; display: flex; align-items: center; gap: 48px;
}

.ac-left { flex: 1; }
.ac-headline {
  font-size: 24px; font-weight: 900; color: var(--white);
  letter-spacing: -0.5px; margin-bottom: 10px; line-height: 1.3;
}
.ac-headline .accent { color: var(--orange); }
.ac-body { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.ac-right { flex-shrink: 0; }
.ac-stat {
  text-align: center;
  background: rgba(255,93,23,0.08); border: 1px solid rgba(255,93,23,0.2);
  border-radius: 12px; padding: 24px 32px;
}
.ac-stat-val{
	display: flex;
    justify-content: center;
}
.ac-stat-val {
  font-family: 'DM Mono', monospace;
  font-size: 40px; font-weight: 500; color: var(--white);
  letter-spacing: -2px; line-height: 1; margin-bottom: 6px;
}
.ac-stat-val .or { color: var(--orange); }
.ac-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* ── GLOBAL REACH RESPONSIVE ── */
@media (max-width: 960px) {
  .page-subnav { padding: 0 24px; }
  .gr-hero { padding: 60px 24px 0; }
  .gr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .gr-hero-headline { font-size: 38px; }
  .map-card { border-radius: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats-band { padding: 0 24px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-top: 1px solid var(--grey-mid); }
  .stat-block:nth-child(4) { border-right: none; border-top: 1px solid var(--grey-mid); }
  .why-india, .hubs, .advantage, .functions { padding: 64px 24px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .hubs-grid { grid-template-columns: 1fr; }
  .advantage-header { grid-template-columns: 1fr; gap: 24px; }
  .advantage-grid { grid-template-columns: 1fr 1fr; }
  .advantage-callout { flex-direction: column; gap: 24px; padding: 32px; }
  .functions-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .gr-hero-headline { font-size: 30px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .functions-grid { grid-template-columns: repeat(2, 1fr); }
  .city-stats { grid-template-columns: repeat(2, 1fr); }
  .gr-hero-ctas { flex-direction: column; align-items: flex-start; }
}


/* ── PRICING TOGGLE — Monthly / Annual price swap ── */

/* Annual price hidden by default */
.price-annual { display: none; }
.price-monthly { display: flex; }

/* When body has .billing-annual, swap */
body.billing-annual .price-monthly { display: none; }
body.billing-annual .price-annual  { display: flex; }

body.billing-annual #lbl-monthly { color: var(--grey); }
body.billing-annual #lbl-annual  { color: var(--black); }

/* Default monthly label active */
#lbl-monthly { color: var(--black); }
#lbl-annual  { color: var(--grey); }


/* ════════════════════════════════════════════════════
   GET STARTED PAGE STYLES
   ════════════════════════════════════════════════════ */

/* ── PAGE WRAP ── */
.get-started-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── LEFT PANEL ── */
.get-started-wrap .left-panel {
  background: var(--black);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.get-started-wrap .left-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.get-started-wrap .left-glow {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,93,23,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.get-started-wrap .left-glow-top {
  position: absolute;
  top: -60px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,93,23,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.get-started-wrap .left-content {
  position: relative;
  z-index: 1;
}

.get-started-wrap .left-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border: 1.5px solid var(--orange);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.get-started-wrap .left-headline {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.8px;
  color: var(--white);
  margin-bottom: 20px;
}

.get-started-wrap .left-headline .accent {
  color: var(--orange);
}

.get-started-wrap .left-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  margin-bottom: 48px;
}

/* ── TRUST CHIPS ── */
.get-started-wrap .trust-chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.get-started-wrap .trust-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}

.get-started-wrap .trust-chip:hover {
  border-color: rgba(255,93,23,0.2);
}

.get-started-wrap .tc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,93,23,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.get-started-wrap .tc-text {
  flex: 1;
}

.get-started-wrap .tc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.get-started-wrap .tc-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}

/* ── SOCIAL PROOF ── */
.get-started-wrap .left-proof {
  position: relative;
  z-index: 1;
}

.get-started-wrap .proof-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.get-started-wrap .proof-avatars {
  display: flex;
}

.get-started-wrap .proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  margin-left: -8px;
}

.get-started-wrap .proof-avatar:first-child {
  margin-left: 0;
}

.get-started-wrap .proof-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.get-started-wrap .proof-text strong {
  color: var(--white);
  font-weight: 700;
}

.get-started-wrap .proof-stars {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ── RIGHT PANEL ── */
.get-started-wrap .right-panel {
  background: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* ── PROGRESS BAR ── */
.get-started-wrap .progress-wrap {
  margin-bottom: 40px;
}

.get-started-wrap .progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.get-started-wrap .progress-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

.get-started-wrap .progress-counter {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--grey);
}

.get-started-wrap .progress-bar {
  height: 3px;
  background: var(--grey-mid);
  border-radius: 100px;
  overflow: hidden;
}

.get-started-wrap .progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.get-started-wrap .step-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.get-started-wrap .step-dot {
  height: 4px;
  border-radius: 100px;
  background: var(--grey-mid);
  transition: width 0.4s ease, background 0.3s ease;
}

.get-started-wrap .step-dot.active {
  background: var(--orange);
}

.get-started-wrap .step-dot.done {
  background: var(--green);
}

/* ── FORM STEPS ── */
.get-started-wrap .form-steps {
  flex: 1;
}

.get-started-wrap .form-step {
  display: none;
  animation: stepIn 0.35s ease both;
}

.get-started-wrap .form-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes stepBack {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.get-started-wrap .form-step.back {
  animation: stepBack 0.35s ease both;
}

.get-started-wrap .step-headline {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.2;
}

.get-started-wrap .step-sub {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── FORM ELEMENTS ── */
.get-started-wrap .form-group {
  margin-bottom: 20px;
}

.get-started-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.get-started-wrap .form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.get-started-wrap .form-input,
.get-started-wrap .form-select,
.get-started-wrap .form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.get-started-wrap .form-input::placeholder,
.get-started-wrap .form-textarea::placeholder {
  color: var(--grey);
  font-weight: 400;
}

.get-started-wrap .form-input:focus,
.get-started-wrap .form-select:focus,
.get-started-wrap .form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,93,23,0.1);
}

.get-started-wrap .form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.get-started-wrap .form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.get-started-wrap .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237D7D7D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.get-started-wrap .field-hint {
  font-size: 11px;
  color: var(--grey);
  margin-top: 6px;
}

/* ── OPTION CARDS (Checkboxes) ── */
.get-started-wrap .option-grid {
  display: grid;
  gap: 10px;
}

.get-started-wrap .option-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.get-started-wrap .option-grid.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.get-started-wrap .option-card {
  border: 1.5px solid var(--grey-mid);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
}

.get-started-wrap .option-card:hover {
  border-color: rgba(255,93,23,0.4);
  background: var(--orange-soft);
}

.get-started-wrap .option-card.selected {
  border-color: var(--orange);
  background: var(--orange-soft);
  box-shadow: 0 0 0 3px rgba(255,93,23,0.1);
}

.get-started-wrap .option-card input[type="checkbox"],
.get-started-wrap .option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.get-started-wrap .option-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  background: var(--white);
}

.get-started-wrap .option-card.selected .option-check {
  background: var(--orange);
  border-color: var(--orange);
}

.get-started-wrap .option-check-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.get-started-wrap .option-card.selected .option-check-radio {
  border-color: var(--orange);
}

.get-started-wrap .option-check-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}

.get-started-wrap .option-card.selected .option-check-radio::after {
  opacity: 1;
}

.get-started-wrap .check-mark {
  font-size: 11px;
  color: var(--white);
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.2s;
}

.get-started-wrap .option-card.selected .check-mark {
  opacity: 1;
}

.get-started-wrap .option-text {
  flex: 1;
}

.get-started-wrap .option-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.get-started-wrap .option-desc {
  font-size: 11px;
  color: var(--grey);
  margin-top: 1px;
  line-height: 1.4;
}

.get-started-wrap .option-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ── TIER CARDS ── */
.get-started-wrap .tier-card {
  border: 1.5px solid var(--grey-mid);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  margin-bottom: 12px;
}

.get-started-wrap .tier-card:last-child {
  margin-bottom: 0;
}

.get-started-wrap .tier-card:hover {
  border-color: rgba(255,93,23,0.35);
  background: var(--orange-soft);
}

.get-started-wrap .tier-card.selected {
  border-color: var(--orange);
  background: var(--orange-soft);
  box-shadow: 0 0 0 3px rgba(255,93,23,0.1);
}

.get-started-wrap .tier-card.featured-tier {
  border-color: var(--orange);
}

.get-started-wrap .tier-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}

.get-started-wrap .tier-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.get-started-wrap .tier-card.selected .tier-icon-wrap {
  background: rgba(255,93,23,0.15);
}

.get-started-wrap .tier-content {
  flex: 1;
}

.get-started-wrap .tier-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.3px;
  margin-bottom: 3px;
}

.get-started-wrap .tier-desc {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}

.get-started-wrap .tier-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.2s;
}

.get-started-wrap .tier-card.selected .tier-radio {
  border-color: var(--orange);
}

.get-started-wrap .tier-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}

.get-started-wrap .tier-card.selected .tier-radio::after {
  opacity: 1;
}

/* ── FORM DIVIDER ── */
.get-started-wrap .form-divider {
  height: 1px;
  background: var(--grey-mid);
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.get-started-wrap .form-divider::before,
.get-started-wrap .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-mid);
}

.get-started-wrap .form-divider span {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  white-space: nowrap;
}

/* ── CONFIRM BOX ── */
.get-started-wrap .confirm-box {
  background: var(--grey-light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--grey-mid);
}

.get-started-wrap .confirm-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-mid);
  gap: 20px;
}

.get-started-wrap .confirm-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.get-started-wrap .confirm-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  flex-shrink: 0;
  width: 130px;
  padding-top: 1px;
}

.get-started-wrap .confirm-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  text-align: right;
}

.get-started-wrap .confirm-edit {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  padding-top: 2px;
  transition: color 0.2s;
}

.get-started-wrap .confirm-edit:hover {
  color: var(--orange-hover);
}

/* ── FORM NAVIGATION BUTTONS ── */
.get-started-wrap .form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid var(--grey-mid);
}

.get-started-wrap .btn-back-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  color: var(--grey);
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.get-started-wrap .btn-back-form:hover {
  color: var(--black);
  border-color: var(--black);
}

.get-started-wrap .btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-left: auto;
}

.get-started-wrap .btn-next:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.get-started-wrap .btn-next:disabled {
  background: var(--grey-mid);
  cursor: not-allowed;
  transform: none;
}

.get-started-wrap .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-left: auto;
}

.get-started-wrap .btn-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.get-started-wrap .btn-submit:disabled {
  background: var(--grey-mid);
  cursor: not-allowed;
  transform: none;
}

/* ── SPINNER ── */
.get-started-wrap .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── SUCCESS STATE ── */
.get-started-wrap .success-state {
  display: none;
  text-align: center;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.get-started-wrap .success-state.show {
  display: flex;
  animation: stepIn 0.5s ease both;
}

.get-started-wrap .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 2px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.2s;
}

@keyframes successPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.get-started-wrap .success-headline {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 10px;
}

.get-started-wrap .success-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 340px;
  margin-bottom: 32px;
}

.get-started-wrap .success-next {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 340px;
}

.get-started-wrap .success-next-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--grey-light);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
}

.get-started-wrap .sni-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.get-started-wrap .sni-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.get-started-wrap .sni-sub {
  font-size: 11px;
  color: var(--grey);
  margin-top: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .get-started-wrap {
    grid-template-columns: 1fr;
  }
  
  .get-started-wrap .left-panel {
    display: none;
  }
  
  .get-started-wrap .right-panel {
    padding: 40px 28px;
  }
  
  .get-started-wrap .option-grid.cols-2,
  .get-started-wrap .option-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  
  .get-started-wrap .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .get-started-wrap .confirm-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .get-started-wrap .confirm-key {
    width: auto;
  }
  
  .get-started-wrap .confirm-val {
    text-align: left;
  }
  
  .get-started-wrap .form-nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .get-started-wrap .btn-next,
  .get-started-wrap .btn-submit {
    width: 100%;
    justify-content: center;
  }
  
  .get-started-wrap .btn-back-form {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .get-started-wrap .right-panel {
    padding: 32px 20px;
  }
  
  .get-started-wrap .step-headline {
    font-size: 22px;
  }
  
  .get-started-wrap .tier-card {
    flex-direction: column;
  }
  
  .get-started-wrap .tier-radio {
    margin-top: 0;
  }
}

/*--------single page and extra css---------*/
.wp-singular h1 {
    margin-bottom: 20px;
}
.wp-singular h2 {
    margin-top: 20px;
}
.wp-singular h3 {
    margin-top: 20px;
}
.normal-list{
	margin-left:30px;
}
.why-brazil {
    background: var(--white);
    padding: 100px 48px;
}
#brazil-map-container {
    width: 100%;
    height: 360px;
    background: transparent;
  }