/* ============================================================================
   YUSEEMEDIA — SINGLE STYLESHEET
   Every page links only this file: /src/styles/styles.css

   TABLE OF CONTENTS  (search for the tag, e.g. "#TOKENS")
   ----------------------------------------------------------------------------
   #TOKENS          — CSS variables / design tokens
   #BASE            — reset, html/body, layout utilities, typography,
                       buttons, cards, badges, page-hero, step cards,
                       stat cards, feature lists, forms, breadcrumbs,
                       split cards, CTA band  (this whole zone was
                       formerly global.css — internal banners kept)
   #ANIMATIONS      — keyframes + reveal-on-scroll utility
   #NAV             — site header / navigation bar + mobile menu
   #FOOTER          — site footer
   #CHAT-WIDGET     — floating chat bubble + panel
   #PAGE-HOME       — index.html only
   #PAGE-PRICING    — pricing.html only
   #PAGE-ABOUT      — about.html only
   #PAGE-GET-STARTED— get-started.html only
   #PAGE-THANK-YOU  — thank-you.html only
   #PAGE-404        — 404.html only
   #RESPONSIVE      — all media-query overrides, kept together and LAST
                       on purpose so they reliably win the cascade
   ============================================================================ */


/* ======================================================================
   #TOKENS
   CSS variables / design tokens — colors, spacing, type scale
   ====================================================================== */

:root {
  /* Brand Colors — extracted from Yuseemedia logo */
  --color-primary:       #8B572A;   /* Chestnut brown — main brand */
  --color-primary-dark:  #6B4423;   /* Dark chestnut — hover/depth */
  --color-primary-light: #A87243;   /* Light chestnut — for dark bg */
  --color-accent:        #D4AF37;   /* Golden tan — logo highlight */
  --color-success:       #28A745;
  --color-danger:        #DC3545;

  /* Neutrals */
  --color-black:         #0B0E14;
  --color-dark:          #121726;
  --color-dark-2:        #1E2435;
  --color-dark-3:        #2A3149;
  --color-mid:           #4A5568;
  --color-muted:         #718096;
  --color-border:        #E2E8F0;
  --color-light:         #F7F9FC;
  --color-white:         #FFFFFF;

  /* Typography */
  --font-sans:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:   'Fira Code', 'Consolas', monospace;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;

  --font-normal:   400;
  --font-medium:   500;
  --font-semibold: 600;
  --font-bold:     700;
  --font-extrabold:800;

  --leading-tight:  1.25;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.625;

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

  /* Border Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.16);
  --shadow-glow:0 0 40px rgba(139,87,42,.25);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}



/* ======================================================================
   #BASE
   Reset, layout, typography, buttons, cards & shared components
   ====================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section--sm { padding: var(--space-12) 0; }
.section--lg { padding: var(--space-32) 0; }
.section--dark { background: var(--color-dark); color: var(--color-white); }
.section--light { background: var(--color-light); }

.grid { display: grid; gap: var(--space-8); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap { gap: var(--space-4); }
.flex--col { flex-direction: column; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-muted   { color: var(--color-muted); }
.text-white   { color: var(--color-white); }
.text-primary { color: var(--color-primary); }
.text-accent  { color: var(--color-accent); }

.heading-xl {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
}

.heading-md {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
  font-weight: var(--font-bold);
  line-height: var(--leading-snug);
}

.heading-sm {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
}

.body-lg { font-size: var(--text-lg); line-height: var(--leading-relaxed); }
.body-md { font-size: var(--text-base); line-height: var(--leading-relaxed); }
.body-sm { font-size: var(--text-sm); line-height: var(--leading-normal); }

.label {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* ============================================================
   BUTTON STYLES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--color-white); }

.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-border);
}
.btn--outline-dark:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn--accent {
  background: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
}
.btn--accent:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-lg); border-radius: var(--radius-lg); }
.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }

/* ============================================================
   CARD COMPONENT
   ============================================================ */

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.card--dark {
  background: var(--color-dark-2);
  border-color: var(--color-dark-3);
  color: var(--color-white);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(139,87,42,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: var(--text-2xl);
}

.card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
}

.card__body {
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

/* ============================================================
   BADGE / TAG
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
}

.badge--primary { background: rgba(139,87,42,0.12); color: var(--color-primary); }
.badge--success { background: rgba(40,167,69,0.12); color: var(--color-success); }
.badge--accent  { background: rgba(255,193,7,0.15); color: #8a6d00; }

/* ============================================================
   SECTION HEADER (SHARED PATTERN)
   ============================================================ */

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}

.section-header .label { margin-bottom: var(--space-3); display: block; }
.section-header .heading-lg { margin-bottom: var(--space-5); }
.section-header .body-lg { color: var(--color-muted); }

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */

.page-hero {
  background: var(--color-dark);
  color: var(--color-white);
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(139,87,42,.3), transparent);
  pointer-events: none;
}

.page-hero .container { position: relative; }

.page-hero__label { margin-bottom: var(--space-4); display: block; }
.page-hero__title { margin-bottom: var(--space-6); }
.page-hero__body { color: rgba(255,255,255,0.7); max-width: 640px; margin-bottom: var(--space-8); }
.page-hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center; }

/* Variant: Solutions pages get a warmer gold glow instead of the default brown,
   and a left accent rule on the label for an "industry playbook" feel */
.page-hero--solutions::before {
  background: radial-gradient(ellipse 65% 65% at 50% 0%, rgba(212,175,55,.28), transparent);
}
.page-hero--solutions .page-hero__label {
  padding-left: var(--space-3);
  border-left: 2px solid var(--color-accent);
}

/* Variant: Blog/editorial pages get a narrower, off-center glow and a slightly
   smaller top padding for a more editorial, less "sales landing page" feel */
.page-hero--editorial {
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
}
.page-hero--editorial::before {
  background: radial-gradient(ellipse 45% 70% at 20% 0%, rgba(212,175,55,.22), transparent);
}

/* Variant: Legal/policy pages drop the glow entirely for a flatter,
   more formal, document-like tone */
.page-hero--legal {
  background: var(--color-dark-2);
}
.page-hero--legal::before { display: none; }
.page-hero--legal .page-hero__label { color: rgba(255,255,255,0.55); }

/* ============================================================
   PLACEHOLDER / SKELETON (for skeleton build)
   ============================================================ */

.placeholder-block {
  background: var(--color-light);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.placeholder-block__icon { font-size: 2rem; margin-bottom: var(--space-3); opacity: .4; }
.placeholder-block__label { font-weight: var(--font-semibold); }
.placeholder-block__hint  { font-size: var(--text-xs); margin-top: var(--space-2); opacity: .7; }

/* ============================================================
   FORM STYLES
   ============================================================ */

.form-group { margin-bottom: var(--space-5); }
.form-label { display: block; font-size: var(--text-sm); font-weight: var(--font-medium); margin-bottom: var(--space-2); }
.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: border-color var(--transition);
  background: var(--color-white);
}
.form-control:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(139,87,42,.15); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-6);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb__sep { opacity: .4; }

/* ============================================================
   STEP CARDS ("How It Works" / "Process Overview" numbered steps)
   Distinct from .stat-card (which is for KPI/metric numbers).
   Default styling suits light sections; add .step-card--dark
   for use inside .section--dark.
   ============================================================ */

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

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

.step-card__number {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-5);
}

.step-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
  color: var(--color-dark);
}

.step-card__body {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

.step-card--dark .step-card__number {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-accent);
}
.step-card--dark .step-card__title { color: var(--color-white); }
.step-card--dark .step-card__body { color: rgba(255,255,255,0.6); }

/* ============================================================
   STAT / METRIC CARDS
   ============================================================ */

.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  text-align: center;
}
.stat-card__value { font-size: var(--text-4xl); font-weight: var(--font-extrabold); color: var(--color-accent); line-height: 1; margin-bottom: var(--space-2); }
.stat-card__label { font-size: var(--text-sm); color: rgba(255,255,255,0.6); }

/* ============================================================
   SPLIT CARD (featured blog / case study — text + visual)
   ============================================================ */

.split-card__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}
.split-card__visual {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  min-height: 320px;
}

/* ============================================================
   BIO ROW (author / quote attribution — avatar + text)
   ============================================================ */

.bio-row {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}
.bio-row__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: var(--font-bold);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

/* ============================================================
   PAGE-END CTA BAND (repeated "Ready to get started?" section)
   ============================================================ */

.cta-band {
  background: var(--color-light);
  padding: var(--space-20) 0;
  text-align: center;
}
.cta-band__title { margin-bottom: var(--space-5); }
.cta-band__body { max-width: 500px; margin: 0 auto var(--space-8); }

/* ============================================================
   FEATURE LIST (checklist)
   ============================================================ */

.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-base);
  color: var(--color-mid);
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(139,87,42,0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--font-bold);
  margin-top: 2px;
}
.feature-list li > div { min-width: 0; }
.feature-list__term {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--color-dark);
  margin-bottom: 2px;
}
.feature-list__desc {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-mid);
  line-height: var(--leading-relaxed);
}



/* ======================================================================
   #ANIMATIONS
   Keyframes + entrance/reveal utility classes
   ====================================================================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

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

/* Utility animation classes */
.animate-fade-up   { animation: fadeInUp 0.6s ease both; }
.animate-fade      { animation: fadeIn 0.5s ease both; }
.animate-slide-in  { animation: slideInLeft 0.5s ease both; }
.animate-float     { animation: float 3s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Gradient animated text */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow effect */
.glow { box-shadow: var(--shadow-glow); }

/* Divider */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-8) 0;
}

/* Blur overlay for modals etc. */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reveal-on-scroll — apply .reveal to any element (section-header, card, etc.)
   and app.js's tiny IntersectionObserver adds .is-visible the first time it
   enters the viewport. Respects reduced-motion preferences. */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}



/* ======================================================================
   #NAV
   Site header / navigation bar (desktop dropdowns + mobile menu)
   ====================================================================== */

.site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-height);
      background: rgba(11,14,20,0.92);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      z-index: 1000;
      transition: background var(--transition);
    }
    /* Blur is applied via a pseudo-element rather than directly on .site-header.
       backdrop-filter/filter/transform on an ancestor creates a new containing
       block for position:fixed descendants — since .nav__links (mobile menu)
       is fixed and lives inside .site-header, putting the filter on the header
       itself was trapping the menu inside the header's own small box instead
       of positioning it against the viewport. Keeping the filter on a
       non-ancestor pseudo-element avoids that entirely. */
    .site-header::before {
      content: '';
      position: absolute;
      inset: 0;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      z-index: -1;
      pointer-events: none;
    }
    .site-header.scrolled {
      background: rgba(11,14,20,0.98);
    }

    .nav {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .nav__logo {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      font-weight: var(--font-bold);
      font-size: var(--text-xl);
      color: var(--color-white);
      text-decoration: none;
    }
    .nav__logo-mark {
      width: 36px; height: 36px;
      background: var(--color-primary);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      font-weight: var(--font-extrabold);
      font-size: var(--text-lg);
      color: var(--color-white);
    }
    .nav__logo-img {
      height: 38px;
      width: auto;
      object-fit: contain;
    }

    /* Links */
    .nav__links {
      display: flex;
      align-items: center;
      gap: var(--space-1);
      list-style: none;
    }

    .nav__link {
      color: rgba(255,255,255,0.75);
      font-size: var(--text-sm);
      font-weight: var(--font-medium);
      padding: var(--space-2) var(--space-3);
      border-radius: var(--radius-md);
      transition: all var(--transition);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: var(--space-1);
    }
    .nav__link:hover, .nav__link.active {
      color: var(--color-white);
      background: rgba(255,255,255,0.08);
    }
    .nav__arrow { font-size: 10px; opacity: .6; }

    /* Dropdown */
    .nav__item--dropdown { position: relative; }
    /* Invisible bridge so hover doesn't drop when crossing the gap */
    .nav__item--dropdown::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      height: 14px;
    }
    .nav__dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-dark-2);
      border: 1px solid var(--color-dark-3);
      border-radius: var(--radius-lg);
      padding: var(--space-2);
      min-width: 220px;
      box-shadow: var(--shadow-xl);
      z-index: 100;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
      transform: translateX(-50%) translateY(6px);
    }
    .nav__item--dropdown:hover .nav__dropdown,
    .nav__item--dropdown:focus-within .nav__dropdown,
    .nav__item--dropdown--open .nav__dropdown {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav__dropdown li a {
      display: block;
      padding: var(--space-3) var(--space-4);
      color: rgba(255,255,255,0.75);
      font-size: var(--text-sm);
      border-radius: var(--radius-md);
      transition: all var(--transition);
      text-decoration: none;
    }
    .nav__dropdown li a:hover {
      color: var(--color-white);
      background: rgba(255,255,255,0.08);
    }

    /* Mobile toggle */
    .nav__mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: var(--space-2);
      cursor: pointer;
      background: none;
      border: none;
      z-index: 1100;
    }
    .nav__mobile-toggle span {
      display: block;
      width: 24px; height: 2px;
      background: var(--color-white);
      border-radius: 2px;
      transition: all var(--transition);
    }
    .nav__mobile-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
    .nav__mobile-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* CTA in nav */
    .nav__cta-item { margin-left: var(--space-3); }

    /* ── MOBILE MENU (≤ 900px) ── */
    @media (max-width: 900px) {
      .site-header { height: 60px; }
      .nav__logo-img { height: 32px; }
      .nav__logo-text { font-size: var(--text-lg); }

      .nav__mobile-toggle { display: flex; }

      .nav__links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-dark);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-6) var(--space-5) var(--space-12);
        gap: var(--space-1);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(255,255,255,0.06);
        z-index: 1000;
      }
      .nav__links--open { transform: translateX(0); }

      .nav__link {
        padding: var(--space-4) var(--space-3);
        font-size: var(--text-base);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0;
        width: 100%;
        justify-content: space-between;
        box-sizing: border-box;
      }
      .nav__link:hover, .nav__link.active { background: rgba(255,255,255,0.04); }

      .nav__cta-item { margin-left: 0; margin-top: var(--space-4); }
      .nav__cta-item .btn { width: 100%; justify-content: center; padding: var(--space-4); }

      /* Mobile dropdowns: expand inline, no hover.
         Uses max-height (not display:none/block) to expand/collapse —
         more reliable across browsers when nested inside a flex/fixed
         parent, and animates smoothly for free. */
      .nav__item--dropdown::after { display: none; }
      .nav__dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: block;
        max-height: 0;
        overflow: hidden;
        background: rgba(0,0,0,0.25);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: 0;
        transition: max-height 0.25s ease;
      }
      .nav__item--dropdown--open .nav__dropdown {
        position: static !important;
        left: auto !important;
        transform: none !important;
        max-height: 600px;
        padding-bottom: var(--space-2);
      }
      .nav__dropdown li a {
        display: block;
        padding: var(--space-3) var(--space-3) var(--space-3) var(--space-6);
        font-size: var(--text-sm);
        color: rgba(255,255,255,0.85);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        box-sizing: border-box;
      }
      .nav__dropdown li:last-child a { border-bottom: none; }
    }



/* ======================================================================
   #FOOTER
   Site footer
   ====================================================================== */

.site-footer {
      background: var(--color-black);
      color: rgba(255,255,255,0.6);
      padding: var(--space-20) 0 var(--space-8);
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: var(--space-12);
      padding-bottom: var(--space-12);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer__logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      margin-bottom: var(--space-4);
    }
    .footer__logo-full {
      height: 42px;
      width: auto;
    }

    .footer__tagline {
      font-size: var(--text-sm);
      line-height: var(--leading-relaxed);
      margin-bottom: var(--space-6);
      max-width: 280px;
    }

    .footer__socials {
      display: flex;
      gap: var(--space-3);
    }
    .footer__socials a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      transition: all var(--transition);
      text-decoration: none;
      color: rgba(255,255,255,0.6);
    }
    .footer__socials a svg { width: 18px; height: 18px; }
    .footer__socials a:hover { color: var(--color-white); background: var(--color-primary); }
    .footer__socials a.social--whatsapp:hover { background: #25D366; }
    .footer__socials a.social--instagram:hover { background: linear-gradient(45deg, #f9ce34, #ee2a7b 45%, #6228d7 90%); }
    .footer__socials a.social--facebook:hover { background: #1877F2; }

    .footer__heading {
      font-size: var(--text-sm);
      font-weight: var(--font-semibold);
      color: var(--color-white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: var(--space-4);
    }

    .footer__col ul { list-style: none; }
    .footer__col li { margin-bottom: var(--space-2); }
    .footer__col a {
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color var(--transition);
    }
    .footer__col a:hover { color: var(--color-white); }

    .footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--space-8);
      font-size: var(--text-sm);
      flex-wrap: wrap;
      gap: var(--space-4);
    }

    .footer__legal {
      display: flex;
      gap: var(--space-6);
      list-style: none;
    }
    .footer__legal a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: var(--text-sm);
      transition: color var(--transition);
    }
    .footer__legal a:hover { color: var(--color-white); }

    /* CTA banner above footer */
    .footer-cta {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      border-radius: var(--radius-2xl);
      padding: var(--space-12) var(--space-12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-8);
      margin-bottom: var(--space-20);
      flex-wrap: wrap;
    }
    .footer-cta__text h2 { color: var(--color-white); font-size: var(--text-3xl); font-weight: var(--font-bold); margin-bottom: var(--space-2); }
    .footer-cta__text p  { color: rgba(255,255,255,0.8); font-size: var(--text-lg); }



/* ======================================================================
   #CHAT-WIDGET
   Floating chat bubble + panel (n8n-connected assistant)
   ====================================================================== */

.ym-chat {
      position: fixed;
      bottom: var(--space-6);
      right: var(--space-6);
      z-index: 2000;
      font-family: var(--font-sans);
      max-width: calc(100vw - (2 * var(--space-6)));
    }

    /* Toggle button */
    .ym-chat__toggle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--color-primary);
      color: var(--color-white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(139,87,42,0.4);
      transition: transform 0.2s ease, background 0.2s ease;
      position: relative;
      z-index: 2;
    }
    .ym-chat__toggle:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
    .ym-chat__toggle svg { width: 26px; height: 26px; }
    .ym-chat__toggle-icon-open, .ym-chat__toggle-icon-close { position: absolute; }

    /* Teaser bubble */
    .ym-chat__teaser {
      position: absolute;
      bottom: 72px;
      right: 0;
      background: var(--color-white);
      color: var(--color-dark);
      padding: var(--space-3) var(--space-5);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
      font-size: var(--text-sm);
      font-weight: var(--font-medium);
      white-space: nowrap;
      display: none;
      align-items: center;
      gap: var(--space-3);
      animation: ymTeaserIn 0.3s ease both;
    }
    .ym-chat__teaser.is-visible { display: flex; }
    @keyframes ymTeaserIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .ym-chat__teaser-close {
      color: var(--color-muted);
      font-size: var(--text-lg);
      line-height: 1;
      flex-shrink: 0;
    }

    /* Panel */
    .ym-chat__panel {
      position: absolute;
      bottom: 76px;
      right: 0;
      width: 360px;
      max-width: calc(100vw - var(--space-8));
      height: 520px;
      max-height: calc(100vh - 140px);
      background: var(--color-white);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(16px) scale(0.98);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      transform-origin: bottom right;
    }
    .ym-chat.is-open .ym-chat__panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }
    .ym-chat.is-open .ym-chat__teaser { display: none; }

    .ym-chat__header {
      background: var(--color-dark);
      color: var(--color-white);
      padding: var(--space-4) var(--space-5);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
    }
    .ym-chat__header-info { display: flex; align-items: center; gap: var(--space-3); }
    .ym-chat__avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
      display: flex; align-items: center; justify-content: center;
      font-weight: var(--font-bold);
      flex-shrink: 0;
    }
    .ym-chat__title { font-weight: var(--font-semibold); font-size: var(--text-sm); }
    .ym-chat__status { font-size: var(--text-xs); color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 4px; }
    .ym-chat__status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-success); display: inline-block; }
    .ym-chat__close { color: rgba(255,255,255,0.7); font-size: var(--text-2xl); line-height: 1; padding: var(--space-1); }
    .ym-chat__close:hover { color: var(--color-white); }

    .ym-chat__messages {
      flex: 1;
      overflow-y: auto;
      padding: var(--space-5);
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      background: var(--color-light);
    }
    .ym-chat__msg {
      max-width: 82%;
      padding: var(--space-3) var(--space-4);
      border-radius: 14px;
      font-size: var(--text-sm);
      line-height: 1.45;
    }
    .ym-chat__msg--bot {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      color: var(--color-dark);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }
    .ym-chat__msg--user {
      background: var(--color-primary);
      color: var(--color-white);
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }
    .ym-chat__msg--error {
      background: rgba(220,53,69,0.08);
      border: 1px solid rgba(220,53,69,0.25);
      color: var(--color-danger);
      align-self: flex-start;
    }

    .ym-chat__typing {
      padding: 0 var(--space-5) var(--space-3);
      background: var(--color-light);
      display: flex;
      gap: 4px;
      flex-shrink: 0;
    }
    .ym-chat__typing span {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--color-muted);
      animation: ymTypingBounce 1.2s infinite ease-in-out;
    }
    .ym-chat__typing span:nth-child(2) { animation-delay: 0.15s; }
    .ym-chat__typing span:nth-child(3) { animation-delay: 0.3s; }
    @keyframes ymTypingBounce {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
      30% { transform: translateY(-4px); opacity: 1; }
    }

    .ym-chat__input-row {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-3);
      border-top: 1px solid var(--color-border);
      background: var(--color-white);
      flex-shrink: 0;
    }
    .ym-chat__input {
      flex: 1;
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-full);
      padding: var(--space-3) var(--space-4);
      font-size: var(--text-sm);
      font-family: inherit;
    }
    .ym-chat__input:focus { outline: none; border-color: var(--color-primary); }
    .ym-chat__send {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--color-primary);
      color: var(--color-white);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background var(--transition);
    }
    .ym-chat__send:hover { background: var(--color-primary-dark); }
    .ym-chat__send svg { width: 17px; height: 17px; }
    .ym-chat__send:disabled { opacity: 0.5; cursor: not-allowed; }

    .ym-chat__whatsapp-fallback {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-3) var(--space-4);
      font-size: var(--text-xs);
      color: var(--color-muted);
      border-top: 1px solid var(--color-border);
      background: var(--color-white);
      flex-shrink: 0;
    }
    .ym-chat__whatsapp-fallback svg { width: 15px; height: 15px; color: #25D366; flex-shrink: 0; }
    .ym-chat__whatsapp-fallback:hover { color: var(--color-dark); }

    @media (max-width: 480px) {
      .ym-chat { bottom: var(--space-4); right: var(--space-4); }
      .ym-chat__panel {
        width: calc(100vw - var(--space-6));
        height: calc(100vh - 120px);
      }
    }



/* ======================================================================
   #PAGE-HOME
   index.html only — hero, stats strip, how-it-works, etc.
   ====================================================================== */

/* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--color-dark);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: var(--nav-height);
    }
    /* Animated background orbs */
    .hero__orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
    }
    .hero__orb--1 {
      width: 500px; height: 500px;
      background: rgba(139,87,42,.4);
      top: -150px; left: -100px;
      animation: orbFloat1 18s ease-in-out infinite;
    }
    .hero__orb--2 {
      width: 400px; height: 400px;
      background: rgba(212,175,55,.18);
      bottom: -100px; right: -50px;
      animation: orbFloat2 22s ease-in-out infinite;
    }
    .hero__orb--3 {
      width: 300px; height: 300px;
      background: rgba(168,114,67,.25);
      top: 40%; left: 50%;
      animation: orbFloat3 26s ease-in-out infinite;
    }
    @keyframes orbFloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,40px); } }
    @keyframes orbFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,-60px); } }
    @keyframes orbFloat3 { 0%,100% { transform: translate(-50%,-50%); } 50% { transform: translate(-30%,-60%); } }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 50% at 30% 0%, rgba(139,87,42,.15), transparent 60%);
      pointer-events: none;
      z-index: 1;
    }

    .hero .container {
      position: relative;
      z-index: 2;
      padding: var(--space-20) var(--space-6);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: var(--space-12);
      align-items: center;
    }

    .hero__content { max-width: 620px; }

    .hero__title {
      font-size: clamp(2.5rem, 5.5vw, 4.5rem);
      font-weight: var(--font-extrabold);
      color: var(--color-white);
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: var(--space-6);
    }
    .hero__title .highlight {
      background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    /* Animated typing cursor on rotating word */
    .hero__rotator {
      display: inline-block;
      background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero__rotator::after {
      content: '|';
      -webkit-text-fill-color: var(--color-accent);
      animation: blink 1s step-end infinite;
      font-weight: 400;
    }
    @keyframes blink { 50% { opacity: 0; } }

    .hero__subtitle {
      font-size: var(--text-xl);
      color: rgba(255,255,255,.65);
      max-width: 540px;
      line-height: var(--leading-relaxed);
      margin-bottom: var(--space-10);
    }
    .hero__actions {
      display: flex;
      gap: var(--space-4);
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: var(--space-10);
    }
    .hero__trust {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      row-gap: var(--space-2);
      gap: var(--space-4);
      font-size: var(--text-sm);
      color: rgba(255,255,255,.45);
    }
    .hero__trust span:not(.hero__trust-dot) { white-space: nowrap; }
    .hero__trust-dot { width: 4px; height: 4px; background: rgba(255,255,255,.3); border-radius: 50%; flex-shrink: 0; }

    /* ── HERO VISUAL: animated chat mockup (real phone proportions) ── */
    .hero__visual {
      position: relative;
      animation: fadeUp 0.8s ease 0.5s both;
      display: flex;
      justify-content: center;
      max-width: 340px;
      margin: 0 auto;
    }
    /* Outer bezel, fixed width + tall aspect ratio so it reads as a device, not a card */
    .hero__phone-frame {
      width: 300px;
      background: #241a12;
      border-radius: 40px;
      padding: 14px 10px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.45), inset 0 0 0 2px rgba(212,175,55,0.12);
      position: relative;
      z-index: 2;
    }
    /* Notch */
    .hero__phone-frame::before {
      content: '';
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 18px;
      background: #241a12;
      border-radius: 0 0 14px 14px;
      z-index: 3;
    }
    .hero__phone {
      background: var(--color-dark-2);
      border-radius: 28px;
      padding: var(--space-5) var(--space-4) var(--space-6);
      min-height: 460px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    /* Home indicator */
    .hero__phone::after {
      content: '';
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      border-radius: var(--radius-full);
      background: rgba(255,255,255,0.25);
    }
    .hero__phone-header {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding: var(--space-3) 0 var(--space-4);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: var(--space-4);
    }
    .hero__phone-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
      display: flex; align-items: center; justify-content: center;
      font-weight: var(--font-bold); color: var(--color-white); font-size: var(--text-sm);
    }
    .hero__phone-name { font-weight: var(--font-semibold); color: var(--color-white); font-size: var(--text-sm); }
    .hero__phone-status { font-size: var(--text-xs); color: var(--color-success); }
    .hero__phone-status::before { content: '●'; margin-right: 4px; }

    .hero__chat { display: flex; flex-direction: column; gap: var(--space-3); min-height: 240px; }
    .hero__bubble {
      max-width: 78%;
      padding: var(--space-3) var(--space-4);
      border-radius: 16px;
      font-size: var(--text-sm);
      line-height: 1.4;
      opacity: 0;
      animation: bubbleIn 0.5s ease forwards;
    }
    .hero__bubble--in {
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.9);
      border-bottom-left-radius: 4px;
      align-self: flex-start;
    }
    .hero__bubble--out {
      background: var(--color-primary);
      color: var(--color-white);
      border-bottom-right-radius: 4px;
      align-self: flex-end;
    }
    .hero__bubble:nth-child(1) { animation-delay: 0.8s; }
    .hero__bubble:nth-child(2) { animation-delay: 1.6s; }
    .hero__bubble:nth-child(3) { animation-delay: 2.4s; }
    .hero__bubble:nth-child(4) { animation-delay: 3.2s; }
    @keyframes bubbleIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Floating platform icon badges around phone */
    .hero__badge {
      position: absolute;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      z-index: 3;
    }
    .hero__badge svg { width: 24px; height: 24px; }
    .hero__badge--1 {
      top: 10%; left: -20px;
      background: #25D366; /* WhatsApp green */
      animation: floatBadge 4s ease-in-out infinite;
    }
    .hero__badge--2 {
      bottom: 32%; right: -22px;
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); /* Instagram gradient */
      animation: floatBadge 4s ease-in-out infinite 1.5s;
    }
    .hero__badge--3 {
      bottom: -10px; left: 22%;
      background: #1877F2; /* Facebook blue */
      animation: floatBadge 4s ease-in-out infinite 0.7s;
    }
    @keyframes floatBadge {
      0%,100% { transform: translateY(0); }
      50%     { transform: translateY(-10px); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Hero becomes single-col on tablet/mobile — phone mockup is desktop-only */
    @media (max-width: 980px) {
      .hero .container { grid-template-columns: 1fr; gap: var(--space-12); text-align: center; }
      .hero__content { max-width: 100%; margin: 0 auto; }
      .hero__actions, .hero__trust { justify-content: center; }
      .hero__subtitle { margin-left: auto; margin-right: auto; }
      .hero__visual { display: none; }
    }

    /* ── STATS STRIP ── */
    .stats-strip {
      background: var(--color-dark-2);
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: var(--space-10) 0;
    }
    .stats-strip__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-8);
      text-align: center;
    }
    .stats-strip__item-value {
      font-size: var(--text-4xl);
      font-weight: var(--font-extrabold);
      color: var(--color-accent);
      line-height: 1;
      margin-bottom: var(--space-2);
    }
    .stats-strip__item-label {
      font-size: var(--text-sm);
      color: rgba(255,255,255,.5);
    }

    /* ── HOW IT WORKS ── */
    .how-it-works { background: var(--color-light); }

    /* ── SOLUTIONS PREVIEW ── */
    .solutions-preview { background: var(--color-dark); }
    .solutions-preview .section-header .label { color: var(--color-primary-light); }
    .solutions-preview .section-header .heading-lg { color: var(--color-white); }
    .solutions-preview .section-header .body-lg { color: rgba(255,255,255,.6); }

    /* ── SERVICES PREVIEW ── */
    .services-preview {}

    /* ── SOCIAL PROOF ── */
    .social-proof { background: var(--color-light); }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
    .testimonial-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: var(--space-8);
    }
    .testimonial-card__stars { color: var(--color-accent); margin-bottom: var(--space-4); letter-spacing: 2px; }
    .testimonial-card__quote { font-size: var(--text-base); color: var(--color-mid); line-height: var(--leading-relaxed); margin-bottom: var(--space-6); font-style: italic; }
    .testimonial-card__author { display: flex; align-items: center; gap: var(--space-3); }
    .testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary); display: flex; align-items: center; justify-content: center; color: var(--color-white); font-weight: var(--font-bold); flex-shrink: 0; }
    .testimonial-card__name { font-weight: var(--font-semibold); font-size: var(--text-sm); }
    .testimonial-card__role { font-size: var(--text-xs); color: var(--color-muted); }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      padding: var(--space-20) 0;
      text-align: center;
    }
    .cta-banner h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); font-weight: var(--font-extrabold); color: var(--color-white); margin-bottom: var(--space-5); }
    .cta-banner p  { font-size: var(--text-xl); color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto var(--space-8); }
    .cta-banner__actions { display: flex; justify-content: center; gap: var(--space-4); flex-wrap: wrap; }

    @media (max-width: 768px) {
      .step-grid, .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
      .testimonial-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
    }



/* ======================================================================
   #PAGE-PRICING
   pricing.html only — plan cards, billing toggle, payment modal
   ====================================================================== */

/* Pricing cards */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: stretch; }
    .pricing-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-2xl);
      padding: var(--space-8);
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all var(--transition);
    }
    .pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .pricing-card--featured {
      border-color: var(--color-primary);
      border-width: 2px;
      box-shadow: var(--shadow-lg);
      background: var(--color-white);
    }
    .pricing-card__ribbon {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: var(--color-accent);
      color: var(--color-black);
      font-size: var(--text-xs);
      font-weight: var(--font-bold);
      padding: var(--space-1) var(--space-4);
      border-radius: var(--radius-full);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .pricing-card__header { margin-bottom: var(--space-6); }
    .pricing-card__badge {
      display: inline-block;
      font-size: var(--text-sm);
      font-weight: var(--font-bold);
      color: var(--color-primary);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: var(--space-3);
    }
    .pricing-card__desc { font-size: var(--text-sm); color: var(--color-muted); min-height: 40px; margin-bottom: var(--space-4); }
    .pricing-card__price {
      font-size: var(--text-4xl);
      font-weight: var(--font-extrabold);
      color: var(--color-dark);
      line-height: 1;
    }
    .pricing-card__price .currency { font-size: var(--text-xl); vertical-align: top; margin-right: 2px; }
    .pricing-card__price .per { display: block; font-size: var(--text-sm); font-weight: var(--font-normal); color: var(--color-muted); margin-top: var(--space-2); }
    .pricing-card__setup { font-size: var(--text-xs); color: var(--color-muted); margin-top: var(--space-3); line-height: var(--leading-snug); }

    /* Billing cycle toggle */
    .billing-toggle {
      display: flex;
      justify-content: center;
      gap: var(--space-2);
      margin-bottom: var(--space-10);
      flex-wrap: wrap;
    }
    .billing-toggle__btn {
      padding: var(--space-3) var(--space-5);
      border-radius: var(--radius-full);
      border: 1.5px solid var(--color-border);
      background: var(--color-white);
      font-size: var(--text-sm);
      font-weight: var(--font-semibold);
      color: var(--color-mid);
      display: flex;
      align-items: center;
      gap: var(--space-2);
      transition: all var(--transition);
    }
    .billing-toggle__btn:hover { border-color: var(--color-primary); }
    .billing-toggle__btn.is-active {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: var(--color-white);
    }
    .billing-toggle__save {
      font-size: var(--text-xs);
      background: rgba(40,167,69,0.15);
      color: var(--color-success);
      padding: 2px 8px;
      border-radius: var(--radius-full);
      font-weight: var(--font-semibold);
    }
    .billing-toggle__btn.is-active .billing-toggle__save {
      background: rgba(255,255,255,0.2);
      color: var(--color-white);
    }

    /* Payment modal */
    .pay-modal {
      position: fixed;
      inset: 0;
      z-index: 3000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: var(--space-5);
    }
    .pay-modal.is-open { display: flex; }
    .pay-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(11,14,20,0.6);
      backdrop-filter: blur(4px);
    }
    .pay-modal__box {
      position: relative;
      background: var(--color-white);
      border-radius: var(--radius-xl);
      padding: var(--space-10) var(--space-8) var(--space-8);
      max-width: 420px;
      width: 100%;
      box-shadow: var(--shadow-xl);
    }
    .pay-modal__close {
      position: absolute;
      top: var(--space-4);
      right: var(--space-4);
      font-size: var(--text-2xl);
      color: var(--color-muted);
      line-height: 1;
    }
    .pay-modal__close:hover { color: var(--color-dark); }
    .pay-modal__amount {
      font-size: var(--text-4xl);
      font-weight: var(--font-extrabold);
      color: var(--color-primary);
      margin-bottom: var(--space-2);
    }
    .pricing-card__features {
      list-style: none;
      flex: 1;
      margin-bottom: var(--space-8);
    }
    .pricing-card__features li {
      display: flex;
      align-items: flex-start;
      gap: var(--space-2);
      padding: var(--space-2) 0;
      font-size: var(--text-sm);
      color: var(--color-mid);
    }
    .pricing-card__features li::before { content: '✓'; color: var(--color-success); font-weight: bold; flex-shrink: 0; }
    .pricing-card__cta { width: 100%; justify-content: center; margin-top: auto; }

    /* Comparison table */
    .comparison-table-wrap { overflow-x: auto; }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--color-white);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .comparison-table th, .comparison-table td {
      padding: var(--space-4);
      text-align: center;
      border-bottom: 1px solid var(--color-border);
      font-size: var(--text-sm);
    }
    .comparison-table th:first-child, .comparison-table td:first-child {
      text-align: left;
      font-weight: var(--font-semibold);
      color: var(--color-dark);
    }
    .comparison-table thead th {
      background: var(--color-dark);
      color: var(--color-white);
      font-weight: var(--font-bold);
    }
    .comparison-table thead th:nth-child(3) { background: var(--color-primary); }
    .comparison-table td.yes { color: var(--color-success); font-weight: var(--font-semibold); }
    .comparison-table td.no { color: var(--color-muted); opacity: 0.5; }
    .comparison-table tbody tr:hover { background: var(--color-light); }

    /* FAQ */
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      margin-bottom: var(--space-3);
      overflow: hidden;
    }
    .faq-item summary {
      padding: var(--space-5) var(--space-6);
      font-weight: var(--font-semibold);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background var(--transition);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '+'; font-size: var(--text-xl); color: var(--color-primary); transition: transform var(--transition); }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item summary:hover { background: var(--color-light); }
    .faq-item p { padding: 0 var(--space-6) var(--space-5); color: var(--color-mid); line-height: var(--leading-relaxed); }

    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    }



/* ======================================================================
   #PAGE-ABOUT
   about.html only — story block, team grid, why-Africa cards
   ====================================================================== */

.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
    .story-block__text p { color: var(--color-mid); line-height: var(--leading-relaxed); margin-bottom: var(--space-4); }
    .story-block__quote {
      font-size: var(--text-2xl);
      font-weight: var(--font-bold);
      color: var(--color-dark);
      line-height: var(--leading-snug);
      border-left: 4px solid var(--color-primary);
      padding-left: var(--space-5);
      margin-bottom: var(--space-5);
    }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
    .team-card { text-align: center; }
    .team-card__avatar {
      width: 120px; height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
      margin: 0 auto var(--space-4);
      display: flex; align-items: center; justify-content: center;
      color: var(--color-white);
      font-size: var(--text-3xl);
      font-weight: var(--font-bold);
    }
    .team-card__name { font-weight: var(--font-bold); font-size: var(--text-lg); margin-bottom: var(--space-1); }
    .team-card__role { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: var(--space-3); }
    .team-card__bio { font-size: var(--text-sm); color: var(--color-mid); line-height: var(--leading-relaxed); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
    .stat-block { text-align: center; }
    .stat-block__value { font-size: var(--text-5xl); font-weight: var(--font-extrabold); color: var(--color-primary); line-height: 1; margin-bottom: var(--space-3); }
    .stat-block__label { font-size: var(--text-sm); color: var(--color-muted); }

    @media (max-width: 768px) {
      .story-block { grid-template-columns: 1fr; }
      .values-grid, .why-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }



/* ======================================================================
   #PAGE-GET-STARTED
   get-started.html only — split layout + form
   ====================================================================== */

.get-started-layout {
      min-height: 100vh;
      background: var(--color-dark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: var(--nav-height);
    }

    /* Left panel */
    .gs-left {
      background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
      padding: var(--space-20) var(--space-12);
      border-right: 1px solid rgba(255,255,255,.06);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .gs-left::before {
      content: '';
      position: absolute;
      top: -100px; left: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(139,87,42,.2), transparent 70%);
      pointer-events: none;
    }
    .gs-left .label { margin-bottom: var(--space-4); }
    .gs-left h1 { color: var(--color-white); font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); font-weight: var(--font-extrabold); line-height: 1.2; margin-bottom: var(--space-6); }
    .gs-left p  { color: rgba(255,255,255,.65); font-size: var(--text-lg); line-height: var(--leading-relaxed); margin-bottom: var(--space-10); max-width: 460px; }

    .gs-benefits { list-style: none; display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-10); }
    .gs-benefits li {
      display: flex;
      align-items: flex-start;
      gap: var(--space-3);
      color: rgba(255,255,255,.8);
      font-size: var(--text-base);
    }
    .gs-benefits li .check {
      width: 24px; height: 24px;
      background: rgba(40,167,69,.2);
      border: 1px solid rgba(40,167,69,.4);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #4ade80;
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .gs-trust { display: flex; gap: var(--space-6); }
    .gs-trust-item { text-align: center; }
    .gs-trust-item .value { font-size: var(--text-2xl); font-weight: var(--font-extrabold); color: var(--color-accent); }
    .gs-trust-item .lbl  { font-size: var(--text-xs); color: rgba(255,255,255,.45); margin-top: var(--space-1); }

    /* Right panel / form */
    .gs-right {
      background: var(--color-white);
      padding: var(--space-20) var(--space-12);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .gs-form-header { margin-bottom: var(--space-8); }
    .gs-form-header h2 { font-size: var(--text-2xl); font-weight: var(--font-bold); margin-bottom: var(--space-2); }
    .gs-form-header p  { color: var(--color-muted); }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }

    .gs-form .btn { width: 100%; justify-content: center; margin-top: var(--space-2); }
    .gs-form-note { text-align: center; font-size: var(--text-xs); color: var(--color-muted); margin-top: var(--space-4); }

    @media (max-width: 900px) {
      .get-started-layout { grid-template-columns: 1fr; }
      .gs-left { padding: var(--space-12) var(--space-6); }
      .gs-right { padding: var(--space-12) var(--space-6); }
    }
    @media (max-width: 480px) {
      .form-row { grid-template-columns: 1fr; }
    }



/* ======================================================================
   #PAGE-THANK-YOU
   thank-you.html only — confirmation card
   ====================================================================== */

.ty-page {
      min-height: 100vh;
      background: var(--color-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-8);
      padding-top: calc(var(--nav-height) + var(--space-8));
      position: relative;
      overflow: hidden;
    }
    .ty-page::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(40,167,69,.2), transparent);
      pointer-events: none;
    }
    .ty-card {
      background: var(--color-dark-2);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-2xl);
      padding: var(--space-16) var(--space-12);
      text-align: center;
      max-width: 560px;
      width: 100%;
      position: relative;
      animation: fadeInUp 0.6s ease both;
    }
    .ty-icon {
      width: 80px; height: 80px;
      background: rgba(40,167,69,.15);
      border: 2px solid rgba(40,167,69,.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      margin: 0 auto var(--space-6);
    }
    .ty-card h1 {
      color: var(--color-white);
      font-size: var(--text-3xl);
      font-weight: var(--font-extrabold);
      margin-bottom: var(--space-4);
    }
    .ty-card p {
      color: rgba(255,255,255,.65);
      font-size: var(--text-lg);
      line-height: var(--leading-relaxed);
      margin-bottom: var(--space-8);
    }
    .ty-next {
      list-style: none;
      text-align: left;
      background: rgba(255,255,255,.04);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      margin-bottom: var(--space-8);
    }
    .ty-next li {
      display: flex;
      align-items: flex-start;
      gap: var(--space-3);
      color: rgba(255,255,255,.75);
      font-size: var(--text-sm);
      padding: var(--space-2) 0;
    }
    .ty-next li:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.06); }
    .ty-next li .step-num {
      width: 22px; height: 22px;
      background: var(--color-primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      font-weight: var(--font-bold);
      color: var(--color-white);
      flex-shrink: 0;
    }
    .ty-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }



/* ======================================================================
   #PAGE-404
   404.html only
   ====================================================================== */

.nf-page {
      min-height: 100vh;
      background: var(--color-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: var(--space-8);
      padding-top: calc(var(--nav-height) + var(--space-8));
      position: relative;
      overflow: hidden;
    }
    .nf-page::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(139,87,42,.15), transparent);
      pointer-events: none;
    }
    .nf-content { position: relative; max-width: 480px; }
    .nf-code {
      font-size: 8rem;
      font-weight: var(--font-extrabold);
      color: var(--color-primary);
      line-height: 1;
      opacity: .15;
      margin-bottom: -var(--space-8);
      display: block;
    }
    .nf-content h1 {
      color: var(--color-white);
      font-size: var(--text-3xl);
      font-weight: var(--font-bold);
      margin-bottom: var(--space-4);
    }
    .nf-content p {
      color: rgba(255,255,255,.6);
      font-size: var(--text-lg);
      line-height: var(--leading-relaxed);
      margin-bottom: var(--space-8);
    }
    .nf-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }



/* ======================================================================
   #RESPONSIVE
   All media queries, deliberately kept last in the cascade
   ====================================================================== */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .grid--4  { grid-template-columns: repeat(2, 1fr); }
  .grid--3  { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 var(--space-5); }
}

/* Footer stacks at the SAME breakpoint the nav switches to its mobile
   hamburger menu (900px in header.js). Keeping these in sync matters:
   between 769–900px the nav was already "mobile" while the footer was
   still rendering its 4-column desktop grid, squeezing every column
   into a sliver and wrapping labels awkwardly. */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
  }
  .footer__bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: var(--space-4) !important;
  }
  .footer__legal { flex-wrap: wrap !important; justify-content: center !important; gap: var(--space-4) !important; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .section { padding: var(--space-12) 0; }
  .section--lg { padding: var(--space-16) 0; }
  .heading-xl { font-size: var(--text-3xl); }
  .heading-lg { font-size: var(--text-2xl); }
  .page-hero { padding: calc(var(--nav-height) + var(--space-10)) 0 var(--space-10); }
  .page-hero__actions { flex-direction: column; align-items: stretch; }
  .page-hero__actions .btn { width: 100%; justify-content: center; }

  /* Hero actions stacked */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { justify-content: center; flex-wrap: wrap; text-align: center; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.75rem) !important; }

  /* Buttons full-width feel on mobile */
  .btn--lg { width: 100%; justify-content: center; }

  /* Stats strip → 2 cols */
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr) !important; gap: var(--space-6) !important; }
  .stats-strip__item-value { font-size: var(--text-3xl) !important; }

  /* Testimonials single col */
  .testimonial-grid { grid-template-columns: 1fr !important; }

  /* Steps wrap to 2x2 */
  .step-grid { grid-template-columns: repeat(2, 1fr) !important; gap: var(--space-6) !important; }

  /* CTA banner */
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }

  /* Cards: reduce padding on mobile */
  .card { padding: var(--space-5); }
  .pricing-card { padding: var(--space-5); }

  /* Comparison table horizontal scroll */
  .comparison-table th, .comparison-table td { padding: var(--space-3) var(--space-2); font-size: var(--text-xs); }

  /* About page story block stacks */
  .story-block { grid-template-columns: 1fr !important; gap: var(--space-8) !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Page-end CTA band gets the same padding relief as .section */
  .cta-band { padding: var(--space-12) 0 !important; }

  /* Featured blog/case-study split cards stack instead of overlapping */
  .split-card__grid { grid-template-columns: 1fr !important; }
  .split-card__visual { min-height: 200px !important; }

  /* Author/quote bio rows stack instead of squeezing side by side */
  .bio-row { flex-direction: column !important; text-align: center !important; }
  .bio-row__avatar { margin: 0 auto; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  :root { --space-6: 1.25rem; }
  .stats-strip__grid { grid-template-columns: 1fr !important; }
  .step-grid { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .team-card__avatar { width: 96px !important; height: 96px !important; }
  .cta-band { padding: var(--space-10) 0 !important; }
  .btn--lg { padding: var(--space-3) var(--space-6); font-size: var(--text-base); }
  .hero__title { font-size: clamp(1.75rem, 10vw, 2.25rem) !important; }

  /* Tighter section padding on small phones */
  .section { padding: var(--space-10) 0; }
  .page-hero { padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-8); }
}

