/* ================================================================
   GHL DESK — Light Theme Design System
   Brand: GHL Desk | ghldesk.com | info@ghldesk.com
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

/* ================================================================
   CSS VARIABLES — LIGHT THEME
   ================================================================ */
:root {
  /* Brand Green */
  --green:        #22C55E;
  --green-dark:   #16A34A;
  --green-600:    #15803D;
  --green-light:  #4ADE80;
  --green-dim:    #F0FDF4;
  --green-dim-2:  rgba(34, 197, 94, 0.10);
  --green-border: rgba(34, 197, 94, 0.30);

  /* GHL Brand Accent — Indigo/Blue (GoHighLevel platform palette) */
  --indigo:       #6366F1;
  --indigo-dark:  #4F46E5;
  --indigo-dim:   #EEF2FF;
  --indigo-border: rgba(99,102,241,0.22);

  /* Backgrounds — GHL-flavored with a subtle blue tint */
  --bg:    #FFFFFF;
  --bg-1:  #F8FAFF;
  --bg-2:  #EEF2FF;
  --bg-3:  #E0E7FF;
  --bg-4:  #C7D2FE;

  /* Text */
  --txt:   #0F172A;
  --txt-2: #475569;
  --txt-3: #94A3B8;
  --txt-4: #CBD5E1;

  /* Borders */
  --border:    rgba(15, 23, 42, 0.08);
  --border-md: rgba(15, 23, 42, 0.13);
  --border-lg: rgba(15, 23, 42, 0.18);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-green: 0 4px 24px rgba(34, 197, 94, 0.28);
  --shadow-green-lg: 0 8px 40px rgba(34, 197, 94, 0.22);

  /* Typography */
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;
  --ff-display: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Transitions */
  --dur:  240ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 108px; /* announce bar ~42px + nav ~66px; overridden by JS */
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.18;
  color: var(--txt);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--txt-2); }

.gradient-text {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 55%, #15803D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--r-full);
  margin-bottom: 1.1rem;
}

.section-heading { margin-bottom: 0.9rem; }
.section-sub {
  font-size: 1.05rem;
  color: var(--txt-2);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announce-bar {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 10px 3rem 10px 1rem;
  font-size: 0.84rem;
  font-weight: 500;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  line-height: 1.5;
}
.announce-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
}
.announce-bar a:hover { opacity: 0.85; }
.announce-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.8;
  padding: 4px;
  line-height: 1;
}
.announce-close:hover { opacity: 1; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container    { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { width: 100%; max-width: 800px;  margin: 0 auto; padding: 0 1.5rem; }
.container-lg { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 2rem; }

.section    { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.72rem 1.6rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-green-lg);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--txt);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--txt);
  border: 1.5px solid var(--border-md);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  padding-left: 0; padding-right: 0;
  font-size: 0.875rem;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--green); }
.btn-ghost i { font-size: 0.78rem; transition: transform var(--dur) var(--ease); }
.btn-ghost:hover i { transform: translateX(4px); }

.btn-lg { padding: 0.88rem 2.2rem; font-size: 0.975rem; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  transition: box-shadow var(--dur) var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-wrap img {
  height: 82px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-links a {
  padding: 0.45rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--txt-2);
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--txt);
  background: var(--bg-1);
}

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--txt-2);
  transition: color var(--dur) var(--ease);
}
.nav-mobile a:hover { color: var(--green-dark); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.2rem;
  color: var(--txt-2);
  cursor: pointer;
  padding: 0.5rem;
  background: var(--bg-2);
  border-radius: var(--r-md);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
}
.nav-mobile-close:hover { color: var(--txt); background: var(--bg-3); }
.nav-mobile-logo {
  position: absolute;
  top: 1.2rem; left: 1.5rem;
}
.nav-mobile-logo img { height: 66px; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4.5rem;
  background: #FFFFFF;
}

/* Two-column hero layout */
.hero-layout {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 65%);
  top: -150px; left: -150px;
}
.hero-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 65%);
  bottom: -100px; right: -100px;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: var(--r-full);
  padding: 5px 14px 5px 8px;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.6rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title { margin-bottom: 1.5rem; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--txt-2);
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--txt);
}
.hero-stat-val span { color: var(--green); }
.hero-stat-lbl { font-size: 0.8rem; color: var(--txt-3); margin-top: 4px; }

/* ================================================================
   LOGO TEXT FALLBACK (when assets/logo.png is missing)
   ================================================================ */
.logo-text-fallback {
  display: none;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-display);
  line-height: 1;
}
/* Green "G" icon box */
.logo-text-fallback .lt-box {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(34,197,94,0.4);
}
/* "HL" + "DESK" stacked column */
.logo-text-fallback .lt-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-text-fallback .lt-hl {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--txt);
  letter-spacing: -0.05em;
  line-height: 1;
}
.logo-text-fallback .lt-desk {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--txt-3);
  text-transform: uppercase;
  margin-top: 2px;
}
/* Footer version — slightly larger */
.footer-logo .logo-text-fallback .lt-box {
  width: 58px; height: 58px;
  font-size: 2.2rem;
  border-radius: 14px;
}
.footer-logo .logo-text-fallback .lt-hl { font-size: 2rem; }

/* ================================================================
   HERO VISUAL — GHL DASHBOARD MOCKUP
   ================================================================ */
.hero-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Dashboard browser window */
.hm-wrap {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.13);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 12px 36px rgba(0,0,0,0.10),
    0 32px 64px rgba(0,0,0,0.07),
    0 0 0 1px rgba(34,197,94,0.10);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.hm-wrap:hover {
  transform: perspective(1100px) rotateY(0deg) rotateX(0deg);
}

/* Browser top bar */
.hm-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #F1F5F9;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.hm-dots { display: flex; gap: 5px; }
.hm-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hm-dot:nth-child(1) { background: #FF5F56; }
.hm-dot:nth-child(2) { background: #FFBD2E; }
.hm-dot:nth-child(3) { background: #27C93F; }
.hm-url {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.09);
  border-radius: 5px;
  padding: 3px 0;
  font-size: 0.64rem;
  color: #94A3B8;
  text-align: center;
  margin: 0 8px;
}

/* Dashboard layout */
.hm-body {
  display: flex;
  height: 300px;
}
.hm-sidebar {
  width: 42px;
  background: #0F172A;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 5px;
  flex-shrink: 0;
}
.hm-si {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
}
.hm-si.on { background: var(--green); color: #fff; }
.hm-main {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #F8FAFC;
  overflow: hidden;
}

/* Stat cards */
.hm-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  flex-shrink: 0;
}
.hm-stat {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 8px;
  padding: 8px;
}
.hm-stat-l {
  font-size: 0.56rem;
  color: #94A3B8;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
}
.hm-stat-v {
  font-size: 1rem;
  font-weight: 900;
  color: #0F172A;
  font-family: var(--ff-display);
  line-height: 1;
}
.hm-stat-t {
  font-size: 0.53rem;
  color: #22C55E;
  font-weight: 600;
  margin-top: 2px;
}

/* Pipeline kanban */
.hm-section-lbl {
  font-size: 0.57rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}
.hm-kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  flex-shrink: 0;
}
.hm-kcol {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.hm-kh {
  padding: 4px 5px;
  font-size: 0.54rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hm-kh span {
  background: rgba(0,0,0,0.08);
  border-radius: 3px;
  padding: 0 3px;
  font-size: 0.5rem;
}
.hm-kcard {
  height: 18px;
  background: #F1F5F9;
  border-radius: 3px;
  margin: 3px;
}
.hm-kcard.done { background: rgba(34,197,94,0.15); }

/* Automation status bar */
.hm-auto {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  flex-shrink: 0;
}
.hm-auto-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
.hm-auto-text {
  font-size: 0.6rem;
  color: #475569;
  flex: 1;
}
.hm-auto-nodes {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.hm-nd {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: #E2E8F0;
  border: 1px solid rgba(15,23,42,0.08);
}
.hm-nd.done {
  background: var(--green-dim);
  border-color: var(--green-border);
}
.hm-nd.active-nd {
  background: var(--green);
  border-color: var(--green);
  animation: pulse-nd 1.5s infinite;
}
.hm-ndl {
  width: 7px; height: 1.5px;
  background: #CBD5E1;
}
@keyframes pulse-nd {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 3px rgba(34,197,94,0); }
}

/* Floating badges around the mockup */
.hm-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 9px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
}
.hm-float.f1 {
  top: -18px; right: -16px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  color: var(--txt);
}
.hm-float.f2 {
  bottom: -18px; left: -16px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  box-shadow: var(--shadow-green);
  color: var(--green-dark);
}
.hm-fi {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.hm-float.f1 .hm-fi { background: #EFF6FF; color: #3B82F6; }
.hm-float.f2 .hm-fi { background: var(--green); color: #fff; }
.hm-float-title { font-size: 0.72rem; font-weight: 700; line-height: 1.2; }
.hm-float-sub {
  font-size: 0.6rem;
  font-weight: 400;
  color: #64748B;
  line-height: 1.2;
}
.hm-float.f2 .hm-float-sub { color: var(--green-dark); opacity: 0.75; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.1rem; }
.page-hero p { font-size: 1.05rem; max-width: 580px; margin: 0 auto 2rem; }
.page-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-border);
  transform: translateY(-4px);
}
.card-icon {
  width: 58px; height: 58px;
  background: var(--green-dim);
  border: 1.5px solid var(--green-border);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover .card-icon { transform: scale(1.08); }

/* ── ICON COLOR VARIANTS (GHL full palette) ────────── */
.ic-green  { background: #F0FDF4 !important; border-color: rgba(34,197,94,0.30)  !important; color: #16A34A !important; }
.ic-blue   { background: #EFF6FF !important; border-color: rgba(59,130,246,0.30) !important; color: #2563EB !important; }
.ic-indigo { background: #EEF2FF !important; border-color: rgba(99,102,241,0.30) !important; color: #4F46E5 !important; }
.ic-purple { background: #F5F3FF !important; border-color: rgba(139,92,246,0.30) !important; color: #7C3AED !important; }
.ic-orange { background: #FFF7ED !important; border-color: rgba(249,115,22,0.30) !important; color: #EA580C !important; }
.ic-amber  { background: #FFFBEB !important; border-color: rgba(245,158,11,0.30) !important; color: #D97706 !important; }
.ic-red    { background: #FFF1F2 !important; border-color: rgba(239,68,68,0.30)  !important; color: #DC2626 !important; }
.ic-teal   { background: #F0FDFA !important; border-color: rgba(20,184,166,0.30) !important; color: #0D9488 !important; }
.ic-sky    { background: #F0F9FF !important; border-color: rgba(14,165,233,0.30) !important; color: #0284C7 !important; }
.ic-pink   { background: #FDF2F8 !important; border-color: rgba(236,72,153,0.30) !important; color: #DB2777 !important; }
.ic-rose   { background: #FFF1F2 !important; border-color: rgba(244,63,94,0.30)  !important; color: #E11D48 !important; }
.card h4 { margin-bottom: 0.45rem; font-size: 1rem; }
.card p  { font-size: 0.875rem; line-height: 1.65; }

/* ================================================================
   PRICING CARDS
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-green), 0 0 0 1px var(--green);
  background: linear-gradient(160deg, var(--green-dim) 0%, #fff 50%);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--txt-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--ff-display);
  font-weight: 900;
  line-height: 1;
  color: var(--txt);
  margin-bottom: 0.25rem;
}
.pricing-price .currency { font-size: 1.3rem; vertical-align: super; }
.pricing-price .amount   { font-size: 2.8rem; }
.pricing-price .period   { font-size: 0.9rem; font-weight: 400; color: var(--txt-3); }
.pricing-desc { font-size: 0.83rem; color: var(--txt-3); margin-bottom: 1.25rem; }
.pricing-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.pricing-features { margin-bottom: 1.75rem; }
.pricing-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--txt-2);
  margin-bottom: 0.62rem;
  line-height: 1.5;
}
.pricing-feat .chk {
  color: var(--green-dark);
  font-size: 0.72rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: var(--green-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item-val {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--txt);
}
.stat-item-val span { color: var(--green); }
.stat-item-lbl { font-size: 0.8rem; color: var(--txt-3); }

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.problem-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.problem-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.problem-item:hover { border-color: rgba(239,68,68,0.3); box-shadow: var(--shadow-sm); }
.problem-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: #FFF1F2;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #EF4444;
  font-size: 0.9rem;
}
.problem-item h5 { font-size: 0.92rem; margin-bottom: 0.25rem; color: var(--txt); }
.problem-item p  { font-size: 0.82rem; color: var(--txt-3); line-height: 1.55; }

.solution-callout {
  background: linear-gradient(135deg, var(--green-dim) 0%, #fff 100%);
  border: 1.5px solid var(--green-border);
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
}
.solution-callout h3 { margin-bottom: 0.9rem; }
.solution-callout p  { max-width: 580px; margin: 0 auto 2rem; }

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg, var(--green-border) 0px, var(--green-border) 8px, transparent 8px, transparent 20px
  );
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 60px; height: 60px;
  background: var(--bg);
  border: 2px solid var(--green);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900; font-size: 1.3rem;
  color: var(--green-dark);
  margin: 0 auto 1.4rem;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-green);
}
.process-step h4 { margin-bottom: 0.45rem; }
.process-step p  { font-size: 0.875rem; }

/* ================================================================
   ROLES
   ================================================================ */
.role-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease);
}
.role-card:hover {
  border-color: var(--green-border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.role-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--green-dim);
  border: 1.5px solid var(--green-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--green-dark);
  transition: transform var(--dur) var(--ease);
}
.role-card:hover .role-icon { transform: scale(1.1); }
.role-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--txt); }
.role-desc { font-size: 0.8rem; color: var(--txt-3); line-height: 1.5; }

/* ================================================================
   TECH PILLS
   ================================================================ */
.tech-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg);
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  padding: 7px 15px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--txt-2);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease);
}
.tech-pill:hover {
  border-color: var(--green-border);
  color: var(--green-dark);
  background: var(--green-dim);
  box-shadow: none;
}
.tech-pill i { color: var(--green-dark); font-size: 0.78rem; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 50%, #F0FDF4 100%);
  border: 1.5px solid var(--green-border);
  border-radius: var(--r-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse at top, rgba(34,197,94,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 0.9rem; }
.cta-banner p  { max-width: 500px; margin: 0 auto 2.25rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   BOOKING SECTION
   ================================================================ */
.booking-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse at top, rgba(34,197,94,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.booking-inner { position: relative; z-index: 1; }
.calendar-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 640px;
  box-shadow: var(--shadow-md);
}
.calendar-wrap iframe {
  width: 100%;
  min-height: 640px;
  border: none;
  display: block;
}

/* ================================================================
   FORM
   ================================================================ */
.form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--txt-2);
  margin-bottom: 0.45rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg-1);
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 0.72rem 1rem;
  color: var(--txt);
  font-size: 0.9rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
  background: var(--bg);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--txt-4); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select option { background: #fff; color: var(--txt); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--txt);
  width: 100%;
  text-align: left;
}
.faq-trigger-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: var(--bg-2);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  color: var(--green-dark);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq-item.open .faq-trigger-icon {
  transform: rotate(45deg);
  background: var(--green-dim);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--txt-2);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-border); }
.testimonial-stars { color: #F59E0B; font-size: 0.82rem; margin-bottom: 0.9rem; }
.testimonial-text {
  font-size: 0.875rem;
  color: var(--txt-2);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-av {
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: var(--green-dim);
  border: 1.5px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.86rem; color: var(--txt); }
.testimonial-role { font-size: 0.76rem; color: var(--txt-3); }

/* ================================================================
   FEATURE LIST
   ================================================================ */
.feature-list { display: flex; flex-direction: column; gap: 0.7rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--txt-2);
}
.feature-item .fi-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--green-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-size: 0.6rem;
  margin-top: 2px;
}

/* ================================================================
   COMPARE TABLE
   ================================================================ */
.compare-row-n8n {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  align-items: center;
}
.compare-row-n8n:last-child { border-bottom: none; }
.compare-row-n8n.header {
  background: var(--bg-1);
  font-weight: 700;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--txt-3);
}
.compare-row-n8n .yes-val { color: var(--green-dark); font-weight: 600; }
.compare-row-n8n .no-val  { color: var(--txt-3); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-logo img { height: 72px; display: block; }
.footer-brand-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--txt-2);
  max-width: 280px;
}
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: color var(--dur) var(--ease);
}
.footer-email-link:hover { color: var(--green); }
.footer-col-title {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--txt-3);
  margin-bottom: 1.2rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav a {
  font-size: 0.875rem;
  color: var(--txt-2);
  transition: color var(--dur) var(--ease);
}
.footer-nav a:hover { color: var(--green-dark); }
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1.2rem; }
.footer-social {
  width: 34px; height: 34px;
  background: var(--bg);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: var(--txt-2);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-xs);
}
.footer-social:hover {
  background: var(--green-dim);
  border-color: var(--green-border);
  color: var(--green-dark);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--txt-2);
  margin-bottom: 0.7rem;
}
.footer-contact-item i { color: var(--green-dark); width: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.79rem;
  color: var(--txt-3);
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ================================================================
   UTILITY
   ================================================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
/* ── 1100px: Side-by-side pricing / footer ───────────────────── */
@media (max-width: 1100px) {
  .pricing-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-bar-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px: Collapse hero + process + pricing ────────────────── */
@media (max-width: 900px) {
  .hero-layout      { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .hero             { text-align: center; min-height: auto; padding: 3.5rem 0; }
  .hero-desc        { margin: 0 auto 2.5rem; max-width: 560px; }
  .hero-actions     { justify-content: center; }
  .hero-stats       { justify-content: center; }
  .hero-badge       { margin-left: auto; margin-right: auto; }

  .process-steps    { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .process-steps::before { display: none; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ── 768px: Mobile nav, sections, grids ─────────────────────── */
@media (max-width: 768px) {
  /* Announce bar — keep single line on mobile */
  .announce-bar {
    padding: 7px 36px 7px 10px;
    font-size: 0.72rem;
    line-height: 1.35;
  }
  .announce-bar p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Nav */
  .nav-links, .nav-right .btn { display: none; }
  .nav-hamburger    { display: flex; }
  .nav-logo-wrap img { height: 52px; }

  /* Sections */
  .hero             { padding: 2.75rem 0 3rem; }
  .section          { padding: 3rem 0; }
  .section-sm       { padding: 2rem 0; }

  /* Headings scale down */
  .hero-title       { font-size: clamp(2rem, 9vw, 3.5rem); }
  .section-heading  { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-stats       { gap: 1.5rem 2rem; }

  /* Grids → single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .problem-list     { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom    { flex-direction: column; gap: 0.6rem; text-align: center; }

  /* CTA banner */
  .cta-banner       { padding: 2.5rem 1.5rem; }
  .cta-banner h2    { font-size: clamp(1.5rem, 5.5vw, 2rem); }

  /* Forms */
  .form-row         { grid-template-columns: 1fr; }

  /* Page hero inner */
  .page-hero        { padding: 3.5rem 0 3rem; }
  .page-hero h1     { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .page-hero-actions { flex-wrap: wrap; justify-content: center; }
}

/* ── 520px: Small phones ─────────────────────────────────────── */
@media (max-width: 520px) {
  .container        { padding: 0 1rem; }

  /* Hero title tight on smallest screens */
  .hero-title       { font-size: clamp(1.85rem, 8.5vw, 2.8rem); }

  /* Hero stats: 2×2 grid (NOT single column) */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
    justify-items: center;
    padding-top: 1.5rem;
  }
  .hero-stat-val    { font-size: 1.6rem; }

  /* Hero action buttons: full width stacked */
  .hero-actions     { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats bar stays 2 columns */
  .stats-bar-grid   { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Page hero buttons full-width */
  .page-hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }

  /* Cards & role cards: ensure padding is comfortable */
  .card             { padding: 1.5rem; }
  .role-card        { padding: 1rem 1.25rem; }
  .pricing-card     { padding: 1.75rem 1.25rem; }

  /* Testimonial cards */
  .testimonial-card { padding: 1.5rem 1.25rem; }

  /* FAQ */
  .faq-trigger      { font-size: 0.9rem; padding: 1rem 0; }

  /* Section label stays inline */
  .section-label    { font-size: 0.72rem; }
}
