/* ===================================================================
   CONTROLDINFORMATICA — Design System v2
   Verde · Branco · Precisão Corporativa
   =================================================================== */

/* 1. Imports & Fonts
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* 2. Design Tokens — Light (Default)
   =================================================================== */
:root {
  /* Verde — Identidade Principal */
  --c-green:         #16A34A;
  --c-green-dark:    #15803D;
  --c-green-light:   #22C55E;
  --c-green-muted:   #DCFCE7;
  --c-green-subtle:  #F0FDF4;

  /* Aliases para compatibilidade (mapeados para verde) */
  --c-blue:          #16A34A;
  --c-blue-light:    #22C55E;
  --c-blue-dark:     #15803D;
  --c-cyan:          #22C55E;
  --c-cyan-dim:      #16A34A;

  /* Cores de apoio */
  --c-violet:        #15803D;
  --c-orange:        #DC2626;
  --c-orange-light:  #EF4444;
  --c-danger:        #DC2626;
  --c-gold:          #15803D;

  /* Fundos */
  --bg-root:         #FFFFFF;
  --bg-2:            #F8FAFC;
  --bg-3:            #F1F5F9;
  --bg-surface:      #FFFFFF;
  --bg-surface-2:    #F8FAFC;
  --bg-card:         #FFFFFF;
  --bg-glass:        rgba(0, 0, 0, 0.025);
  --bg-glass-hover:  rgba(0, 0, 0, 0.05);

  /* Bordas */
  --border:          #E2E8F0;
  --border-hover:    #CBD5E1;
  --border-active:   rgba(22, 163, 74, 0.4);
  --border-glow:     rgba(22, 163, 74, 0.15);

  /* Texto */
  --text-primary:    #0F172A;
  --text-secondary:  #475569;
  --text-muted:      #94A3B8;
  --text-link:       #15803D;

  /* Tipografia */
  --font-display:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:       'Inter', system-ui, sans-serif;
  --font-mono:       'JetBrains Mono', 'Fira Code', monospace;

  /* Escala tipográfica */
  --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;
  --text-7xl:  4.5rem;
  --text-8xl:  6rem;

  /* Espaçamento */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-7:  1.75rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --sp-40: 10rem;
  --sp-48: 12rem;

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

  /* Sombras — Sutis e leves */
  --shadow-sm:     0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:     0 4px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg:     0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl:     0 24px 56px rgba(0, 0, 0, 0.10);
  --shadow-blue:   0 4px 20px rgba(22, 163, 74, 0.15);
  --shadow-cyan:   0 4px 20px rgba(22, 163, 74, 0.12);
  --shadow-orange: 0 4px 20px rgba(234, 88, 12, 0.18);
  --shadow-glow:   0 0 40px rgba(22, 163, 74, 0.08);

  /* Transições */
  --t-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container:      1280px;
  --container-wide: 1440px;
  --nav-h:          72px;
}

/* 3. Dark Theme
   =================================================================== */
[data-theme="dark"] {
  --c-green:         #22C55E;
  --c-green-dark:    #16A34A;
  --c-green-light:   #4ADE80;
  --c-green-muted:   rgba(34, 197, 94, 0.12);
  --c-green-subtle:  rgba(34, 197, 94, 0.06);

  --c-blue:          #22C55E;
  --c-blue-light:    #4ADE80;
  --c-blue-dark:     #16A34A;
  --c-cyan:          #4ADE80;
  --c-cyan-dim:      #22C55E;
  --c-gold:          #4ADE80;

  --bg-root:         #060F1C;
  --bg-2:            #091320;
  --bg-3:            #0D1A2B;
  --bg-surface:      #101F30;
  --bg-surface-2:    #152537;
  --bg-card:         #0D1B2C;
  --bg-glass:        rgba(255, 255, 255, 0.04);
  --bg-glass-hover:  rgba(255, 255, 255, 0.08);

  --border:          rgba(255, 255, 255, 0.07);
  --border-hover:    rgba(255, 255, 255, 0.13);
  --border-active:   rgba(34, 197, 94, 0.4);
  --border-glow:     rgba(34, 197, 94, 0.2);

  --text-primary:    #F1F5F9;
  --text-secondary:  #8EA5C4;
  --text-muted:      #4D648A;
  --text-link:       #4ADE80;

  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md:     0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-xl:     0 30px 80px rgba(0, 0, 0, 0.65);
  --shadow-blue:   0 0 40px rgba(34, 197, 94, 0.2);
  --shadow-cyan:   0 0 40px rgba(74, 222, 128, 0.15);
  --shadow-glow:   0 0 60px rgba(34, 197, 94, 0.08);
}

/* 4. Reset & Base
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-root);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::selection {
  background: rgba(22, 163, 74, 0.15);
  color: var(--text-primary);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--c-green); }

/* 5. Utilities
   =================================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-orange {
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 6. Eyebrow Labels
   =================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-green-dark);
  padding: var(--sp-2) var(--sp-4);
  background: var(--c-green-subtle);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--r-full);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}

[data-theme="dark"] .eyebrow {
  color: var(--c-green-light);
  background: var(--c-green-muted);
  border-color: rgba(34, 197, 94, 0.25);
}
[data-theme="dark"] .eyebrow::before {
  background: var(--c-green-light);
  box-shadow: 0 0 8px var(--c-green-light);
}

/* 7. Buttons
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.98); }

/* Botão primário — Verde Floresta */
.btn-primary {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}
.btn-primary:hover {
  background: var(--c-green-dark);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
  transform: translateY(-1px);
}

/* Botão CTA — Grafite máximo contraste */
.btn-cta {
  background: #1E293B;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: var(--text-base);
  padding: var(--sp-4) var(--sp-8);
}
.btn-cta:hover {
  background: #0F172A;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
.btn-cta:active { transform: scale(0.98) translateY(0); }

[data-theme="dark"] .btn-cta {
  background: var(--c-green);
  box-shadow: 0 2px 12px rgba(22, 163, 74, 0.35);
}
[data-theme="dark"] .btn-cta:hover {
  background: var(--c-green-dark);
  box-shadow: 0 4px 24px rgba(22, 163, 74, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--c-green);
  color: var(--c-green-dark);
  background: var(--c-green-subtle);
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-glass-hover); color: var(--text-primary); }

.btn-success {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}
.btn-success:hover {
  background: var(--c-green-dark);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
  transform: translateY(-1px);
}
.btn-danger {
  background: transparent;
  color: var(--c-danger);
  border: 1px solid rgba(220, 38, 38, 0.3);
}
.btn-danger:hover {
  background: rgba(220, 38, 38, 0.06);
  border-color: var(--c-danger);
}

.btn-lg { padding: var(--sp-4) var(--sp-10); font-size: var(--text-base); }
.btn-sm { padding: var(--sp-2) var(--sp-4); font-size: var(--text-xs); }
.btn-icon { padding: var(--sp-3); border-radius: var(--r-md); }

.btn-arrow { display: inline-flex; align-items: center; gap: var(--sp-2); }
.btn-arrow svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn-arrow:hover svg { transform: translateX(3px); }

/* 8. Cards
   =================================================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* 9. Badges
   =================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid;
}
.badge-orange { color: var(--c-green-dark); background: var(--c-green-subtle); border-color: rgba(22, 163, 74, 0.25); }
.badge-blue   { color: var(--c-green);    background: var(--c-green-subtle);      border-color: rgba(22, 163, 74, 0.25); }
.badge-green  { color: var(--c-green);    background: var(--c-green-subtle);      border-color: rgba(22, 163, 74, 0.3);  }
.badge-violet { color: var(--c-green-dark); background: var(--c-green-subtle); border-color: rgba(22, 163, 74, 0.25); }
.badge-gold   { color: var(--c-gold);     background: rgba(217, 119, 6, 0.08);   border-color: rgba(217, 119, 6, 0.25); }

/* 10. Navigation
   =================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .nav.scrolled {
  background: rgba(6, 15, 28, 0.92);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-light) 100%);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
}
.nav-logo-text span { color: var(--c-green); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--bg-glass);
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 620px;
  background: var(--bg-root);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  padding-top: calc(var(--sp-3) + var(--sp-5));
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  transition-delay: 100ms;
}
.mega-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: var(--sp-3);
  pointer-events: all;
}
.nav-item:hover .mega-menu,
.mega-menu.mega-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0ms;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  transition: var(--t-fast);
}
.mega-item:hover { background: var(--c-green-subtle); }
.mega-item-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--bg-surface-2);
}
.mega-item-icon svg { width: 20px; height: 20px; color: var(--c-green); display: block; }
.mega-item-text h4 { font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.mega-item-text p  { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.4; }

/* Dropdown Menu (submenus) */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg-root);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  z-index: 100;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: var(--sp-2);
  pointer-events: all;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--t-fast);
}
.nav-dropdown-item:hover {
  background: var(--c-green-subtle);
  color: var(--text-primary);
}
/* Mobile submenu */
.nav-mobile-group { display: flex; flex-direction: column; }
.nav-mobile-toggle { display: flex; align-items: center; cursor: pointer; }
.nav-mobile-toggle.open svg { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--t-fast);
}
.lang-btn:hover { border-color: var(--border-hover); color: var(--text-primary); }
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-root);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: var(--t-fast);
  transition-delay: 100ms;
  padding-top: var(--sp-2);
}
.lang-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: var(--sp-2);
  pointer-events: all;
}
.lang-switcher:hover .lang-dropdown,
.lang-dropdown.lang-open { opacity: 1; pointer-events: all; transform: translateY(0); transition-delay: 0ms; }
.lang-option {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: var(--t-fast);
  width: 100%;
  text-align: left;
}
.lang-option:hover, .lang-option.active { background: var(--c-green-subtle); color: var(--c-green-dark); }
[data-theme="dark"] .lang-option:hover,
[data-theme="dark"] .lang-option.active { background: var(--bg-glass-hover); color: var(--text-primary); }
.lang-flag { font-size: 18px; line-height: 1; }

/* Theme Toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: var(--t-fast);
}
.theme-toggle:hover { border-color: var(--border-hover); color: var(--text-primary); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* Hamburger mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--t-base);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: var(--sp-8);
  flex-direction: column;
  gap: var(--sp-4);
  overflow-y: auto;
}
[data-theme="dark"] .nav-mobile { background: rgba(6, 15, 28, 0.98); }
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-secondary);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  transition: var(--t-fast);
}
.nav-mobile-link:hover { color: var(--c-green); padding-left: var(--sp-3); }

/* 11. Hero Section
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + var(--sp-20)) 0 var(--sp-24);
  background: var(--bg-root);
}

/* Neural canvas desativado — substituído por textura limpa */
#neural-canvas { display: none; }

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(22, 163, 74, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 100%);
}
[data-theme="dark"] .hero-bg-grid {
  background-image: radial-gradient(circle, rgba(34, 197, 94, 0.08) 1px, transparent 1px);
}

.hero-bg-glow { position: absolute; z-index: 0; pointer-events: none; }
.hero-glow-1 {
  width: 800px; height: 800px;
  top: -150px; right: -100px; left: auto;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.05) 0%, transparent 65%);
}
.hero-glow-2 { display: none; }
.hero-glow-3 { display: none; }
[data-theme="dark"] .hero-glow-1 {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: var(--sp-6); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.3); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

.hero-title {
  font-size: clamp(var(--text-4xl), 4.5vw, var(--text-7xl));
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.hero-title .line-1 { display: block; color: var(--text-primary); }
.hero-title .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.hero-actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--c-green); flex-shrink: 0; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cards-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--t-slow);
}
[data-theme="dark"] .hero-card { box-shadow: var(--shadow-xl); }
.hero-card-main { position: relative; z-index: 3; }
.hero-card-float-1 {
  position: absolute;
  width: 220px;
  top: -28px; right: -36px;
  z-index: 4;
  transform: rotate(3deg);
  animation: float-1 5s ease-in-out infinite;
}
.hero-card-float-2 {
  position: absolute;
  width: 200px;
  bottom: -28px; left: -36px;
  z-index: 4;
  transform: rotate(-2.5deg);
  animation: float-2 6s ease-in-out infinite;
}
@keyframes float-1 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-10px); }
}
@keyframes float-2 {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(8px); }
}

.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: var(--sp-4);
  background: var(--c-green-subtle) !important;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}
.hero-card-sub { font-size: var(--text-xs); color: var(--text-muted); }
.hero-card-stat {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
  margin-top: var(--sp-4);
}
.hero-card-stat .num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--c-green);
}
.hero-card-stat .label { font-size: var(--text-xs); color: var(--text-muted); }
.hero-card-mini-title { font-size: var(--text-xs); font-weight: 600; color: var(--text-secondary); margin-bottom: var(--sp-2); }
.hero-card-pills { display: flex; flex-wrap: wrap; gap: var(--sp-1); }
.hero-card-pill {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: var(--r-full);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* 12. Section Layout
   =================================================================== */
.section {
  padding: var(--sp-24) 0;
  position: relative;
}
.section-sm { padding: var(--sp-16) 0; }
.section-lg { padding: var(--sp-32) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.section-header h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  max-width: 700px;
  font-weight: 700;
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 400;
}

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

.section-divider {
  position: absolute;
  left: 0; right: 0;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.section-divider-top { top: -1px; }
.section-divider-bottom { bottom: -1px; }
.section-divider svg { width: 100%; height: 80px; }

/* 13. Stats Section — Faixa horizontal (Signature Element)
   =================================================================== */
.stats-section {
  padding: 0;
  background: var(--bg-root);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .stats-section { background: var(--bg-2); }

.stats-grid {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
  background: transparent;
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--t-fast);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--c-green-subtle); }
[data-theme="dark"] .stat-card:hover { background: var(--bg-glass); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-green);
  margin-bottom: var(--sp-2);
}
.stat-number .accent { color: var(--c-green); }

.stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* 14. About Section
   =================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.about-content { display: flex; flex-direction: column; gap: var(--sp-8); }
.about-content h2 { font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl)); }
.about-content p { font-size: var(--text-lg); color: var(--text-secondary); line-height: 1.8; }
.mvv-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-top: var(--sp-4); }
.mvv-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t-base);
}
.mvv-item:hover {
  border-color: rgba(22, 163, 74, 0.3);
  background: var(--c-green-subtle);
}
[data-theme="dark"] .mvv-item:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(34, 197, 94, 0.2);
}
.mvv-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--c-green-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
[data-theme="dark"] .mvv-icon { background: var(--bg-surface-2); }
.mvv-text h4 { font-size: var(--text-sm); font-weight: 700; color: var(--text-primary); margin-bottom: var(--sp-1); }
.mvv-text p  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-main {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
}
.about-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: var(--sp-4);
  position: relative;
  padding-bottom: var(--sp-6);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-dot.active {
  background: var(--c-green);
  border-color: var(--c-green-dark);
  box-shadow: 0 0 12px rgba(22, 163, 74, 0.35);
}
[data-theme="dark"] .timeline-dot.active {
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.4);
}
.timeline-content h4 { font-size: var(--text-sm); font-weight: 700; color: var(--text-primary); }
.timeline-content .year { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--c-green); }
.timeline-content p { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }

/* 15. Solutions Section
   =================================================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.solution-card {
  padding: var(--sp-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--t-slow);
  border-radius: inherit;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.solution-card:hover::before { opacity: 1; }

.sol-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: var(--sp-5);
  transition: var(--t-base);
  flex-shrink: 0;
}
.solution-card:hover .sol-icon { transform: scale(1.06); }

.sol-title { font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); margin-bottom: var(--sp-2); }
.sol-desc  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; margin-bottom: var(--sp-5); }
.sol-count { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-xs); color: var(--text-muted); font-family: var(--font-mono); }

/* Solution color variants */
.sol-gestao  { --sol-color: #16A34A; }
.sol-fintech { --sol-color: #16A34A; }
.sol-delivery{ --sol-color: #22C55E; }
.sol-mobility{ --sol-color: #15803D; }
.sol-market  { --sol-color: #10B981; }
.sol-edtech  { --sol-color: #4ADE80; }

.sol-icon { background: color-mix(in srgb, var(--sol-color) 10%, transparent); }
.sol-icon svg { width: 26px; height: 26px; color: var(--sol-color); transition: transform var(--t-base); }
.solution-card:hover .sol-icon svg { transform: scale(1.1); }
.solution-card::before { background: linear-gradient(135deg, color-mix(in srgb, var(--sol-color) 5%, transparent) 0%, transparent 70%); }
.solution-card:hover { border-color: color-mix(in srgb, var(--sol-color) 25%, transparent); }

/* 16. Products Section
   =================================================================== */
.products-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
}
.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.filter-btn {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--t-fast);
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--text-primary); }
.filter-btn.active {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.products-search-wrap { position: relative; }
.products-search {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4) var(--sp-2) var(--sp-10);
  color: var(--text-primary);
  font-size: var(--text-sm);
  width: 240px;
  transition: var(--t-fast);
}
.products-search:focus {
  border-color: var(--c-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.products-search::placeholder { color: var(--text-muted); }
.search-icon { position: absolute; left: var(--sp-3); top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; display: flex; align-items: center; }
.search-icon svg { width: 16px; height: 16px; }

.view-toggle { display: flex; gap: var(--sp-1); }
.view-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
}
.view-btn.active, .view-btn:hover {
  background: var(--c-green-subtle);
  color: var(--c-green-dark);
  border-color: rgba(22, 163, 74, 0.3);
}
[data-theme="dark"] .view-btn.active,
[data-theme="dark"] .view-btn:hover { background: var(--bg-glass); color: var(--text-primary); border-color: var(--border-hover); }
.view-btn svg { width: 16px; height: 16px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  transition: var(--t-base);
}
.products-grid.view-list { grid-template-columns: 1fr; }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

/* Green accent bar on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green-light));
  transform: scaleX(0);
  transition: transform var(--t-slow);
  z-index: 2;
}
.product-card:hover::before { transform: scaleX(1); }

.product-card-thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
[data-theme="dark"] .product-card-thumb { background: var(--bg-surface); }

.product-card-thumb-bg { display: none; }

.product-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: transform var(--t-base);
}
.product-card-icon svg { transition: transform var(--t-base); }
.product-card:hover .product-card-icon svg { transform: scale(1.08); }

.product-card-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 2;
}

.product-card-body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.product-card-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}
.product-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.product-card-tech { display: flex; flex-wrap: wrap; gap: var(--sp-1); }
.tech-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: var(--r-full);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.product-card-actions {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--border);
}
.product-card-actions .btn { flex: 1; justify-content: center; }

/* Highlights pills — green accent */
.product-card-body > div > span[style] {
  background: var(--c-green-subtle) !important;
  border-color: rgba(22, 163, 74, 0.2) !important;
  color: var(--c-green-dark) !important;
}

/* List View */
.products-grid.view-list .product-card { flex-direction: row; align-items: stretch; }
.products-grid.view-list .product-card-thumb { width: 120px; height: auto; flex-shrink: 0; }
.products-grid.view-list .product-card-body { padding: var(--sp-6); }
.products-grid.view-list .product-card-actions {
  flex-direction: column;
  border-top: none;
  border-left: 1px solid var(--border);
  padding: var(--sp-6);
  width: 180px;
  flex-shrink: 0;
  justify-content: center;
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--sp-20);
  color: var(--text-muted);
  font-size: var(--text-lg);
}

/* 17. Features Section
   =================================================================== */
.features-section { background: var(--bg-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t-base);
}
.feature-item:hover {
  border-color: rgba(22, 163, 74, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
[data-theme="dark"] .feature-item:hover { border-color: rgba(34, 197, 94, 0.2); }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--bg-surface-2);
}
.feature-title { font-size: var(--text-sm); font-weight: 700; color: var(--text-primary); }
.feature-desc  { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.6; }

/* 18. Integrations Section
   =================================================================== */
.integrations-categories { display: flex; flex-direction: column; gap: var(--sp-10); }
.integrations-cat-title {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono);
}
.integrations-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.integration-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--t-fast);
  cursor: default;
}
.integration-pill:hover {
  border-color: rgba(22, 163, 74, 0.3);
  color: var(--text-primary);
  transform: translateY(-1px);
}
[data-theme="dark"] .integration-pill:hover { border-color: rgba(34, 197, 94, 0.2); }
.integration-pill .emoji { font-size: 18px; }

.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-root), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-root), transparent); }
.marquee-track {
  display: flex;
  gap: var(--sp-4);
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 19. Testimonials
   =================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-4); right: var(--sp-6);
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(22, 163, 74, 0.25);
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-star { color: var(--c-gold); font-size: 16px; }
.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-green-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
[data-theme="dark"] .testimonial-avatar { background: var(--bg-surface-2); }
.testimonial-name { font-size: var(--text-sm); font-weight: 700; color: var(--text-primary); }
.testimonial-role { font-size: var(--text-xs); color: var(--text-muted); }

/* 20. FAQ Section
   =================================================================== */
.faq-section { background: var(--bg-2); }
.faq-search-wrap {
  position: relative;
  max-width: 500px;
  margin: 0 auto var(--sp-10);
}
.faq-search {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--sp-3) var(--sp-5) var(--sp-3) var(--sp-12);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: var(--t-fast);
}
.faq-search:focus {
  border-color: var(--c-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.faq-search::placeholder { color: var(--text-muted); }
.faq-search-icon { position: absolute; left: var(--sp-5); top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.faq-search-icon svg { width: 18px; height: 18px; }

.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-fast);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: rgba(22, 163, 74, 0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t-base);
}
.faq-question-icon svg { width: 14px; height: 14px; color: var(--text-muted); transition: transform var(--t-base); }
.faq-item.open .faq-question-icon { background: var(--c-green); border-color: var(--c-green); }
.faq-item.open .faq-question-icon svg { color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* 21. Blog Section
   =================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}
.blog-card-thumb {
  height: 200px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb-gradient { position: absolute; inset: 0; opacity: 0.5; }
.blog-card-body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; gap: var(--sp-3); }
.blog-cat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--c-green);
  font-weight: 500;
}
.blog-title { font-size: var(--text-lg); font-weight: 700; color: var(--text-primary); line-height: 1.4; flex: 1; }
.blog-excerpt { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }
.blog-meta { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--text-xs); color: var(--text-muted); }

/* 22. CTA Section — Ponto de Ousadia: Fundo Verde Floresta
   =================================================================== */
.cta-section {
  position: relative;
  background: linear-gradient(140deg, var(--c-green) 0%, var(--c-green-dark) 100%);
  overflow: hidden;
  /* Variáveis locais para sobrescrever elementos com var() inline */
  --text-primary:    #ffffff;
  --text-secondary:  rgba(255, 255, 255, 0.80);
  --text-muted:      rgba(255, 255, 255, 0.60);
  --border:          rgba(255, 255, 255, 0.18);
  --border-hover:    rgba(255, 255, 255, 0.30);
}
[data-theme="dark"] .cta-section {
  background: linear-gradient(140deg, #14532D 0%, #0F3D20 100%);
}

/* Textura pontilhada sutil */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Fundo extra removido — limpo */
.cta-bg { display: none; }

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}
.cta-inner h2 {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-6xl));
  max-width: 700px;
  color: #fff;
}
.cta-inner p {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.80);
  max-width: 560px;
  line-height: 1.7;
}

.cta-section .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.90);
}
.cta-section .eyebrow::before {
  background: rgba(255, 255, 255, 0.80);
  box-shadow: none;
}

.cta-actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; justify-content: center; }

/* Botão CTA dentro da seção verde: branco */
.cta-section .btn-cta {
  background: #fff;
  color: var(--c-green-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-section .btn-cta:hover {
  background: #f0fdf4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.cta-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.70);
}
.cta-trust-item svg { color: rgba(255, 255, 255, 0.90); width: 16px; height: 16px; }

/* 23. Footer — Grafite Profundo
   =================================================================== */
.footer {
  background: #1E293B;
  border-top: none;
  padding: var(--sp-20) 0 var(--sp-8);
  /* Variáveis locais para tema escuro no footer */
  --text-primary:    #F1F5F9;
  --text-secondary:  #94A3B8;
  --text-muted:      #64748B;
  --border:          rgba(255, 255, 255, 0.08);
  --border-hover:    rgba(255, 255, 255, 0.14);
  --bg-surface:      rgba(255, 255, 255, 0.05);
  --bg-glass-hover:  rgba(255, 255, 255, 0.08);
  --text-link:       #4ADE80;
}

.footer .nav-logo-text { color: #F1F5F9; }
.footer .nav-logo-text span { color: #4ADE80; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--sp-5); }
.footer-tagline { font-size: var(--text-sm); color: #64748B; line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: #64748B;
  transition: var(--t-fast);
}
.social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #F1F5F9;
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link {
  font-size: var(--text-sm);
  color: #64748B;
  transition: var(--t-fast);
  display: flex; align-items: center; gap: var(--sp-2);
}
.footer-link svg { width: 12px; height: 12px; flex-shrink: 0; }
.footer-link:hover { color: #94A3B8; padding-left: var(--sp-1); }

.footer-newsletter-form { display: flex; gap: var(--sp-2); margin-top: var(--sp-2); }
.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  color: #F1F5F9;
  font-size: var(--text-sm);
  transition: var(--t-fast);
}
.newsletter-input:focus {
  border-color: rgba(74, 222, 128, 0.4);
  outline: none;
  background: rgba(255, 255, 255, 0.10);
}
.newsletter-input::placeholder { color: #475569; }

.footer .btn-primary {
  background: #22C55E;
  box-shadow: none;
}
.footer .btn-primary:hover { background: #16A34A; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy { font-size: var(--text-xs); color: #475569; }
.footer-legal { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.footer-legal a { font-size: var(--text-xs); color: #475569; transition: var(--t-fast); }
.footer-legal a:hover { color: #64748B; }

/* LGPD Banner */
.lgpd-banner {
  position: fixed;
  bottom: var(--sp-4);
  left: var(--sp-4);
  right: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  z-index: 9999;
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--t-slow);
}
.lgpd-banner.show { transform: translateY(0); opacity: 1; }
.lgpd-text { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.lgpd-text a { color: var(--text-link); }
.lgpd-actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }

/* 24. Scroll Animations
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .marquee-track { animation: none; }
}

/* 25. Responsive
   =================================================================== */
@media (max-width: 1200px) {
  .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-card:nth-child(3n) { border-bottom: 1px solid var(--border); }
  .stat-card:nth-last-child(-n+3):nth-child(3n+1),
  .stat-card:nth-last-child(-n+2):nth-child(3n+2),
  .stat-card:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mega-menu { min-width: 480px; }
  .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-menu, .nav-actions .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 100svh; padding: calc(var(--nav-h) + var(--sp-12)) 0 var(--sp-20); }
  .hero-title { font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl)); }
  .section { padding: var(--sp-16) 0; }
  .section-header h2 { font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl)); }
  .stats-section { padding: 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-card:nth-child(2n) { border-right: none; }
  .stat-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-card:nth-last-child(-n+2):nth-child(odd),
  .stat-card:last-child { border-bottom: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .products-controls { flex-direction: column; align-items: flex-start; }
  .products-search { width: 100%; }
  .lgpd-banner { flex-direction: column; align-items: flex-start; }
  .cta-inner h2 { font-size: clamp(var(--text-2xl), 7vw, var(--text-4xl)); }
  .cta-inner p { font-size: var(--text-base); }
}

@media (max-width: 480px) {
  :root { font-size: 15px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .solutions-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1800px) {
  .container { max-width: 1400px; }
}

@media (max-width: 320px) {
  :root { font-size: 14px; }
  .container { padding: 0 var(--sp-4); }
}

/* Focus states */
.filter-btn:focus-visible, .view-btn:focus-visible { outline: 2px solid var(--c-green); outline-offset: 2px; }

/* Mega item icon — garantir flex */
.mega-item-icon { flex-shrink: 0; }

/* Botão arrow */
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════
   26. Clean Enterprise Redesign — Landing Page
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared: Section Label System ──────────────────────────── */
.lp-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-green-dark);
  margin-bottom: var(--sp-4);
}
[data-theme="dark"] .lp-label { color: var(--c-green-light); }

.lp-section-title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text-primary);
}

.lp-section-header {
  margin-bottom: var(--sp-14);
}

/* ── Hero Redesign ─────────────────────────────────────────── */
.hero-inner {
  grid-template-columns: 55% 45%;
  gap: var(--sp-20);
  align-items: center;
}

/* Eyebrow — plain mono, no pill */
.hp-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Headline */
.hp-headline {
  font-size: clamp(2.75rem, 5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.04;
  color: var(--text-primary);
}
.hp-headline-accent {
  color: var(--c-green);
  display: block;
}
[data-theme="dark"] .hp-headline-accent { color: var(--c-green-light); }

/* Subtitle */
.hp-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 440px;
  font-weight: 400;
}

/* Actions */
.hp-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Proof column */
.hero-proof {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.hp-proof-card {
  border-left: 3px solid var(--c-green);
  padding-left: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.hp-proof-prefix {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-green-dark);
  letter-spacing: 0.04em;
  line-height: 1;
}
[data-theme="dark"] .hp-proof-prefix { color: var(--c-green-light); }
.hp-proof-value {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.5vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.88;
  color: var(--c-green);
}
[data-theme="dark"] .hp-proof-value { color: var(--c-green-light); }
.hp-proof-caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
  padding-top: var(--sp-1);
}
.hp-proof-divider {
  height: 1px;
  background: var(--border);
  margin: var(--sp-5) 0 var(--sp-2);
  width: 100%;
}
.hp-proof-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.hp-proof-item {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.hp-proof-item strong {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
}
.hp-proof-item strong span {
  font-size: 1.125rem;
  color: var(--c-green);
  font-weight: 700;
}
.hp-proof-item > span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Scroll hint */
.hp-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--t-fast);
  animation: bounce-down 2.5s ease-in-out infinite;
}
.hp-scroll-hint:hover { opacity: 1; }

/* ── Numbers Strip ──────────────────────────────────────────── */
.lp-numbers {
  padding: 0;
  background: var(--bg-root);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .lp-numbers { background: var(--bg-2); }

.lp-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lp-number-item {
  padding: var(--sp-12) var(--sp-8);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  transition: background var(--t-fast);
  position: relative;
}
.lp-number-item:last-child { border-right: none; }
.lp-number-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 25%; right: 25%;
  height: 2px;
  background: var(--c-green);
  opacity: 0;
  transition: opacity var(--t-base);
}
.lp-number-item:hover { background: var(--c-green-subtle); }
.lp-number-item:hover::after { opacity: 1; }
[data-theme="dark"] .lp-number-item:hover { background: var(--bg-glass); }

.lp-number-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--c-green);
  transition: color var(--t-fast), transform var(--t-base);
}
.lp-number-item:hover .lp-number-value {
  color: var(--c-green-dark);
  transform: scale(1.04);
}
[data-theme="dark"] .lp-number-value { color: var(--c-green-light); }

.lp-number-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── Products Mosaic ────────────────────────────────────────── */
.lp-products-section { background: var(--bg-root); }
[data-theme="dark"] .lp-products-section { background: var(--bg-root); }

.lp-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.lp-mosaic-item {
  background: var(--bg-card);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  transition: background var(--t-fast);
  text-decoration: none;
  cursor: pointer;
}
.lp-mosaic-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-green);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.lp-mosaic-item:hover { background: var(--c-green-subtle); }
.lp-mosaic-item:hover::before { opacity: 1; }
[data-theme="dark"] .lp-mosaic-item:hover { background: var(--bg-glass-hover); }

.lp-mosaic-icon {
  width: 32px; height: 32px;
  color: var(--c-green-dark);
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.lp-mosaic-icon svg { width: 100%; height: 100%; }
[data-theme="dark"] .lp-mosaic-icon { color: var(--c-green-light); }
.lp-mosaic-item:hover .lp-mosaic-icon { color: var(--c-green); }

.lp-mosaic-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.lp-mosaic-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.lp-mosaic-arrow {
  width: 16px; height: 16px;
  color: var(--c-green);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  margin-top: auto;
}
.lp-mosaic-arrow svg { width: 100%; height: 100%; }
.lp-mosaic-item:hover .lp-mosaic-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* 12th cell: CTA */
.lp-mosaic-cta {
  background: var(--c-green-subtle) !important;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.lp-mosaic-cta:hover { background: rgba(22,163,74,0.12) !important; }
.lp-mosaic-cta::before { display: none; }
.lp-mosaic-cta-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-green-dark);
}
.lp-mosaic-cta-inner svg {
  width: 18px; height: 18px;
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.lp-mosaic-cta:hover .lp-mosaic-cta-inner svg { transform: translateX(4px); }
[data-theme="dark"] .lp-mosaic-cta { background: rgba(22,163,74,0.06) !important; }
[data-theme="dark"] .lp-mosaic-cta-inner { color: var(--c-green-light); }

/* ── Testimonials: Stacked Left Rule ───────────────────────── */
.lp-proof-section { background: var(--bg-2); }
[data-theme="dark"] .lp-proof-section { background: var(--bg-2); }

.lp-proof-header { margin-bottom: var(--sp-12); }

.lp-testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  max-width: 820px;
  margin: 0 auto;
}

.lp-testimonial {
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--c-green);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  background: var(--bg-card);
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transition: box-shadow var(--t-fast), border-color var(--t-fast);
}
.lp-testimonial:hover {
  box-shadow: var(--shadow-md);
  border-top-color: rgba(22,163,74,0.2);
  border-right-color: rgba(22,163,74,0.2);
  border-bottom-color: rgba(22,163,74,0.2);
}
[data-theme="dark"] .lp-testimonial:hover { box-shadow: var(--shadow-xl); }

.lp-testimonial-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.72;
  color: var(--text-primary);
  font-style: normal;
}

.lp-testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.lp-testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-green-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.lp-testimonial-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.lp-testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  .hero-proof {
    justify-content: flex-start;
  }
  .hp-proof-card {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-8);
    align-items: flex-end;
  }
  .hp-proof-divider { display: none; }
  .hp-proof-items {
    flex-direction: row;
    gap: var(--sp-8);
  }
  .lp-mosaic { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hp-proof-card {
    flex-direction: column;
    gap: var(--sp-4);
  }
  .hp-proof-items {
    flex-direction: row;
    gap: var(--sp-6);
    flex-wrap: wrap;
  }
  .lp-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-number-item { border-bottom: 1px solid var(--border); padding: var(--sp-8) var(--sp-6); }
  .lp-number-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .lp-number-item:nth-child(even) { border-right: none; }
  .lp-number-item:nth-last-child(-n+2) { border-bottom: none; }
  .lp-mosaic { grid-template-columns: repeat(2, 1fr); }
  .lp-testimonial { padding: var(--sp-6) var(--sp-7); }
  .lp-testimonial-text { font-size: 1rem; }
}

@media (max-width: 480px) {
  .lp-mosaic { grid-template-columns: 1fr 1fr; }
  .hp-proof-items { gap: var(--sp-5); }
}

/* ═══════════════════════════════════════════════════════════════
   27. UX Polish — Centred headers, FAQ, CTA, logo-img, mobile
   ═══════════════════════════════════════════════════════════════ */

/* ── Centred section header variant ───────────────────────── */
.lp-section-header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lp-section-header--center .lp-label { display: inline-block; }

/* ── Logo image support ────────────────────────────────────── */
.nav-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── CTA section: lp-label override (dark bg) ─────────────── */
.cta-section .lp-label {
  color: rgba(255,255,255,0.7);
  text-align: center;
  display: block;
}
.cta-section .lp-section-title { text-align: center; }

/* ── FAQ section UX improvements ──────────────────────────── */
.faq-section .lp-section-header { text-align: center; }
.faq-section .faq-list { max-width: 760px; margin: var(--sp-10) auto 0; }
.faq-section .faq-item {
  border-color: var(--border);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-2);
}
.faq-section .faq-question {
  font-size: 1rem;
  font-weight: 600;
}

/* ── Hero: better mid-size (900–1024px) ───────────────────── */
@media (max-width: 1100px) and (min-width: 1025px) {
  .hero-inner { gap: var(--sp-12); }
  .hp-proof-value { font-size: clamp(3.5rem, 6vw, 5rem); }
}

/* ── Hero mobile: stack gracefully ────────────────────────── */
@media (max-width: 600px) {
  .hp-headline { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .hp-sub { font-size: 0.9375rem; }
  .hp-actions { flex-direction: column; align-items: stretch; }
  .hp-actions .btn { text-align: center; justify-content: center; }
  .hp-proof-value { font-size: clamp(3rem, 14vw, 5rem); }
  .hp-proof-items { flex-direction: row; gap: var(--sp-4); flex-wrap: wrap; }
}

/* ── Numbers strip: stack 2-col on 600px, 1-col on 360px ─── */
@media (max-width: 600px) {
  .lp-numbers-grid { grid-template-columns: 1fr 1fr; }
  .lp-number-item { padding: var(--sp-7) var(--sp-4); }
  .lp-number-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .lp-number-item:nth-child(even) { border-right: none; }
}
@media (max-width: 360px) {
  .lp-numbers-grid { grid-template-columns: 1fr; }
  .lp-number-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .lp-number-item:last-child { border-bottom: none; }
}

/* ── Products mosaic: 2-col on phones ────────────────────── */
@media (max-width: 520px) {
  .lp-mosaic { grid-template-columns: 1fr 1fr; }
  .lp-mosaic-item { padding: var(--sp-4) var(--sp-3); }
}

/* ── Testimonials: full-width on small screens ────────────── */
@media (max-width: 600px) {
  .lp-testimonial { padding: var(--sp-5) var(--sp-5); border-radius: 0 var(--r-lg) var(--r-lg) 0; }
  .lp-testimonial-text { font-size: 0.9375rem; }
  .lp-testimonial-footer { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

/* ── FAQ search: full width on mobile ────────────────────── */
@media (max-width: 600px) {
  .faq-search-wrap { max-width: 100%; }
}

/* ── CTA section contact row: column on mobile ────────────── */
@media (max-width: 640px) {
  .cta-section [style*="display:flex;gap:var(--sp-8)"] {
    flex-direction: column;
    gap: var(--sp-4) !important;
  }
}

/* ── Section padding consistency ─────────────────────────── */
.lp-products-section { padding-top: var(--sp-20); padding-bottom: var(--sp-20); }
.lp-proof-section    { padding-top: var(--sp-20); padding-bottom: var(--sp-20); }
.faq-section { padding-top: var(--sp-20); padding-bottom: var(--sp-20); }

/* ═══════════════════════════════════════════════════════════════
   28. Premium Design System — Micro-animations & Enhancements
   ═══════════════════════════════════════════════════════════════ */

/* ── Button: Shimmer Sweep (primary & CTA only) ─────────────── */
.btn-primary::before,
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 55%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  /* no transition by default — instant reset on mouse-out */
}
.btn-primary:hover::before,
.btn-cta:hover::before {
  left: 155%;
  transition: left 0.65s ease;
}
/* White CTA inside .cta-section — shimmer in green tint */
.cta-section .btn-cta::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(22, 163, 74, 0.08) 50%,
    transparent 100%
  );
}

/* ── Button: Focus Ring ─────────────────────────────────────── */
.btn:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.18);
}

/* ── Button: Disabled State ─────────────────────────────────── */
.btn:disabled,
.btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}
.btn:disabled::before,
.btn[disabled]::before { display: none; }

/* ── Button: Loading State ──────────────────────────────────── */
@keyframes btn-spin { to { transform: rotate(360deg); } }

.btn.loading {
  pointer-events: none;
  cursor: wait;
  color: transparent !important;
}
.btn.loading svg { opacity: 0; }
.btn.loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
}
/* Loading for outline/ghost/secondary — dark spinner */
.btn-outline.loading::after,
.btn-ghost.loading::after,
.btn-secondary.loading::after {
  border-color: rgba(15, 23, 42, 0.25);
  border-top-color: rgba(15, 23, 42, 0.75);
}
[data-theme="dark"] .btn-outline.loading::after,
[data-theme="dark"] .btn-ghost.loading::after,
[data-theme="dark"] .btn-secondary.loading::after {
  border-color: rgba(255, 255, 255, 0.25);
  border-top-color: rgba(255, 255, 255, 0.75);
}

/* ── Button: Secondary Variant ──────────────────────────────── */
.btn-secondary {
  background: var(--bg-surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--bg-3);
  border-color: var(--c-green);
  color: var(--c-green-dark);
  box-shadow: 0 2px 14px rgba(22, 163, 74, 0.14);
  transform: translateY(-1px);
}
[data-theme="dark"] .btn-secondary:hover {
  color: var(--c-green-light);
  background: var(--bg-glass-hover);
}

/* ── Hero Title: Animated Gradient ─────────────────────────── */
@keyframes hero-gradient-shift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
.hero-title .line-2 {
  background: linear-gradient(
    135deg,
    var(--c-green-dark) 0%,
    var(--c-green)       33%,
    var(--c-green-light) 66%,
    #86EFAC              100%
  );
  background-size: 250% 250%;
  animation: hero-gradient-shift 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero Badge: Subtle Ambient Glow ────────────────────────── */
@keyframes badge-ambient {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
  50%       { box-shadow: 0 0 22px 4px rgba(22, 163, 74, 0.06); }
}
.hero-badge { animation: badge-ambient 4s ease-in-out infinite; }

/* ── Stat Cards: Hover Number Lift ─────────────────────────── */
.stat-number { transition: transform 0.3s ease, color 0.3s ease; display: inline-flex; align-items: baseline; gap: 0.1em; }
.stat-card:hover .stat-number { transform: scale(1.05); color: var(--c-green-dark); }
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-green), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.stat-card:hover::after { opacity: 1; }

/* ── Product Cards: Green Glow on Hover ─────────────────────── */
.product-card:hover {
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ── Solution Cards: Enhanced Hover ────────────────────────── */
.solution-card:hover {
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.10), var(--shadow-lg);
}

/* ── Feature Items: Icon Green on Hover ─────────────────────── */
.feature-item:hover .feature-icon {
  background: var(--c-green-subtle);
}

/* ── Testimonial Stars: Green ───────────────────────────────── */
.testimonial-star {
  color: var(--c-green);
  font-size: 15px;
}

/* ── Badge Gold: Remap to Green ────────────────────────────── */
.badge-gold {
  color: var(--c-green-dark);
  background: var(--c-green-subtle);
  border-color: rgba(22, 163, 74, 0.3);
}

/* ── Text Gradient Orange: Remap to Green ──────────────────── */
.text-gradient-orange {
  background: linear-gradient(135deg, var(--c-green-dark) 0%, var(--c-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Blog Card: Green Category Label ────────────────────────── */
.blog-cat { color: var(--c-green-dark); }

/* ── Enhanced Section Header Spacing ────────────────────────── */
.section-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Admin Sidebar Active Link ───────────────────────────────── */
.admin-nav-link.active {
  background: rgba(22, 163, 74, 0.08) !important;
  color: var(--c-green-dark) !important;
  font-weight: 600;
}

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .btn-primary::before,
  .btn-cta::before       { display: none; }
  .hero-title .line-2    { animation: none; background-size: 100%; }
  .hero-badge            { animation: none; }
  .stat-card:hover .stat-number { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   29. Design Excellence — Depth, Signature & Micro-Moments
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero: monumental headline ──────────────────────────────── */
.hp-headline {
  font-size: clamp(3rem, 5.5vw, 5.75rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

/* ── Hero: bg-grid visible in light mode ────────────────────── */
.hero-bg-grid {
  background-image: radial-gradient(circle, rgba(22,163,74,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
[data-theme="dark"] .hero-bg-grid {
  background-image: radial-gradient(circle, rgba(34,197,94,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Hero eyebrow: pulsing live-status dot ───────────────────── */
.hp-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hp-eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  60% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(22,163,74,0); }
}

/* ── Hero: trust signal ──────────────────────────────────────── */
.hp-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-2);
}
.hp-trust-avatars { display: flex; align-items: center; }
.hp-trust-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-green-subtle);
  border: 2px solid var(--bg-root);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--c-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  letter-spacing: 0;
  margin-left: -7px;
  flex-shrink: 0;
}
.hp-trust-av:first-child { margin-left: 0; }
[data-theme="dark"] .hp-trust-av {
  background: var(--bg-glass);
  color: var(--c-green-light);
  border-color: var(--bg-root);
}
.hp-trust-copy {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.35;
}
.hp-trust-copy strong { color: var(--text-primary); font-weight: 700; }
.hp-trust-stars { color: #F59E0B; font-size: 0.7rem; letter-spacing: 0.04em; margin-right: 0.15em; }

/* ── Proof value: subtle breathing float ─────────────────────── */
@keyframes proof-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hp-proof-value { animation: proof-breathe 5s ease-in-out infinite; }

/* ── Section headers: green left-rule signature ──────────────── */
.lp-section-header:not(.lp-section-header--center),
.lp-proof-header {
  padding-left: var(--sp-5);
  border-left: 3px solid var(--c-green);
}

/* ── Numbers: bigger, more commanding ───────────────────────── */
.lp-number-value {
  font-size: clamp(2.75rem, 4vw, 4.5rem);
  letter-spacing: -0.04em;
}
/* Top highlight on hover (::after is the bottom line) */
.lp-number-item::before {
  content: '';
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 2px;
  background: var(--c-green);
  opacity: 0;
  transition: opacity var(--t-base);
}
.lp-number-item:hover::before { opacity: 0.5; }

/* ── Products: top-edge accent + icon scale on hover ─────────── */
.lp-mosaic-item { position: relative; }
.lp-mosaic-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-green);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.lp-mosaic-item:hover::after { opacity: 1; }
.lp-mosaic-icon { transition: transform var(--t-base), color var(--t-fast); }
.lp-mosaic-item:hover .lp-mosaic-icon { transform: scale(1.14); }
.lp-mosaic-cta::after { display: none; }
.lp-mosaic-item:hover .lp-mosaic-name { color: var(--c-green-dark); transition: color var(--t-fast); }
[data-theme="dark"] .lp-mosaic-item:hover .lp-mosaic-name { color: var(--c-green-light); }

/* ── Testimonials: large decorative quote mark ──────────────── */
.lp-testimonial-quote {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.75rem;
  line-height: 0.65;
  color: var(--c-green);
  opacity: 0.14;
  margin-bottom: var(--sp-3);
  user-select: none;
}

/* ── Testimonials: gold star row ─────────────────────────────── */
.lp-testimonial-stars {
  color: #F59E0B;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
  display: block;
}

/* ── Testimonials: initials avatar ──────────────────────────── */
.lp-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-green);
  border: none;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
[data-theme="dark"] .lp-testimonial-avatar { background: var(--c-green-dark); }

/* ── FAQ: ordered counter numbers ────────────────────────────── */
.faq-list { counter-reset: faq-counter; }
.faq-item { counter-increment: faq-counter; }
.faq-question::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--c-green-dark);
  opacity: 0.45;
  margin-right: var(--sp-3);
  flex-shrink: 0;
  min-width: 1.5rem;
  letter-spacing: 0.04em;
}
[data-theme="dark"] .faq-question::before { color: var(--c-green-light); }
/* Green left edge on open item */
.faq-item.open { box-shadow: inset 3px 0 0 var(--c-green) !important; }

/* ── CTA: larger headline + depth radial ─────────────────────── */
.cta-section .lp-section-title {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  letter-spacing: -0.045em;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ── Global: stronger btn-primary hover ──────────────────────── */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(22,163,74,0.42);
}
.btn-ghost:hover { transform: translateY(-1px); }

/* ── Responsive tweaks for section 29 ───────────────────────── */
@media (max-width: 600px) {
  .hp-headline { font-size: clamp(2.5rem, 9vw, 3.25rem); letter-spacing: -0.04em; }
  .hp-trust { gap: var(--sp-2); }
  .lp-section-header:not(.lp-section-header--center),
  .lp-proof-header { padding-left: var(--sp-4); }
  .lp-testimonial-quote { font-size: 2.75rem; }
  .cta-section .lp-section-title { font-size: clamp(2rem, 8vw, 2.75rem); }
}
@media (max-width: 400px) {
  .hp-trust-copy { font-size: 0.75rem; }
  .hp-trust-av { width: 24px; height: 24px; font-size: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hp-eyebrow::before { animation: none; }
  .hp-proof-value { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   30. Full UX Polish — Tokens, Depth, Buttons & Responsiveness
   ═══════════════════════════════════════════════════════════════ */

/* ── CRITICAL: fix undefined spacing token ───────────────────── */
:root { --sp-14: 3.5rem; }

/* ── Ghost button: clearly secondary, not invisible ─────────── */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
  font-weight: 600;
}
.btn-ghost:hover {
  background: var(--c-green-subtle);
  border-color: var(--c-green);
  color: var(--c-green-dark);
  transform: translateY(-1px);
}
[data-theme="dark"] .btn-ghost {
  border-color: rgba(255,255,255,0.2);
  color: #E2E8F0;
}
[data-theme="dark"] .btn-ghost:hover {
  background: rgba(22,163,74,0.1);
  border-color: rgba(34,197,94,0.5);
  color: var(--c-green-light);
}

/* ── Outline button: stronger presence ───────────────────────── */
.btn-outline { border-width: 1.5px; font-weight: 600; }
.btn-outline:hover { transform: translateY(-1px); }

/* ── Hero subtitle: more readable and impactful ─────────────── */
.hp-sub {
  font-size: 1.125rem;
  line-height: 1.78;
  max-width: 520px;
}

/* ── Hero proof card: premium floating card ──────────────────── */
.hp-proof-card {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(22,163,74,0.1);
}
[data-theme="dark"] .hp-proof-card {
  background: var(--bg-2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(22,163,74,0.2);
}

/* ── Testimonials: hover lift + shadow ───────────────────────── */
.lp-testimonial {
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.lp-testimonial:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
[data-theme="dark"] .lp-testimonial { box-shadow: none; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .lp-testimonial:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

/* ── Products mosaic: rounded border treatment ───────────────── */
.lp-mosaic {
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px var(--border);
}

/* ── CTA trust items: pill badges ────────────────────────────── */
.cta-trust { gap: var(--sp-3); }
.cta-trust-item {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  gap: var(--sp-2);
  transition: background var(--t-fast);
}
.cta-trust-item:hover { background: rgba(255,255,255,0.16); }
.cta-trust-item svg { color: #86EFAC; width: 14px; height: 14px; flex-shrink: 0; }

/* ── CTA contact info row ────────────────────────────────────── */
.cta-contact {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: var(--sp-2);
}
.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
  text-decoration: none;
}
.cta-contact-link:hover { color: rgba(255,255,255,0.9); }
.cta-contact-link svg { flex-shrink: 0; }

/* ── Footer contact row ──────────────────────────────────────── */
.footer-contact-row {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #64748B;
  transition: color var(--t-fast);
  text-decoration: none;
}
.footer-contact-link:hover { color: #94A3B8; }
.footer-contact-link svg { flex-shrink: 0; }

/* ── Nav CTA: hover ring on the primary action ───────────────── */
.nav-actions .btn-primary:hover {
  box-shadow: 0 4px 20px rgba(22,163,74,0.4), 0 0 0 3px rgba(22,163,74,0.1);
}

/* ── Number labels: tighter, more readable ───────────────────── */
.lp-number-label {
  max-width: 160px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ── Section subtitles within centered headers ───────────────── */
.lp-section-header--center .hp-sub {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Mobile ≤560px: stack hero CTA buttons ───────────────────── */
@media (max-width: 560px) {
  .hp-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ── Mobile ≤480px: comprehensive layout fixes ───────────────── */
@media (max-width: 480px) {
  /* Hero proof card: center when stacked */
  .hero-proof { display: flex; justify-content: center; }
  .hp-proof-card { max-width: 380px; width: 100%; padding: var(--sp-8); }

  /* Tighter number items */
  .lp-number-item { padding: var(--sp-6) var(--sp-4); }

  /* Disable hover lift on touch devices */
  .lp-testimonial:hover { transform: none; }

  /* Section vertical rhythm */
  .section { padding: var(--sp-16) 0; }
  .faq-section, .lp-proof-section, .lp-products-section { padding: var(--sp-16) 0; }

  /* Footer: single column */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer { padding-top: var(--sp-16); }

  /* CTA contact info: column */
  .cta-contact { flex-direction: column; align-items: center; gap: var(--sp-3); }
  .cta-trust { justify-content: center; }
}

/* ── Tablet ≤768px: footer 2-col ─────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; }
  .hp-sub { font-size: 1.0625rem; }
}

/* ── Extra-small ≤360px ──────────────────────────────────────── */
@media (max-width: 360px) {
  .lp-numbers-grid { grid-template-columns: 1fr; }
  .lp-number-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .lp-number-item:last-child { border-bottom: none !important; }
  .container { padding-left: var(--sp-4); padding-right: var(--sp-4); }
}

/* ============================================================
   SECTION 31 — About (LP) · Blog Preview (LP) · Public Blog
   ============================================================ */

/* ── About Landing Section ─────────────────────────────────── */
.about-lp-section { background: var(--bg-secondary); }

.about-lp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: start;
}

.about-lp-paras {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: var(--text-base);
    margin: var(--sp-6) 0 var(--sp-8);
}

.about-lp-paras p + p { margin-top: var(--sp-4); }

.about-lp-mvv {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.about-mvv-card {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-mvv-card:hover {
    border-color: var(--c-green);
    transform: translateX(4px);
}

.about-mvv-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-mvv-title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.about-mvv-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.55;
}

/* Timeline visual card */
.about-lp-visual-col { position: sticky; top: calc(72px + var(--sp-6)); }

.about-lp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-7);
}

.about-lp-card-label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-6);
}

.about-tl-list { display: flex; flex-direction: column; }

.about-tl-item {
    display: flex;
    gap: var(--sp-4);
    padding-bottom: var(--sp-5);
    position: relative;
}

.about-tl-item::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.about-tl-item:last-child { padding-bottom: 0; }
.about-tl-item:last-child::before { display: none; }

.about-tl-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.about-tl-dot.is-active {
    border-color: var(--c-green);
    background: rgba(22, 163, 74, 0.1);
}

.about-tl-year {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--c-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.about-tl-title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.about-tl-desc {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.5;
}

.about-lp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border);
}

.about-lp-stat { text-align: center; }

.about-lp-stat-val {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.about-lp-stat-key {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── Blog Preview Section (Landing Page) ──────────────────── */
.lp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-12);
}

.lp-blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.lp-blog-thumb {
    display: block;
    position: relative;
    height: 180px;
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
}

.lp-blog-thumb-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
}

.lp-blog-card:hover .lp-blog-thumb-bg { transform: scale(1.05); }

.lp-blog-thumb-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    z-index: 1;
}

.lp-blog-body {
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lp-blog-cat {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--c-green);
    border-radius: var(--r-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-3);
}

.lp-blog-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--sp-2);
}

.lp-blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-blog-title a:hover { color: var(--c-green); }

.lp-blog-excerpt {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: var(--sp-4);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--sp-3);
}

.lp-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--c-green);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.lp-blog-read:hover { gap: 0.625rem; }

/* ── Public Blog Index Page ────────────────────────────────── */
.blog-public-hero {
    padding: calc(72px + var(--sp-16)) 0 var(--sp-14);
    background: linear-gradient(160deg, var(--bg-secondary) 0%, rgba(22,163,74,0.04) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.blog-public-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(22,163,74,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--sp-5);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.blog-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-breadcrumb a:hover { color: var(--c-green); }

.blog-breadcrumb svg { opacity: 0.5; }

.blog-public-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    margin: var(--sp-3) 0 var(--sp-5);
    max-width: 640px;
}

.blog-public-sub {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.65;
}

.blog-public-body-section {
    padding: var(--sp-16) 0 var(--sp-24);
}

.blog-public-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-12) var(--sp-8);
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-4);
}

.blog-public-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-public-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.blog-public-thumb {
    display: block;
    position: relative;
    height: 200px;
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
}

.blog-public-thumb-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
}

.blog-public-card:hover .blog-public-thumb-bg { transform: scale(1.05); }

.blog-public-thumb-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    z-index: 1;
}

.blog-public-body {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-public-cat {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--c-green);
    border-radius: var(--r-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-3);
}

.blog-public-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--sp-3);
}

.blog-public-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-public-title a:hover { color: var(--c-green); }

.blog-public-excerpt {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: var(--sp-4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-public-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--sp-4);
}

.blog-public-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--c-green);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.blog-public-read-link:hover { gap: 0.625rem; }

.blog-public-empty {
    text-align: center;
    padding: var(--sp-20) var(--sp-8);
}

.blog-public-empty-icon { font-size: 4rem; margin-bottom: var(--sp-4); }

.blog-public-empty h2 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--sp-2);
}

.blog-public-empty p { color: var(--text-muted); }

.blog-public-cta-strip {
    padding: var(--sp-12) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    text-align: center;
}

.blog-public-cta-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-6);
    flex-wrap: wrap;
}

.blog-public-cta-text {
    color: var(--text-muted);
    font-size: var(--text-base);
    margin: 0;
}

/* ── Public Blog Post Page ─────────────────────────────────── */
.blog-post-hero {
    padding: calc(72px + var(--sp-12)) 0 var(--sp-10);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.blog-post-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.blog-post-cat {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--c-green);
    border-radius: var(--r-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: var(--sp-4);
}

.blog-post-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: var(--sp-5);
}

.blog-post-excerpt-lead {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-7);
    max-width: 640px;
}

.blog-post-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.blog-post-meta-author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.blog-post-meta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.blog-post-meta-name {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
}

.blog-post-meta-date {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.blog-post-meta-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Thumbnail */
.blog-post-thumb-wrap {
    max-width: 960px;
    margin: var(--sp-8) auto var(--sp-4);
    height: 340px;
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}

.blog-post-thumb-bg { position: absolute; inset: 0; }

.blog-post-thumb-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    z-index: 1;
}

/* Content layout */
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--sp-12);
    max-width: 1060px;
    margin: var(--sp-10) auto 0;
    padding: 0 var(--sp-6) var(--sp-20);
    align-items: start;
}

.blog-post-main { min-width: 0; }

.blog-post-content {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin: 2.25em 0 0.75em;
}

.blog-post-content h2 { font-size: var(--text-2xl); }
.blog-post-content h3 { font-size: var(--text-xl); }
.blog-post-content h4 { font-size: var(--text-lg); }
.blog-post-content p  { margin-bottom: 1.5em; }

.blog-post-content a {
    color: var(--c-green);
    text-decoration: underline;
    text-decoration-color: rgba(22, 163, 74, 0.4);
    transition: text-decoration-color 0.2s ease;
}

.blog-post-content a:hover { text-decoration-color: var(--c-green); }

.blog-post-content ul,
.blog-post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5em;
}

.blog-post-content li { margin-bottom: 0.5em; }

.blog-post-content blockquote {
    border-left: 3px solid var(--c-green);
    padding: var(--sp-4) var(--sp-6);
    margin: 2em 0;
    background: var(--bg-secondary);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.1em;
}

.blog-post-content code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: var(--bg-tertiary, rgba(0,0,0,0.06));
    padding: 0.2em 0.45em;
    border-radius: var(--r-sm);
}

.blog-post-content pre {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: var(--sp-5);
    border-radius: var(--r-lg);
    overflow-x: auto;
    margin: 2em 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    font-size: 0.9rem;
}

.blog-post-no-content {
    padding: var(--sp-12);
    background: var(--bg-secondary);
    border: 1px dashed var(--border);
    border-radius: var(--r-xl);
    text-align: center;
    color: var(--text-muted);
}

.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post-back:hover { color: var(--c-green); }

/* Sidebar */
.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    position: sticky;
    top: calc(72px + var(--sp-6));
}

.blog-sidebar-cta {
    background: linear-gradient(135deg, var(--c-green), #15803d);
    color: white;
    padding: var(--sp-6);
    border-radius: var(--r-xl);
}

.blog-sidebar-cta h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-lg);
    margin-bottom: var(--sp-2);
}

.blog-sidebar-cta p {
    font-size: var(--text-sm);
    opacity: 0.88;
    margin-bottom: var(--sp-5);
    line-height: 1.6;
}

.blog-sidebar-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-5);
}

.blog-sidebar-box-title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--border);
}

.blog-related-list { display: flex; flex-direction: column; gap: 0; }

.blog-related-link {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.blog-related-link:last-child { border-bottom: none; }
.blog-related-link:hover { opacity: 0.7; }

.blog-related-thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-related-thumb-bg { position: absolute; inset: 0; }

.blog-related-thumb-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 1;
}

.blog-related-info h4 {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-related-info span {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ── Responsive — About + Blog ─────────────────────────────── */
@media (max-width: 1024px) {
    .blog-public-grid { grid-template-columns: repeat(2, 1fr); max-width: 740px; }
}

@media (max-width: 900px) {
    .about-lp-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .about-lp-visual-col { position: static; }
    .lp-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
        padding: 0 var(--sp-4) var(--sp-12);
        margin-top: var(--sp-6);
    }
    .blog-post-sidebar { position: static; }
    .blog-post-thumb-wrap { height: 220px; }
    .blog-public-cta-strip .container { flex-direction: column; }
    .lp-blog-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
    .blog-public-grid { grid-template-columns: 1fr; max-width: 480px; }
    .blog-public-hero { padding: calc(72px + var(--sp-10)) 0 var(--sp-10); }
}

@media (max-width: 480px) {
    .blog-post-headline { font-size: 1.75rem; }
    .blog-public-headline { font-size: 2rem; }
    .about-lp-grid { gap: var(--sp-8); }
    .blog-public-grid { max-width: 100%; }
}
