/* ============================================================
   HEED AI SOLUTIONS — DESIGN SYSTEM
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --navy:         #1a2744;
  --navy-dark:    #111d38;
  --navy-light:   #243461;
  --white:        #ffffff;
  --amber:        #d4a84b;
  --amber-light:  #e8c06e;
  --amber-dark:   #b88d35;
  --text:         #1f2937;
  --text-muted:   #6b7280;
  --bg:           #f9fafb;
  --bg-dark:      #f3f4f6;
  --border:       #e5e7eb;
  --border-dark:  #d1d5db;
  --success:      #166534;
  --success-bg:   #dcfce7;
  --error:        #dc2626;
  --error-bg:     #fee2e2;

  /* Fonts */
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:   'JetBrains Mono', 'Courier New', Courier, monospace;

  /* Font sizes */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1.125rem;   /* 18px */
  --text-lg:   1.25rem;    /* 20px */
  --text-xl:   1.5rem;     /* 24px — H3 */
  --text-2xl:  2.25rem;    /* 36px — H2 */
  --text-3xl:  3rem;       /* 48px — H1 */
  --text-4xl:  3.75rem;    /* 60px — display */

  /* Line heights */
  --leading-tight:  1.2;
  --leading-snug:   1.4;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Section padding */
  --section-y: 5rem;

  /* Layout */
  --max-w:    1200px;
  --nav-h:    100px;

  /* Border radius */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow:    0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition:      200ms ease;
  --transition-slow: 400ms ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ============================================================
   3. ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: var(--sp-2) var(--sp-4);
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: var(--leading-tight);
  color: var(--text);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, var(--text-3xl)); }
h2 { font-size: clamp(1.6rem, 4vw, var(--text-2xl)); }
h3 { font-size: clamp(1.2rem, 3vw, var(--text-xl)); }
h4 { font-size: var(--text-lg); font-family: var(--font-sans); font-weight: 700; }

p {
  line-height: var(--leading-normal);
  color: var(--text-muted);
}

p + p { margin-top: var(--sp-4); }

strong { font-weight: 700; color: var(--text); }

.text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white p, .text-white strong {
  color: var(--white);
}

.text-white p { color: rgba(255, 255, 255, 0.8); }

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  color: var(--text-muted);
}

.overline {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.mono {
  font-family: var(--font-mono);
}

/* ============================================================
   5. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--section-y);
}

.section--sm {
  padding-block: calc(var(--section-y) * 0.75);
}

.section--lg {
  padding-block: calc(var(--section-y) * 1.5);
}

.section--bg {
  background-color: var(--bg);
}

.section--navy {
  background-color: var(--navy);
}

.section--dark {
  background-color: var(--navy-dark);
}

.section-header {
  max-width: 720px;
  margin-bottom: var(--sp-16);
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header .overline {
  display: block;
  margin-bottom: var(--sp-3);
}

.section-header h2 {
  margin-bottom: var(--sp-4);
}

.section-header p {
  font-size: var(--text-lg);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--sp-6);
}

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

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

/* Primary button: navy → amber on hover */
.btn-primary {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background-color: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* Secondary button: outlined navy */
.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* Secondary white variant (on dark backgrounds) */
.btn-secondary-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary-white:hover {
  background-color: var(--white);
  color: var(--navy);
}

/* Amber button */
.btn-amber {
  background-color: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-amber:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 8px 18px;
  font-size: var(--text-sm);
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-nav {
  background-color: var(--navy);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--amber);
}

.nav-cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.9375rem;
  background-color: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.nav-cta:hover {
  background-color: var(--amber-light);
  border-color: var(--amber-light);
  color: var(--navy);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: var(--sp-1);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.nav-toggle:hover { background-color: rgba(255, 255, 255, 0.08); }

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   8. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--navy-dark);
  padding-block: var(--sp-20) var(--sp-16);
  overflow: hidden;
}

/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 75, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 75, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-6);
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.hero h1 span {
  color: var(--amber);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2.5vw, var(--text-lg));
  margin-bottom: var(--sp-10);
  max-width: 640px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-8);
}

.hero-proof {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  font-family: var(--font-mono);
  border-left: 3px solid var(--amber);
  padding-left: var(--sp-4);
  max-width: 520px;
}

/* Inner page hero (shorter) */
.hero-inner {
  padding-block: var(--sp-16) var(--sp-12);
}

.hero-inner h1 {
  font-size: clamp(1.75rem, 4vw, var(--text-2xl));
  margin-bottom: var(--sp-4);
}

.hero-inner .lead {
  margin-bottom: 0;
}

/* ============================================================
   9. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card--navy {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.card--navy h3, .card--navy h4 { color: var(--white); }
.card--navy p { color: rgba(255, 255, 255, 0.75); }
.card--navy .overline { color: var(--amber); }

.card--accent {
  border-top: 4px solid var(--amber);
}

.card--featured {
  border: 2px solid var(--amber);
  position: relative;
}

.card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 39, 68, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 1.375rem;
  color: var(--navy);
}

.card--navy .card-icon {
  background: rgba(212, 168, 75, 0.15);
  color: var(--amber);
}

.card h3, .card h4 {
  margin-bottom: var(--sp-3);
}

.card p {
  margin-bottom: 0;
}

/* Stat card */
.stat-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
}

.stat-card .stat-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
}

.stat-card .stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Case card */
.case-card {
  padding: var(--sp-8);
}

.case-card .case-tag {
  display: inline-block;
  background: rgba(26, 39, 68, 0.06);
  color: var(--navy);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--sp-4);
}

.case-card .case-result {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: var(--sp-2);
}

.case-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-3);
}

/* Tier card */
.tier-card {
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
}

.tier-card .tier-name {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: var(--sp-3);
}

.tier-card .tier-price {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.tier-card .tier-timeline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-card .tier-features {
  flex: 1;
  margin-bottom: var(--sp-8);
}

.tier-card .tier-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding-block: var(--sp-2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-card .tier-features li:last-child { border-bottom: none; }

.tier-card .tier-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4a84b' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
}

.tier-card .tier-best {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--sp-4);
}

.tier-card .tier-best strong {
  color: rgba(255, 255, 255, 0.7);
}

/* Playbook card */
.playbook-card {
  padding: var(--sp-8);
}

.playbook-card .playbook-problem {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-4);
  border-left: 3px solid var(--amber);
}

.playbook-card .playbook-metrics {
  display: flex;
  gap: var(--sp-6);
  margin-block: var(--sp-5);
  padding-block: var(--sp-5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.playbook-card .metric {
  text-align: center;
  flex: 1;
}

.playbook-card .metric-value {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.playbook-card .metric-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-block: var(--sp-5);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.feature-list li i {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.875rem;
}

/* Works with badges */
.works-with {
  margin-top: var(--sp-5);
}

.works-with-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.works-with-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   10. FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
  height: 48px;
  padding: 0 var(--sp-4);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-textarea {
  height: auto;
  min-height: 128px;
  padding-block: var(--sp-3);
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-error {
  font-size: var(--text-sm);
  color: var(--error);
}

.form-hint {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  padding-block: var(--sp-16) var(--sp-12);
}

.footer-main .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-12);
}

.footer-brand__logo {
  margin-bottom: var(--sp-5);
}

.footer-brand__logo img {
  height: 160px;
  width: auto;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  margin-bottom: var(--sp-3);
  margin-top: 0;
}

.footer-brand p + p { margin-top: var(--sp-2); }

.footer-brand a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-brand a:hover { color: var(--amber); }

.footer-nav h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer-social h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.social-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  background-color: rgba(212, 168, 75, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--sp-5);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-sm);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  transition: color var(--transition);
}

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

.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}

/* ============================================================
   12. HOMEPAGE SECTIONS
   ============================================================ */

/* Problem statement */
.problem-section {
  background: var(--bg);
}

.problem-section h2 {
  margin-bottom: var(--sp-6);
}

.problem-section p {
  font-size: var(--text-lg);
  max-width: 680px;
}

/* What We Do */
.what-we-do .card {
  text-align: center;
}

.what-we-do .card-icon {
  margin-inline: auto;
}

.what-we-do .step-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: rgba(26, 39, 68, 0.06);
  line-height: 1;
  margin-bottom: var(--sp-3);
}

/* Two column split */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.wins-col {
  padding: var(--sp-8);
  border-radius: var(--radius);
}

.wins-col--quick {
  background: var(--navy);
  color: var(--white);
}

.wins-col--compound {
  background: var(--bg);
  border: 1px solid var(--border);
}

.wins-col h3 {
  margin-bottom: var(--sp-2);
}

.wins-col--quick h3 { color: var(--white); }

.wins-col .wins-timeline {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-6);
  display: block;
}

.wins-col--compound .wins-timeline {
  color: var(--text-muted);
}

.wins-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.wins-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
}

.wins-col--quick .wins-list li { color: rgba(255, 255, 255, 0.8); }
.wins-col--compound .wins-list li { color: var(--text-muted); }

.wins-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ROI Calculator */
.roi-calculator {
  background: var(--navy-dark);
}

.roi-calc-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  max-width: 680px;
  margin-inline: auto;
}

.roi-input-group {
  margin-bottom: var(--sp-8);
}

.roi-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: var(--sp-4);
  font-size: var(--text-base);
}

.roi-label .roi-hours-display {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  color: var(--amber);
  font-weight: 700;
}

/* Slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: 3px solid var(--navy-dark);
  box-shadow: 0 0 0 2px var(--amber);
  transition: transform var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: 3px solid var(--navy-dark);
  box-shadow: 0 0 0 2px var(--amber);
}

.roi-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.roi-result {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
}

.roi-result .result-value {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: var(--sp-1);
}

.roi-result .result-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.roi-payback {
  text-align: center;
  margin-bottom: var(--sp-8);
  padding: var(--sp-5);
  background: rgba(212, 168, 75, 0.1);
  border: 1px solid rgba(212, 168, 75, 0.25);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-base);
}

.roi-payback strong {
  color: var(--amber);
}

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

/* How It Works */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.phase-card {
  padding: var(--sp-8);
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}

.phase-label {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  display: block;
  margin-bottom: var(--sp-2);
}

.phase-card h3 {
  margin-bottom: var(--sp-5);
}

.phase-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.phase-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.phase-list li i {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer CTA section */
.section-cta {
  background: var(--navy);
  text-align: center;
}

.section-cta h2 { color: var(--white); margin-bottom: var(--sp-5); }
.section-cta p { color: rgba(255, 255, 255, 0.7); margin-bottom: var(--sp-8); font-size: var(--text-lg); }
.section-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

/* ============================================================
   13. SOLUTIONS PAGE
   ============================================================ */
.solution-kit {
  padding: var(--sp-10) var(--sp-8);
}

.solution-kit .kit-tagline {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-4);
  border-left: 4px solid var(--amber);
}

.solution-kit .kit-section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-5);
}

.kit-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-block: var(--sp-5);
}

.kit-include-item {
  padding: var(--sp-4);
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.kit-include-item i { color: var(--amber); }

/* ============================================================
   14. OFFERS PAGE
   ============================================================ */
.roi-math-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
}

.roi-math-example {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.roi-math-calc {
  font-family: var(--font-mono);
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-6);
  border-radius: var(--radius);
}

.roi-calc-line {
  display: flex;
  justify-content: space-between;
  padding-block: var(--sp-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.roi-calc-line:last-child { border-bottom: none; }

.roi-calc-line strong { color: var(--amber); }

.managed-card {
  background: var(--navy);
  padding: var(--sp-10) var(--sp-8);
}

/* ============================================================
   15. ABOUT PAGE
   ============================================================ */
.about-bio {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.about-photo {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-8));
}

.about-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-lg);
}

.about-photo-caption {
  text-align: center;
  margin-top: var(--sp-4);
}

.about-photo-caption strong {
  display: block;
  font-size: var(--text-base);
  color: var(--text);
}

.about-photo-caption span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.credential-list li i {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 3px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.approach-item {
  padding: var(--sp-8) var(--sp-6);
}

.approach-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212, 168, 75, 0.25);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-4);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.security-item i {
  color: var(--amber);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-item p { margin: 0; font-size: 0.9375rem; }

/* Speaking topics */
.speaking-topics {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.speaking-topic {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Chamber badges */
.chamber-badges {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.chamber-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.chamber-badge img {
  height: 48px;
  width: auto;
}

/* ============================================================
   16. RESOURCES PAGE
   ============================================================ */
.lead-magnet-card {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}

.lead-magnet-card .lm-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 39, 68, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: var(--sp-5);
}

.lead-magnet-card p {
  flex: 1;
  margin-bottom: var(--sp-6);
}

/* Case summaries */
.case-full {
  padding: var(--sp-8);
  border-left: 4px solid var(--amber);
}

.case-full .case-client {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}

.case-full h3 {
  margin-bottom: var(--sp-3);
}

.case-full .case-stack {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--sp-4);
}

.case-full .case-stack strong { color: var(--text); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-block: var(--sp-5);
}

.result-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
}

.result-item .result-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--amber);
  display: block;
  font-size: var(--text-lg);
}

.result-item .result-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   17. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.calendar-embed {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-embed iframe {
  width: 100%;
  height: 650px;
  border: none;
  display: block;
}

.calendar-placeholder {
  text-align: center;
  padding: var(--sp-12);
}

.calendar-placeholder i {
  font-size: 3rem;
  color: var(--navy);
  opacity: 0.3;
  display: block;
  margin-bottom: var(--sp-4);
}

.contact-sidebar .contact-option {
  padding: var(--sp-8);
  margin-bottom: var(--sp-5);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.contact-info-item i { color: var(--amber); width: 18px; flex-shrink: 0; }
.contact-info-item a { color: var(--text-muted); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--amber); }

/* ============================================================
   18. CLIENT LOGO STRIP
   ============================================================ */
.logo-strip {
  padding-block: var(--sp-10);
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-strip-label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
}

.logo-track {
  display: flex;
  gap: var(--sp-10);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-track img {
  height: 36px;
  width: auto;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--transition);
}

.logo-track img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ============================================================
   19. CLUTCH BADGE & TRUST
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding-block: var(--sp-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.trust-item i { color: var(--amber); }

.trust-stat {
  text-align: center;
}

.trust-stat .trust-number {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--amber);
  display: block;
}

.trust-stat .trust-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   20. PRIVACY & TERMS PAGES
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin-inline: auto;
  padding-block: var(--sp-20);
}

.legal-content h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-4);
}

.legal-content .last-updated {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-12);
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}

.legal-content p {
  margin-bottom: var(--sp-4);
}

/* ============================================================
   21. ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ============================================================
   22. UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-amber  { color: var(--amber); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }

.mt-2  { margin-top: var(--sp-2); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin-block: var(--sp-8);
}

/* ============================================================
   23. RESPONSIVE — TABLET (up to 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-y: 4rem; }

  .footer-main .container {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .footer-social {
    grid-column: 1 / -1;
  }

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

  .about-bio {
    grid-template-columns: 240px 1fr;
    gap: var(--sp-8);
  }

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

  .how-it-works-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .roi-math-example {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   24aa. ELEVENLABS WIDGET
   ============================================================ */
elevenlabs-convai {
  --el-color-primary: var(--amber);
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
}

/* ============================================================
   24a. LEGAL PAGES (privacy, terms)
   ============================================================ */
.legal-content {
  max-width: 780px;
  margin-inline: auto;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--navy);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--sp-4);
}

.legal-content ul li {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.legal-content address {
  font-style: normal;
  line-height: 1.8;
  color: var(--text-muted);
}

.legal-content address a { color: var(--navy); }
.legal-content address a:hover { color: var(--amber); }

.hero-inner--sm { padding-block: 4rem; }

/* ============================================================
   24b. CONTACT PAGE
   ============================================================ */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-col {}

.calendar-cta-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-12) var(--sp-10);
  text-align: center;
}

.calendar-cta-block h3 {
  margin-bottom: var(--sp-3);
}

.calendar-cta-block p {
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
}

.calendar-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--sp-4);
  margin-bottom: 0;
}

.contact-direct-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-muted);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-direct-link i { color: var(--amber); width: 16px; }
.contact-direct-link:hover { color: var(--amber); }

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 75, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-bottom: var(--sp-3);
}

.contact-info-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-1);
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

a.contact-info-value:hover { color: var(--amber); }

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--sp-3);
  line-height: 1.5;
}

.form-status {
  margin-top: var(--sp-4);
  font-size: 0.9375rem;
  font-weight: 600;
}

.form-status.success { color: var(--success); }
.form-status.error { color: #dc2626; }

.social-links--large .social-link {
  width: 48px;
  height: 48px;
  font-size: 1.125rem;
}

@media (max-width: 1024px) {
  .contact-two-col {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .contact-info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   24. RESPONSIVE — MOBILE (up to 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --section-y: 3rem;
    --nav-h: 80px;
  }

  .container { padding-inline: var(--sp-4); }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-logo img { height: 56px; }
  .footer-brand__logo img { height: 100px; }

  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--sp-6) var(--sp-4);
    gap: var(--sp-1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: var(--sp-4);
    font-size: var(--text-base);
    border-radius: var(--radius-sm);
  }

  /* Mobile CTA in nav */
  .nav-menu::after {
    content: '';
    display: block;
    padding: var(--sp-4) 0;
  }

  .nav-mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--sp-4);
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-top: var(--sp-4);
  }

  /* Hero mobile */
  .hero { padding-block: var(--sp-12) var(--sp-10); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Grid mobile — single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .kit-includes-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }

  /* ROI calculator */
  .roi-results { grid-template-columns: 1fr; }

  /* About bio */
  .about-bio {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: static;
    max-width: 260px;
    margin-inline: auto;
  }

  /* Footer */
  .footer-main .container {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-3);
  }

  .footer-bottom-links { justify-content: center; }

  /* Tier cards */
  .tier-card { padding: var(--sp-8) var(--sp-6); }

  /* Trust bar */
  .trust-bar .container {
    justify-content: center;
    gap: var(--sp-5);
  }

  /* Section header */
  .section-header { margin-bottom: var(--sp-10); }

  /* ROI math */
  .roi-math-example { grid-template-columns: 1fr; }

  /* Playbook metrics */
  .playbook-card .playbook-metrics { flex-direction: column; gap: var(--sp-4); }

  /* Chamber badges */
  .chamber-badges { flex-direction: column; }
  .chamber-badge { max-width: 100%; }

  /* Contact info strip */
  .contact-info-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   25. ENGAGEMENT CARDS — offers.html
   ============================================================ */

.engagement-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-10);
  margin-bottom: var(--sp-8);
  box-shadow: 0 2px 12px rgba(26,39,68,0.06);
  transition: box-shadow var(--transition);
}

.engagement-card:hover {
  box-shadow: 0 6px 32px rgba(26,39,68,0.12);
}

.engagement-card--featured {
  border-color: var(--amber);
  border-width: 2px;
  background: linear-gradient(135deg, #fffdf5 0%, var(--white) 100%);
}

.engagement-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid #e2e8f0;
}

.engagement-card__header h3 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.engagement-card__tagline {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0;
}

.engagement-card__timeline {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-2) var(--sp-5);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.engagement-card__timeline i { color: var(--amber); }

.engagement-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-8);
}

.engagement-card__col p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--sp-4);
}

.engagement-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid #e2e8f0;
}

.engagement-card__best-for {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}

.engagement-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
}

.engagement-badge--amber {
  background: var(--amber);
  color: var(--navy);
}

/* Engagement detail list */
.engagement-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.engagement-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

.engagement-detail-item i {
  color: var(--amber);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.engagement-detail-item--light {
  color: rgba(255,255,255,0.85);
}

.engagement-detail-item--light i {
  color: var(--amber);
}

/* Responsive engagement cards */
@media (max-width: 1024px) {
  .engagement-card__body {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

@media (max-width: 640px) {
  .engagement-card {
    padding: var(--sp-6) var(--sp-5);
  }

  .engagement-card__header {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .engagement-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }
}

/* ============================================================
   26. WHAT TO EXPECT BAND — amber background section
   ============================================================ */

.what-to-expect-band {
  background: var(--amber);
  padding-block: var(--sp-16);
}

.what-to-expect-band .section-header--center p,
.what-to-expect-band .section-header--center .overline {
  color: var(--navy);
}

.expect-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.expect-card__number {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(212,168,75,0.2);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.expect-card__icon {
  font-size: 1.75rem;
  color: var(--amber);
  margin-bottom: var(--sp-4);
}

.expect-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--sp-3);
}

.expect-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   27. TWO-COL LAYOUT VARIANTS
   ============================================================ */

.two-col--60-40 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-12);
  align-items: center;
}

.two-col--40-60 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--sp-12);
  align-items: center;
}

@media (max-width: 1024px) {
  .two-col--60-40,
  .two-col--40-60 {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

/* ============================================================
   28. INDUSTRY GRID
   ============================================================ */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.industry-item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  transition: all var(--transition);
}

.industry-item:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,39,68,0.1);
}

.industry-item i {
  font-size: 1.5rem;
  color: var(--amber);
}

.industry-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   29. NAV ACTIVE LINK
   ============================================================ */

.nav-link--active {
  color: var(--amber) !important;
  font-weight: 700;
}

/* ============================================================
   30. TEXT CENTER UTILITY
   ============================================================ */

.text-center { text-align: center; }

/* ============================================================
   31. BLOG / PRESS — article cards
   ============================================================ */

.article-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.article-card:hover {
  box-shadow: 0 8px 32px rgba(26,39,68,0.12);
  transform: translateY(-3px);
}

.article-card__meta {
  padding: var(--sp-6) var(--sp-6) 0;
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
}

.article-tag {
  display: inline-block;
  background: rgba(212,168,75,0.12);
  color: var(--amber-dark, #b8912f);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
}

.article-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.article-card__body {
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
}

.article-card__body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-5);
}

.article-card__footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-read-time {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   32. WORKFLOW TOOL PAGE
   ============================================================ */

.workflow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-6);
  align-items: flex-start;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.workflow-step:last-child { border-bottom: none; }

.workflow-step__num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.workflow-step__body h4 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.workflow-step__body p {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: var(--sp-3);
}

.workflow-step__ai-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(212,168,75,0.1);
  border: 1px solid rgba(212,168,75,0.3);
  color: var(--amber-dark, #b8912f);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.workflow-step__time-saved {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(26,39,68,0.05);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-left: var(--sp-2);
}

.workflow-connector {
  width: 2px;
  height: var(--sp-6);
  background: var(--amber);
  margin-left: 27px;
  opacity: 0.4;
}

.workflow-totals {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  margin-top: var(--sp-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.workflow-total__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-2);
}

.workflow-total__value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
}

.workflow-total__sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--sp-1);
}

@media (max-width: 640px) {
  .workflow-totals { grid-template-columns: 1fr; }
  .workflow-step { grid-template-columns: 44px 1fr; gap: var(--sp-4); }
  .workflow-step__num { width: 44px; height: 44px; font-size: 1rem; }
}

/* ============================================================
   33. SECURITY PAGE
   ============================================================ */

.security-pillar {
  border-left: 3px solid var(--amber);
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.security-pillar h3 {
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.security-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.security-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

.security-checklist li i {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
}

.credential-badge i {
  font-size: 1.5rem;
  color: var(--amber);
  flex-shrink: 0;
}

.credential-badge__text strong {
  display: block;
  color: var(--navy);
  font-size: 0.9375rem;
}

.credential-badge__text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   34. ELEVENLABS WIDGET POSITIONING
   ============================================================ */

elevenlabs-convai {
  --el-color-primary: var(--amber);
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
}

/* ============================================================
   35. ARTICLE PAGE LAYOUT
   ============================================================ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-12);
  align-items: start;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2);
}

.article-body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: var(--sp-5);
  color: var(--text);
}

.article-body h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  line-height: 1.3;
}

.article-body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-6);
  line-height: 1.8;
}

.article-body li {
  margin-bottom: var(--sp-2);
  font-size: 1.0625rem;
}

.article-key-point {
  background: rgba(212,168,75,0.08);
  border-left: 4px solid var(--amber);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-8) 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-key-point p {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--navy);
}

.article-data-point {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-8);
  margin: var(--sp-8) 0;
  display: flex;
  gap: var(--sp-8);
  align-items: center;
  flex-wrap: wrap;
}

.article-data-point__val {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  white-space: nowrap;
}

.article-data-point__desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.article-sidebar__card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.article-sidebar__card h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--amber);
}

.article-sidebar__link {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.9375rem;
  color: var(--navy);
  text-decoration: none;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.4;
  transition: color var(--transition);
}

.article-sidebar__link:last-child { border-bottom: none; }
.article-sidebar__link:hover { color: var(--amber); }
.article-sidebar__link i { color: var(--amber); flex-shrink: 0; margin-top: 0.2rem; }

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
}

/* ============================================================
   36. CFO PULSE SAMPLE PAGE
   ============================================================ */

.pulse-header {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-8);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.pulse-header__title { color: var(--white); font-size: 1.25rem; font-weight: 700; }
.pulse-header__sub { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.15rem; }
.pulse-header__badge {
  background: var(--amber);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.pulse-metric {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
}

.pulse-metric--alert { border-color: #fc8181; background: #fff5f5; }
.pulse-metric--positive { border-color: #68d391; background: #f0fff4; }
.pulse-metric--neutral { border-color: #e2e8f0; }

.pulse-metric__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
  font-weight: 600;
}

.pulse-metric__value {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.pulse-metric__delta {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: var(--sp-1);
}

.pulse-metric__delta--up { color: #38a169; }
.pulse-metric__delta--down { color: #e53e3e; }
.pulse-metric__note { font-size: 0.8125rem; color: var(--text-muted); margin-top: var(--sp-1); }

/* Change aliases used in CFO Pulse Sample */
.pulse-metric__change {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: var(--sp-1);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.pulse-metric__change--up { color: #38a169; }
.pulse-metric__change--down { color: #e53e3e; }
.pulse-metric__change--neutral { color: var(--text-muted); }

.pulse-alert-bar {
  background: #fffbeb;
  border: 1px solid #f6c90e;
  border-left: 4px solid #e53e3e;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-4) var(--sp-6);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.pulse-alert-bar i { color: #e53e3e; flex-shrink: 0; margin-top: 0.15rem; }
.pulse-alert-bar strong { color: var(--navy); display: block; margin-bottom: 0.25rem; }
.pulse-alert-bar span { font-size: 0.9375rem; color: var(--text); }

.pulse-narrative {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border: 1px solid #e2e8f0;
  margin-top: var(--sp-6);
}

.pulse-narrative p { line-height: 1.85; font-size: 1.0625rem; }
.pulse-narrative p:last-child { margin-bottom: 0; }

/* ============================================================
   37. GOVERNANCE CHECKLIST PAGE
   ============================================================ */

.checklist-section {
  margin-bottom: var(--sp-10);
}

.checklist-section__header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--amber);
}

.checklist-section__num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
}

.checklist-section__header h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0;
}

.checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  line-height: 1.5;
  transition: border-color var(--transition);
}

.checklist-item:hover { border-color: rgba(212,168,75,0.4); }
.checklist-item i { color: var(--amber); flex-shrink: 0; margin-top: 0.1rem; font-size: 1rem; }
.checklist-item strong { color: var(--navy); display: block; margin-bottom: 0.2rem; font-size: 0.9375rem; }
.checklist-item span { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   38. LINKEDIN NEWSLETTER BUTTON
   ============================================================ */

.libutton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  text-align: center;
  outline: none;
  text-decoration: none !important;
  color: #ffffff !important;
  width: 200px;
  height: 32px;
  border-radius: 16px;
  background-color: #0A66C2;
  font-family: "SF Pro Text", Helvetica, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.libutton:hover {
  background-color: #004182;
}
