/*
Theme Name: Apexio Health
Theme URI: https://apexio.com.br
Author: Apexio HealthTech
Author URI: https://apexio.com.br
Description: Tema WordPress moderno e mobile-first para a Apexio - IA para Saude. Design focado em conversao com sidebar de CTAs, tipografia otimizada e micro-interactions.
Version: 2.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apexio-health
Tags: one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, full-width-template, post-formats, theme-options, translation-ready
*/

/* ─────────────────────────────────────────────
       DESIGN TOKENS — PALETA APEXIO (TONOS CLAROS)
    ───────────────────────────────────────────── */
    :root {
      /* Fundos claros */
      --bg-base:        #F7F8FA;
      --bg-white:       #FFFFFF;
      --bg-card:        #FFFFFF;
      --bg-card-hover:  #F0F2F5;
      --bg-surface:     #EEF0F3;
      --bg-subtle:      #E8EAED;

      /* Bordas suaves */
      --border:         rgba(26, 39, 68, 0.08);
      --border-accent:  rgba(0, 201, 167, 0.25);
      --border-teal:    rgba(0, 201, 167, 0.3);

      /* Cores da marca Apexio */
      --apex-navy:      #1A2744;
      --apex-teal:      #00C9A7;
      --apex-cyan:      #2EC8E8;
      --apex-lilac:     #9B4DCA;
      --apex-magenta:   #C74B8B;
      --apex-coral:     #E8884A;

      /* Acentos */
      --accent-primary:   #1A2744;
      --accent-teal:      #00C9A7;
      --accent-cyan:      #2EC8E8;
      --accent-teal-dim:  rgba(0, 201, 167, 0.10);
      --accent-cyan-dim:  rgba(46, 200, 232, 0.10);
      --accent-teal-glow: rgba(0, 201, 167, 0.15);

      /* Texto */
      --text-primary:   #1A2744;
      --text-secondary: #4A5568;
      --text-muted:     #8896AB;
      --text-accent:    #00C9A7;
      --text-on-dark:   #FFFFFF;

      /* Gradientes da marca */
      --gradient-brand: linear-gradient(135deg, #1A2744 0%, #00C9A7 50%, #2EC8E8 100%);
      --gradient-hero: linear-gradient(160deg, #F7F8FA 0%, #E8F4F1 40%, #F0F2F5 100%);
      --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(247,248,250,0.95) 100%);

      --font: 'Inter', system-ui, -apple-system, sans-serif;

      --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;

      --space-xs:  4px;
      --space-sm:  8px;
      --space-md:  16px;
      --space-lg:  24px;
      --space-xl:  32px;
      --space-2xl: 48px;
      --space-3xl: 64px;
      --space-4xl: 96px;
      --space-5xl: 128px;

      --container:        1200px;
      --container-narrow: 760px;

      --radius-sm:   6px;
      --radius-md:   12px;
      --radius-lg:   20px;
      --radius-xl:   28px;
      --radius-pill: 40px;
      --radius-full: 9999px;

      --shadow-sm:   0 1px 3px rgba(26, 39, 68, 0.04), 0 1px 2px rgba(26, 39, 68, 0.06);
      --shadow-md:   0 4px 12px rgba(26, 39, 68, 0.06), 0 2px 4px rgba(26, 39, 68, 0.04);
      --shadow-lg:   0 12px 40px rgba(26, 39, 68, 0.08), 0 4px 12px rgba(26, 39, 68, 0.04);
      --shadow-xl:   0 20px 60px rgba(26, 39, 68, 0.10), 0 8px 20px rgba(26, 39, 68, 0.06);
      --shadow-glow: 0 0 60px rgba(0, 201, 167, 0.12);

      --transition:      200ms ease;
      --transition-slow: 400ms ease;

      --nav-height: 72px;
    }

    /* ─────────────────────────────────────────────
       RESET
    ───────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      background: var(--bg-base);
      color: var(--text-primary);
      font-family: var(--font);
      font-size: var(--text-base);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a   { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }

    /* ─────────────────────────────────────────────
       UTILITÁRIOS GLOBAIS
    ───────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: var(--accent-teal-dim);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-pill);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--accent-primary);
      color: var(--text-on-dark);
      font-size: var(--text-base);
      font-weight: 600;
      border-radius: var(--radius-md);
      transition: all var(--transition);
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(26, 39, 68, 0.2);
    }
    .btn-primary:hover {
      background: #243352;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(26, 39, 68, 0.28);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--bg-white);
      color: var(--accent-primary);
      font-size: var(--text-base);
      font-weight: 600;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      transition: all var(--transition);
      white-space: nowrap;
    }
    .btn-secondary:hover {
      background: var(--bg-surface);
      border-color: rgba(26, 39, 68, 0.15);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 22px;
      color: var(--text-secondary);
      font-size: var(--text-base);
      font-weight: 500;
      border-radius: var(--radius-sm);
      transition: color var(--transition);
    }
    .btn-ghost:hover { color: var(--text-primary); }

    /* ─────────────────────────────────────────────
       NAVBAR
    ───────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: var(--nav-height);
      border-bottom: 1px solid transparent;
      transition: all var(--transition-slow);
    }
    .nav.scrolled {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--border);
      box-shadow: var(--shadow-sm);
    }

    .nav__inner {
      height: 100%;
      display: flex;
      align-items: center;
      gap: var(--space-xl);
    }

    .nav__logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .nav__logo img { height: 32px; width: auto; }

    .nav__links {
      display: flex;
      align-items: center;
      gap: var(--space-xl);
      margin-left: auto;
    }

    .nav__link {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--text-secondary);
      transition: color var(--transition);
      position: relative;
    }
    .nav__link::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 0;
      height: 2px;
      background: var(--accent-teal);
      transform: scaleX(0);
      transition: transform var(--transition);
      border-radius: 1px;
    }
    .nav__link:hover { color: var(--text-primary); }
    .nav__link:hover::after { transform: scaleX(1); }

    .nav__cta {
      margin-left: var(--space-md);
      border-radius: var(--radius-md) !important;
    }

    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
      margin-left: auto;
    }
    .nav__hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-secondary);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }
    .nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav panel */
    .nav__mobile {
      display: none;
      position: fixed;
      top: var(--nav-height); left: 0; right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: var(--space-lg);
      flex-direction: column;
      gap: var(--space-md);
      z-index: 99;
      box-shadow: var(--shadow-lg);
    }
    .nav__mobile.open { display: flex; }
    .nav__mobile .nav__link {
      font-size: var(--text-base);
      padding: var(--space-sm) 0;
      border-bottom: 1px solid var(--border);
    }
    .nav__mobile .btn-primary { margin-top: var(--space-sm); justify-content: center; }

    /* ─────────────────────────────────────────────
       HERO — "PULSO DOS DADOS" — VERSÃO CLARA
    ───────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: calc(var(--nav-height) + var(--space-3xl));
      padding-bottom: var(--space-4xl);
      overflow: hidden;
      background: var(--gradient-hero);
    }

    /* Background orgânico — pulso vital */
    .hero__pulse-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero__pulse-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      border-radius: 50%;
      border: 1px solid rgba(0, 201, 167, 0.08);
      animation: pulseExpand 4s ease-out infinite;
    }
    .hero__pulse-ring:nth-child(2) { animation-delay: 1s; }
    .hero__pulse-ring:nth-child(3) { animation-delay: 2s; }
    .hero__pulse-ring:nth-child(4) { animation-delay: 3s; }

    @keyframes pulseExpand {
      0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.6; }
      100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
    }

    /* Linha de ECG animada */
    .hero__ecg-line {
      position: absolute;
      top: 50%;
      left: -10%;
      width: 120%;
      height: 2px;
      pointer-events: none;
    }

    .hero__ecg-path {
      stroke: var(--accent-teal);
      stroke-width: 2;
      fill: none;
      stroke-dasharray: 2000;
      stroke-dashoffset: 2000;
      animation: ecgDraw 3s ease-out forwards;
      filter: drop-shadow(0 0 8px rgba(0, 201, 167, 0.3));
    }

    @keyframes ecgDraw {
      to { stroke-dashoffset: 0; }
    }

    /* Grid sutil */
    .hero__grid-overlay {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(0, 201, 167, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 201, 167, 0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
      pointer-events: none;
    }

    /* Blobs decorativos */
    .hero__blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .hero__blob--teal {
      width: 500px;
      height: 500px;
      background: rgba(0, 201, 167, 0.08);
      top: 10%;
      right: 10%;
      animation: blobFloat 12s ease-in-out infinite;
    }

    .hero__blob--cyan {
      width: 400px;
      height: 400px;
      background: rgba(46, 200, 232, 0.06);
      bottom: 10%;
      left: 5%;
      animation: blobFloat 15s ease-in-out infinite reverse;
    }

    .hero__blob--lilac {
      width: 300px;
      height: 300px;
      background: rgba(155, 77, 202, 0.05);
      top: 60%;
      right: 25%;
      animation: blobFloat 18s ease-in-out infinite 2s;
    }

    @keyframes blobFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(20px, -20px) scale(1.05); }
      66% { transform: translate(-15px, 15px) scale(0.95); }
    }

    /* Container principal */
    .hero__container {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: var(--space-3xl);
      align-items: center;
    }

    /* Conteúdo textual */
    .hero__content {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
    }

    .hero__eyebrow {
      display: flex;
      align-items: center;
      gap: var(--space-md);
    }

    .hero__live-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-teal);
      border-radius: 50%;
      position: relative;
    }
    .hero__live-dot::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid var(--accent-teal);
      animation: livePulse 2s ease-out infinite;
    }
    @keyframes livePulse {
      0% { transform: scale(1); opacity: 0.8; }
      100% { transform: scale(2.5); opacity: 0; }
    }

    .hero__title {
      font-size: clamp(2rem, 2.8vw, 3.2rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--accent-primary);
      max-width: 540px;
    }

    .hero__title-line {
      display: block;
    }

    .hero__title-highlight {
      position: relative;
      display: inline-block;
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero__title-highlight::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-brand);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      animation: lineGrow 0.8s ease-out 0.5s forwards;
    }
    @keyframes lineGrow {
      to { transform: scaleX(1); }
    }

    .hero__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.8;
      max-width: 500px;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      flex-wrap: wrap;
    }

    /* Indicadores ao vivo */
    .hero__live-indicators {
      display: flex;
      gap: var(--space-2xl);
      margin-top: var(--space-md);
      padding-top: var(--space-xl);
      border-top: 1px solid var(--border);
    }

    .hero__indicator {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

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

    .hero__indicator-value {
      font-size: var(--text-2xl);
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      color: var(--accent-teal);
    }

    .hero__indicator-value--navy {
      color: var(--accent-primary);
    }

    .hero__indicator-change {
      font-size: var(--text-xs);
      color: var(--accent-teal);
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 500;
    }

    .hero__indicator-change--accent {
      color: var(--apex-coral);
    }

    /* Visual — composição com foto */
    .hero__visual {
      position: relative;
      width: 100%;
      height: 540px;
    }

    /* Container da imagem */
    .hero__image-wrapper {
      position: absolute;
      top: 0;
      right: 0;
      width: 88%;
      height: 100%;
      border-radius: var(--radius-xl);
      overflow: hidden;
      z-index: 1;
      background: var(--bg-white);
      box-shadow: var(--shadow-xl);
    }

    .hero__image-placeholder {
      width: 100%;
      height: 100%;
    }

    .hero__image-svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 25%;
      filter: brightness(1.02) contrast(1.02) saturate(0.9);
    }

    .hero__image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(247, 248, 250, 0.2) 0%,
        rgba(247, 248, 250, 0.05) 30%,
        rgba(247, 248, 250, 0.05) 60%,
        rgba(247, 248, 250, 0.3) 100%
      );
      z-index: 2;
    }

    .hero__image-glow {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(
          ellipse at 60% 35%,
          rgba(0, 201, 167, 0.08) 0%,
          transparent 40%
        ),
        radial-gradient(
          ellipse at 40% 75%,
          rgba(46, 200, 232, 0.06) 0%,
          transparent 40%
        );
      z-index: 3;
      pointer-events: none;
    }

    /* Borda decorativa na imagem */
    .hero__image-border {
      position: absolute;
      inset: 0;
      border: 1px solid rgba(0, 201, 167, 0.1);
      border-radius: var(--radius-xl);
      z-index: 4;
      pointer-events: none;
    }

    /* Terminal de dados — encaixado sobre a imagem */
    .hero__data-terminal {
      position: absolute;
      bottom: 28px;
      left: 0;
      width: 400px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 
        var(--shadow-xl),
        0 0 0 1px var(--border),
        var(--shadow-glow);
      z-index: 5;
      animation: terminalSlideUp 0.8s ease-out 0.3s both;
    }

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

    .hero__terminal-header {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      padding: var(--space-sm) var(--space-md);
      border-bottom: 1px solid var(--border);
      background: rgba(247, 248, 250, 0.8);
    }

    .hero__terminal-dots {
      display: flex;
      gap: 6px;
    }

    .hero__terminal-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .hero__terminal-dot--red { background: #FF6B6B; }
    .hero__terminal-dot--yellow { background: #FFD93D; }
    .hero__terminal-dot--green { background: var(--accent-teal); }

    .hero__terminal-title {
      margin-left: auto;
      font-size: 10px;
      color: var(--text-muted);
      font-family: 'SF Mono', 'Fira Code', monospace;
      letter-spacing: 0.02em;
      font-weight: 500;
    }

    .hero__terminal-body {
      padding: var(--space-md);
      font-family: 'SF Mono', 'Fira Code', monospace;
      font-size: 11.5px;
      line-height: 1.8;
      color: var(--text-secondary);
    }

    .hero__terminal-line {
      display: flex;
      gap: 6px;
      opacity: 0;
      animation: terminalFadeIn 0.3s ease-out forwards;
    }

    .hero__terminal-line:nth-child(1) { animation-delay: 0.8s; }
    .hero__terminal-line:nth-child(2) { animation-delay: 1.1s; }
    .hero__terminal-line:nth-child(3) { animation-delay: 1.4s; }
    .hero__terminal-line:nth-child(4) { animation-delay: 1.7s; }
    .hero__terminal-line:nth-child(5) { animation-delay: 2.0s; }
    .hero__terminal-line:nth-child(6) { animation-delay: 2.3s; }
    .hero__terminal-line:nth-child(7) { animation-delay: 2.6s; }

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

    .hero__terminal-prompt {
      color: var(--accent-teal);
      user-select: none;
      font-weight: 600;
    }

    .hero__terminal-command {
      color: var(--text-primary);
    }

    .hero__terminal-output {
      color: var(--text-muted);
      padding-left: var(--space-md);
    }

    .hero__terminal-success {
      color: var(--accent-teal);
      font-weight: 500;
    }

    .hero__terminal-warning {
      color: var(--apex-coral);
    }

    .hero__terminal-cursor {
      display: inline-block;
      width: 7px;
      height: 15px;
      background: var(--accent-teal);
      animation: cursorBlink 1s step-end infinite;
      vertical-align: middle;
      margin-left: 2px;
      border-radius: 1px;
    }

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

    /* Floating data cards — encaixadas na composição */
    .hero__floating-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--space-md) var(--space-lg);
      box-shadow: 
        var(--shadow-lg),
        0 0 0 1px var(--border);
      z-index: 6;
      animation: float 6s ease-in-out infinite;
    }

    .hero__floating-card--top-right {
      top: 36px;
      right: 0;
      animation-delay: 0s;
      animation: float 6s ease-in-out infinite, cardFadeIn 0.6s ease-out 0.5s both;
    }

    .hero__floating-card--bottom-left {
      bottom: 160px;
      left: 24px;
      animation-delay: 2s;
      animation: float 6s ease-in-out infinite 2s, cardFadeIn 0.6s ease-out 0.8s both;
    }

    .hero__floating-card--mid-right {
      top: 50%;
      right: -12px;
      transform: translateY(-50%);
      animation: floatMid 8s ease-in-out infinite, cardFadeIn 0.6s ease-out 1.1s both;
    }

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

    @keyframes floatMid {
      0%, 100% { transform: translateY(-50%) translateX(0px); }
      50% { transform: translateY(-50%) translateX(-6px); }
    }

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

    .hero__floating-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-sm);
    }

    .hero__floating-icon--teal {
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
    }

    .hero__floating-icon--cyan {
      background: var(--accent-cyan-dim);
      color: var(--accent-cyan);
    }

    .hero__floating-label {
      font-size: 10px;
      color: var(--text-muted);
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
    }

    .hero__floating-value {
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--accent-teal);
    }

    .hero__floating-value--navy {
      color: var(--accent-primary);
    }

    .hero__floating-bar {
      margin-top: var(--space-sm);
      height: 5px;
      background: var(--bg-surface);
      border-radius: 3px;
      overflow: hidden;
    }

    .hero__floating-bar-fill {
      height: 100%;
      border-radius: 3px;
      animation: barFill 2s ease-out forwards;
      transform-origin: left;
    }

    .hero__floating-bar-fill--teal {
      background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
    }

    .hero__floating-bar-fill--navy {
      background: linear-gradient(90deg, var(--accent-primary), var(--apex-lilac));
    }

    @keyframes barFill {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    /* ─────────────────────────────────────────────
       RESPONSIVO
    ───────────────────────────────────────────── */
    @media (max-width: 768px) {
      :root { --nav-height: 64px; }

      .nav__links, .nav__cta { display: none; }
      .nav__hamburger { display: flex; }

      .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
      }

      .hero__container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
      }

      .hero__title {
        font-size: var(--text-4xl);
      }

      .hero__live-indicators {
        flex-wrap: wrap;
        gap: var(--space-lg);
      }

      .hero__visual {
        height: 400px;
        order: -1;
      }

      .hero__image-wrapper {
        width: 100%;
        height: 100%;
      }

      .hero__floating-card {
        display: none;
      }

      .hero__data-terminal {
        width: calc(100% - 32px);
        left: 16px;
        bottom: 16px;
      }

      .hero__ecg-line {
        display: none;
      }

      .hero__pulse-bg {
        display: none;
      }

      .hero__blob {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .hero__title {
        font-size: var(--text-3xl);
      }

      .hero__actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-primary, .btn-secondary {
        justify-content: center;
      }

      .hero__visual {
        height: 320px;
      }

      .hero__terminal-body {
        font-size: 10px;
        line-height: 1.6;
        padding: var(--space-sm);
      }

      .hero__terminal-line {
        flex-wrap: wrap;
      }

      .hero__terminal-command {
        font-size: 9px;
      }
    }

    /* ─────────────────────────────────────────────
       SEÇÃO PROBLEMA
    ───────────────────────────────────────────── */
    .problem {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--bg-white);
      overflow: hidden;
    }

    .problem__container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-4xl);
      align-items: center;
    }

    /* Lado esquerdo — headline */
    .problem__content {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
    }

    .problem__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--apex-coral);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .problem__eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--apex-coral);
      border-radius: 50%;
    }

    .problem__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--accent-primary);
    }

    .problem__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 460px;
    }

    /* Lado direito — cards de problema */
    .problem__cards {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .problem__card {
      display: flex;
      align-items: flex-start;
      gap: var(--space-lg);
      padding: var(--space-lg) var(--space-xl);
      background: var(--bg-base);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      transition: all var(--transition);
    }

    .problem__card:hover {
      background: var(--bg-white);
      border-color: rgba(232, 136, 74, 0.2);
      box-shadow: var(--shadow-md);
      transform: translateX(4px);
    }

    .problem__card-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(232, 136, 74, 0.1);
      border-radius: var(--radius-md);
      color: var(--apex-coral);
    }

    .problem__card-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .problem__card-title {
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--accent-primary);
    }

    .problem__card-desc {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Linha decorativa */
    .problem__line {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, 
        var(--apex-navy) 0%, 
        var(--apex-coral) 33%, 
        var(--apex-magenta) 66%, 
        var(--apex-lilac) 100%
      );
      opacity: 0.6;
    }

    /* Responsivo problema */
    @media (max-width: 768px) {
      .problem {
        padding: var(--space-4xl) 0;
      }

      .problem__container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
      }

      .problem__cards {
        order: -1;
      }
    }

    /* ─────────────────────────────────────────────
       SEÇÃO SOLUÇÃO — 2 PILARES
    ───────────────────────────────────────────── */
    .solution {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--bg-base);
      overflow: hidden;
    }

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

    /* Header da seção */
    .solution__header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto var(--space-4xl);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-lg);
    }

    .solution__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .solution__eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-teal);
      border-radius: 50%;
    }

    .solution__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--accent-primary);
    }

    .solution__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.75;
    }

    /* Grid de pilares */
    .solution__pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
    }

    /* Card pilar */
    .solution__pillar {
      position: relative;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: var(--space-2xl);
      transition: all var(--transition-slow);
      overflow: hidden;
    }

    .solution__pillar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .solution__pillar--data::before {
      background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
    }

    .solution__pillar--automation::before {
      background: linear-gradient(90deg, var(--apex-lilac), var(--apex-magenta));
    }

    .solution__pillar:hover {
      border-color: transparent;
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .solution__pillar--data:hover {
      box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 201, 167, 0.1);
    }

    .solution__pillar--automation:hover {
      box-shadow: var(--shadow-lg), 0 0 60px rgba(155, 77, 202, 0.1);
    }

    /* Ícone do pilar */
    .solution__pillar-icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-lg);
      margin-bottom: var(--space-xl);
    }

    .solution__pillar--data .solution__pillar-icon {
      background: linear-gradient(135deg, rgba(0, 201, 167, 0.12), rgba(46, 200, 232, 0.12));
      color: var(--accent-teal);
    }

    .solution__pillar--automation .solution__pillar-icon {
      background: linear-gradient(135deg, rgba(155, 77, 202, 0.12), rgba(199, 75, 139, 0.12));
      color: var(--apex-lilac);
    }

    /* Conteúdo do pilar */
    .solution__pillar-label {
      font-size: var(--text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: var(--space-sm);
    }

    .solution__pillar--data .solution__pillar-label {
      color: var(--accent-teal);
    }

    .solution__pillar--automation .solution__pillar-label {
      color: var(--apex-lilac);
    }

    .solution__pillar-title {
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--accent-primary);
      margin-bottom: var(--space-lg);
      line-height: 1.2;
    }

    /* Lista de features */
    .solution__features {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .solution__feature {
      display: flex;
      align-items: flex-start;
      gap: var(--space-md);
    }

    .solution__feature-check {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-top: 2px;
    }

    .solution__pillar--data .solution__feature-check {
      background: rgba(0, 201, 167, 0.12);
      color: var(--accent-teal);
    }

    .solution__pillar--automation .solution__feature-check {
      background: rgba(155, 77, 202, 0.12);
      color: var(--apex-lilac);
    }

    .solution__feature-text {
      font-size: var(--text-base);
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Responsivo solução */
    @media (max-width: 768px) {
      .solution {
        padding: var(--space-4xl) 0;
      }

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

      .solution__header {
        margin-bottom: var(--space-2xl);
      }
    }

    /* ─────────────────────────────────────────────
       SEÇÃO AUTORIDADE
    ───────────────────────────────────────────── */
    .authority {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--accent-primary);
      overflow: hidden;
    }

    .authority__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .authority__bg-grid {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    }

    .authority__glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      filter: blur(120px);
    }

    .authority__glow--teal {
      background: rgba(0, 201, 167, 0.15);
      top: -200px;
      right: -100px;
    }

    .authority__glow--lilac {
      background: rgba(155, 77, 202, 0.1);
      bottom: -200px;
      left: -100px;
    }

    .authority__container {
      position: relative;
      z-index: 2;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
    }

    /* Header centralizado */
    .authority__header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto var(--space-4xl);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-lg);
    }

    .authority__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .authority__eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-teal);
      border-radius: 50%;
    }

    .authority__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--text-on-dark);
    }

    .authority__subtitle {
      font-size: var(--text-lg);
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.75;
    }

    /* Grid de argumentos — layout 2x2 */
    .authority__args {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }

    /* Card argumento */
    .authority__arg {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      padding: var(--space-2xl);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-xl);
      transition: all var(--transition-slow);
      overflow: hidden;
    }

    .authority__arg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition-slow);
    }

    .authority__arg:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(0, 201, 167, 0.3);
      transform: translateY(-4px);
    }

    .authority__arg:hover::before {
      transform: scaleX(1);
    }

    /* Número do argumento */
    .authority__arg-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: rgba(0, 201, 167, 0.15);
      border-radius: var(--radius-sm);
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--accent-teal);
      margin-bottom: var(--space-sm);
    }

    /* Ícone */
    .authority__arg-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 201, 167, 0.12);
      border-radius: var(--radius-md);
      color: var(--accent-teal);
      transition: all var(--transition);
    }

    .authority__arg:hover .authority__arg-icon {
      background: var(--accent-teal);
      color: var(--accent-primary);
    }

    /* Conteúdo */
    .authority__arg-title {
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--text-on-dark);
      line-height: 1.3;
    }

    .authority__arg-desc {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
    }

    /* Responsivo autoridade */
    @media (max-width: 768px) {
      .authority {
        padding: var(--space-4xl) 0;
      }

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

      .authority__header {
        margin-bottom: var(--space-2xl);
      }
    }

    /* ─────────────────────────────────────────────
       SEÇÃO BENEFÍCIOS
    ───────────────────────────────────────────── */
    .benefits {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--bg-white);
      overflow: hidden;
    }

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

    /* Header */
    .benefits__header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto var(--space-4xl);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-lg);
    }

    .benefits__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .benefits__eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-teal);
      border-radius: 50%;
    }

    .benefits__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--accent-primary);
    }

    .benefits__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.75;
    }

    /* Grid de benefícios */
    .benefits__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
    }

    /* Card de benefício */
    .benefits__card {
      position: relative;
      padding: var(--space-2xl);
      background: var(--bg-base);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      transition: all var(--transition-slow);
      overflow: hidden;
    }

    .benefits__card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition-slow);
    }

    .benefits__card:hover {
      background: var(--bg-white);
      border-color: transparent;
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .benefits__card:hover::before {
      transform: scaleX(1);
    }

    /* Ícone */
    .benefits__card-icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(0, 201, 167, 0.1), rgba(46, 200, 232, 0.1));
      border-radius: var(--radius-lg);
      color: var(--accent-teal);
      margin-bottom: var(--space-xl);
      transition: all var(--transition);
    }

    .benefits__card:hover .benefits__card-icon {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
      color: var(--text-on-dark);
      transform: scale(1.05);
    }

    /* Conteúdo */
    .benefits__card-title {
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--accent-primary);
      margin-bottom: var(--space-sm);
      line-height: 1.3;
    }

    .benefits__card-desc {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* Destaque visual — tag de destaque */
    .benefits__card-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: var(--space-md);
      padding: 4px 10px;
      background: rgba(0, 201, 167, 0.08);
      border-radius: var(--radius-pill);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
    }

    /* Responsivo benefícios */
    @media (max-width: 1024px) {
      .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .benefits {
        padding: var(--space-4xl) 0;
      }

      .benefits__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
      }

      .benefits__header {
        margin-bottom: var(--space-2xl);
      }
    }

    /* ─────────────────────────────────────────────
       SEÇÃO CTA FINAL
    ───────────────────────────────────────────── */
    .cta {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--bg-base);
      overflow: hidden;
    }

    .cta__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .cta__glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
    }

    .cta__glow--teal {
      width: 500px;
      height: 500px;
      background: rgba(0, 201, 167, 0.08);
      top: -150px;
      left: 50%;
      transform: translateX(-50%);
    }

    .cta__glow--lilac {
      width: 400px;
      height: 400px;
      background: rgba(155, 77, 202, 0.05);
      bottom: -150px;
      right: -100px;
    }

    .cta__glow--cyan {
      width: 350px;
      height: 350px;
      background: rgba(46, 200, 232, 0.05);
      bottom: -100px;
      left: -100px;
    }

    .cta__container {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 0 auto;
      padding: 0 var(--space-lg);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-xl);
    }

    /* Badge */
    .cta__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      background: var(--accent-teal-dim);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-pill);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .cta__badge-dot {
      width: 6px;
      height: 6px;
      background: var(--accent-teal);
      border-radius: 50%;
      animation: ctaPulse 2s ease-in-out infinite;
    }

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

    /* Headline */
    .cta__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--accent-primary);
    }

    /* Subheadline */
    .cta__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 560px;
    }

    /* Botão */
    .cta__actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-md);
    }

    .cta__btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 36px;
      background: var(--accent-primary);
      color: var(--text-on-dark);
      font-size: var(--text-lg);
      font-weight: 600;
      border-radius: var(--radius-md);
      transition: all var(--transition);
      box-shadow: 0 4px 20px rgba(26, 39, 68, 0.25);
    }

    .cta__btn:hover {
      background: #243352;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(26, 39, 68, 0.3);
    }

    .cta__btn-icon {
      transition: transform var(--transition);
    }

    .cta__btn:hover .cta__btn-icon {
      transform: translateX(4px);
    }

    /* Trust signals */
    .cta__trust {
      display: flex;
      align-items: center;
      gap: var(--space-xl);
      margin-top: var(--space-sm);
    }

    .cta__trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: var(--text-sm);
      color: var(--text-muted);
    }

    .cta__trust-icon {
      color: var(--accent-teal);
    }

    /* Separador visual */
    .cta__divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
      border-radius: 2px;
      margin: var(--space-md) 0;
    }

    /* Responsivo CTA */
    @media (max-width: 768px) {
      .cta {
        padding: var(--space-4xl) 0;
      }

      .cta__trust {
        flex-direction: column;
        gap: var(--space-sm);
      }
    }

    /* ─────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────── */
    .footer {
      position: relative;
      background: var(--accent-primary);
      color: rgba(255, 255, 255, 0.7);
      overflow: hidden;
    }

    .footer__glow {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
    }

    .footer__glow--teal {
      background: rgba(0, 201, 167, 0.08);
      top: -200px;
      right: 10%;
    }

    .footer__container {
      position: relative;
      z-index: 2;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
    }

    /* Top section — brand + nav */
    .footer__top {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: var(--space-3xl);
      padding: var(--space-4xl) 0 var(--space-3xl);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Brand column */
    .footer__brand {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
      max-width: 280px;
    }

    .footer__logo {
      display: flex;
      align-items: center;
    }

    .footer__logo img {
      height: 48px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .footer__tagline {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
    }

    .footer__social {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      margin-top: var(--space-sm);
    }

    .footer__social-link {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-sm);
      color: rgba(255, 255, 255, 0.55);
      transition: all var(--transition);
    }

    .footer__social-link:hover {
      background: var(--accent-teal);
      color: var(--accent-primary);
    }

    /* Nav columns */
    .footer__nav-title {
      font-size: var(--text-xs);
      font-weight: 600;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: var(--space-lg);
    }

    .footer__nav-list {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .footer__nav-link {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.65);
      transition: color var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer__nav-link:hover {
      color: var(--accent-teal);
    }

    .footer__nav-link svg {
      opacity: 0;
      transform: translateX(-4px);
      transition: all var(--transition);
    }

    .footer__nav-link:hover svg {
      opacity: 1;
      transform: translateX(0);
    }

    /* Bottom bar */
    .footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-xl) 0;
      gap: var(--space-lg);
    }

    .footer__copy {
      font-size: var(--text-xs);
      color: rgba(255, 255, 255, 0.4);
    }

    .footer__legal {
      display: flex;
      align-items: center;
      gap: var(--space-xl);
    }

    .footer__legal-link {
      font-size: var(--text-xs);
      color: rgba(255, 255, 255, 0.4);
      transition: color var(--transition);
    }

    .footer__legal-link:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    /* Badge de compliance */
    .footer__compliance {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      background: rgba(0, 201, 167, 0.12);
      border-radius: var(--radius-pill);
      font-size: 10px;
      font-weight: 600;
      color: var(--accent-teal);
      letter-spacing: 0.04em;
    }

    /* Responsivo footer */
    @media (max-width: 1024px) {
      .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
      }

      .footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: var(--space-2xl) 0;
      }

      .footer__bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
      }
    }

    /* ─────────────────────────────────────────────
       BOTÃO VOLTAR AO TOPO
    ───────────────────────────────────────────── */
    .back-to-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-primary);
      color: var(--text-on-dark);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 20px rgba(26, 39, 68, 0.3);
      z-index: 90;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all var(--transition);
      cursor: pointer;
      border: none;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      background: #243352;
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(26, 39, 68, 0.4);
    }

    .back-to-top__icon {
      transition: transform var(--transition);
    }

    .back-to-top:hover .back-to-top__icon {
      transform: translateY(-2px);
    }

    /* Barra de progresso */
    .back-to-top__progress {
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 3px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      overflow: hidden;
    }

    .back-to-top__progress-bar {
      height: 100%;
      background: var(--accent-teal);
      border-radius: 2px;
      width: 0%;
      transition: width 100ms linear;
    }

    @media (max-width: 768px) {
      .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
      }
    }

    /* ─────────────────────────────────────────────
       SEÇÃO BLOG
    ───────────────────────────────────────────── */
    .blog-section {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--accent-primary);
      overflow: hidden;
    }

    .blog-section__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .blog-section__bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    }

    .blog-section__glow {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      filter: blur(120px);
    }

    .blog-section__glow--teal {
      background: rgba(0, 201, 167, 0.12);
      top: -150px;
      right: -100px;
    }

    .blog-section__glow--cyan {
      background: rgba(46, 200, 232, 0.08);
      bottom: -150px;
      left: -100px;
    }

    .blog-section__container {
      position: relative;
      z-index: 2;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
    }

    .blog-section__header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto var(--space-4xl);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-lg);
    }

    .blog-section__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .blog-section__eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-teal);
      border-radius: 50%;
    }

    .blog-section__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--text-on-dark);
    }

    .blog-section__subtitle {
      font-size: var(--text-lg);
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.75;
    }

    /* Grid de posts */
    .blog-section__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
    }

    .blog-section__card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: all var(--transition-slow);
    }

    .blog-section__card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(0, 201, 167, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .blog-section__card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .blog-section__card-body {
      padding: var(--space-xl);
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-section__card-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 10px;
      background: rgba(0, 201, 167, 0.15);
      border-radius: var(--radius-pill);
      font-size: 10px;
      font-weight: 600;
      color: var(--accent-teal);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      width: fit-content;
      margin-bottom: var(--space-md);
    }

    .blog-section__card-title {
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--text-on-dark);
      line-height: 1.4;
      margin-bottom: var(--space-sm);
    }

    .blog-section__card-excerpt {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
      flex: 1;
    }

    .blog-section__card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--space-md);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: var(--space-lg);
    }

    .blog-section__card-meta {
      font-size: var(--text-xs);
      color: rgba(255, 255, 255, 0.4);
    }

    .blog-section__card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--accent-teal);
      transition: all var(--transition);
    }

    .blog-section__card-link:hover {
      gap: 10px;
    }

    .blog-section__card-link svg {
      transition: transform var(--transition);
    }

    .blog-section__card-link:hover svg {
      transform: translateX(2px);
    }

    /* CTA do blog */
    .blog-section__cta {
      text-align: center;
      margin-top: var(--space-3xl);
    }

    .blog-section__cta-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-md);
      color: var(--text-on-dark);
      font-size: var(--text-base);
      font-weight: 600;
      transition: all var(--transition);
    }

    .blog-section__cta-link:hover {
      background: var(--accent-teal);
      border-color: var(--accent-teal);
      color: var(--accent-primary);
      transform: translateY(-2px);
    }

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

    @media (max-width: 768px) {
      .blog-section {
        padding: var(--space-4xl) 0;
      }

      .blog-section__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
      }

      .blog-section__header {
        margin-bottom: var(--space-2xl);
      }

      .blog-section__card-image {
        height: 160px;
      }
    }

    /* ─────────────────────────────────────────────
       SEÇÃO FAQ
    ───────────────────────────────────────────── */
    .faq {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--bg-white);
      overflow: hidden;
    }

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

    .faq__header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto var(--space-4xl);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-lg);
    }

    .faq__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .faq__eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-teal);
      border-radius: 50%;
    }

    .faq__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--accent-primary);
    }

    .faq__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.75;
    }

    .faq__list {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .faq__item {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--bg-base);
      transition: all var(--transition);
      overflow: hidden;
    }

    .faq__item[open] {
      background: var(--bg-white);
      border-color: var(--border-accent);
      box-shadow: var(--shadow-md);
    }

    .faq__question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-md);
      padding: var(--space-lg) var(--space-xl);
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--accent-primary);
      cursor: pointer;
      list-style: none;
      transition: color var(--transition);
    }

    .faq__question::-webkit-details-marker { display: none; }
    .faq__question::marker { display: none; content: ''; }

    .faq__question:hover {
      color: var(--accent-teal);
    }

    .faq__chevron {
      flex-shrink: 0;
      color: var(--text-muted);
      transition: transform var(--transition);
    }

    .faq__item[open] .faq__chevron {
      transform: rotate(180deg);
      color: var(--accent-teal);
    }

    .faq__answer {
      padding: 0 var(--space-xl) var(--space-lg);
    }

    .faq__answer p {
      font-size: var(--text-base);
      color: var(--text-secondary);
      line-height: 1.8;
    }

    @media (max-width: 768px) {
      .faq {
        padding: var(--space-4xl) 0;
      }

      .faq__header {
        margin-bottom: var(--space-2xl);
      }

      .faq__question {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--text-sm);
      }

      .faq__answer {
        padding: 0 var(--space-lg) var(--space-md);
      }
    }

/* ─────────────────────────────────────────────
       INTERNAL PAGES — BLOG, SINGLE, ARCHIVE
    ───────────────────────────────────────────── */

/* ── Blog Hero ──────────────────────────────── */
    .blog-hero {
      background: var(--gradient-hero);
      padding: var(--space-5xl) 0 var(--space-3xl);
      text-align: center;
    }

    .blog-hero__content {
      max-width: 720px;
      margin: 0 auto;
    }

    .blog-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      margin-bottom: var(--space-lg);
    }

    .blog-hero__title {
      font-size: var(--text-4xl);
      font-weight: 800;
      color: var(--apex-navy);
      line-height: 1.2;
      margin: 0 0 var(--space-md);
    }

    .blog-hero__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.7;
      margin: 0;
    }

/* ── Blog Layout ────────────────────────────── */
    .blog-layout {
      padding: var(--space-3xl) 0 var(--space-5xl);
    }

    .blog-layout__inner {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: var(--space-3xl);
      align-items: start;
    }

    .blog-content {
      min-width: 0;
    }

/* ── Posts Grid ─────────────────────────────── */
    .posts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }

/* ── Post Card ──────────────────────────────── */
    .post-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .post-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .post-card__image-wrapper {
      display: block;
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
    }

    .post-card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .post-card:hover .post-card__image {
      transform: scale(1.05);
    }

    .post-card__category {
      position: absolute;
      top: var(--space-md);
      left: var(--space-md);
      background: var(--apex-navy);
      color: var(--text-on-dark);
      font-size: var(--text-xs);
      font-weight: 600;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      letter-spacing: 0.04em;
    }

    .post-card__content {
      padding: var(--space-lg);
    }

    .post-card__meta {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      margin-bottom: var(--space-sm);
    }

    .post-card__meta-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: var(--text-xs);
      color: var(--text-muted);
    }

    .post-card__meta-item svg {
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .post-card__title {
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--apex-navy);
      line-height: 1.3;
      margin: 0 0 var(--space-sm);
    }

    .post-card__title a {
      color: inherit;
      text-decoration: none;
    }

    .post-card__title a:hover {
      color: var(--accent-teal);
    }

    .post-card__excerpt {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      line-height: 1.7;
      margin: 0 0 var(--space-lg);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .post-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--space-md);
      border-top: 1px solid var(--border);
    }

    .post-card__author {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }

    .post-card__avatar {
      width: 32px;
      height: 32px;
      border-radius: var(--radius-full);
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--text-xs);
      font-weight: 700;
    }

    .post-card__author-name {
      font-size: var(--text-xs);
      color: var(--text-secondary);
      font-weight: 500;
    }

    .post-card__read-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .post-card__read-more:hover {
      gap: 10px;
    }

    .post-card--featured {
      grid-column: 1 / -1;
    }

    .post-card--featured .post-card__image-wrapper {
      aspect-ratio: 21 / 9;
    }

/* ── Pagination ─────────────────────────────── */
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
      margin-top: var(--space-3xl);
    }

    .nav-links .page-numbers {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: var(--radius-md);
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--text-secondary);
      background: var(--bg-card);
      border: 1px solid var(--border);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .nav-links .page-numbers:hover {
      border-color: var(--accent-teal);
      color: var(--accent-teal);
    }

    .nav-links .page-numbers.current {
      background: var(--apex-navy);
      color: var(--text-on-dark);
      border-color: var(--apex-navy);
    }

    .nav-links .prev,
    .nav-links .next {
      width: auto;
      padding: 0 var(--space-md);
    }

/* ── Single Post ────────────────────────────── */
    .single-post {
      background: var(--bg-base);
    }

    .single-post__container {
      max-width: var(--container-narrow);
      margin: 0 auto;
      padding: var(--space-5xl) var(--space-lg) var(--space-5xl);
    }

    .single-post__header {
      text-align: center;
      margin-bottom: var(--space-2xl);
    }

    .single-post__category {
      display: inline-block;
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      text-decoration: none;
      margin-bottom: var(--space-lg);
      transition: background 0.2s ease;
    }

    .single-post__category:hover {
      background: rgba(0, 201, 167, 0.2);
    }

    .single-post__title {
      font-size: var(--text-4xl);
      font-weight: 800;
      color: var(--apex-navy);
      line-height: 1.2;
      margin: 0 0 var(--space-lg);
    }

    .single-post__meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-md);
      flex-wrap: wrap;
    }

    .single-post__meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: var(--text-sm);
      color: var(--text-muted);
    }

    .single-post__meta-item svg {
      color: var(--text-muted);
    }

    .single-post__meta-divider {
      width: 4px;
      height: 4px;
      border-radius: var(--radius-full);
      background: var(--text-muted);
    }

    .single-post__featured {
      margin-bottom: var(--space-2xl);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .single-post__featured img {
      width: 100%;
      height: auto;
      display: block;
    }

/* ── Share Bar ──────────────────────────────── */
    .single-post__share {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
      padding: var(--space-lg) 0;
      margin-bottom: var(--space-2xl);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .single-post__share-label {
      font-size: var(--text-sm);
      color: var(--text-muted);
      font-weight: 500;
      margin-right: var(--space-sm);
    }

    .single-post__share-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: var(--radius-md);
      background: var(--bg-surface);
      color: var(--text-secondary);
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .single-post__share-btn:hover {
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
    }

/* ── Post Content ───────────────────────────── */
    .post-content {
      font-size: var(--text-base);
      color: var(--text-secondary);
      line-height: 1.85;
    }

    .post-content h2 {
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--apex-navy);
      margin: var(--space-2xl) 0 var(--space-md);
      letter-spacing: -0.01em;
    }

    .post-content h3 {
      font-size: var(--text-xl);
      font-weight: 600;
      color: var(--apex-navy);
      margin: var(--space-xl) 0 var(--space-md);
    }

    .post-content h4 {
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--apex-navy);
      margin: var(--space-lg) 0 var(--space-sm);
    }

    .post-content p {
      margin: 0 0 var(--space-lg);
    }

    .post-content strong {
      font-weight: 600;
      color: var(--apex-navy);
    }

    .post-content hr {
      border: none;
      height: 1px;
      background: var(--border);
      margin: var(--space-2xl) 0;
    }

    .post-content a {
      color: var(--accent-teal);
      text-decoration: underline;
      text-decoration-color: rgba(0, 201, 167, 0.3);
      text-underline-offset: 3px;
      transition: text-decoration-color 0.2s ease;
    }

    .post-content a:hover {
      text-decoration-color: var(--accent-teal);
    }

    .post-content ul,
    .post-content ol {
      margin: 0 0 var(--space-lg);
      padding-left: var(--space-xl);
    }

    .post-content li {
      margin-bottom: var(--space-sm);
    }

    .post-content blockquote {
      border-left: 4px solid var(--accent-teal);
      background: var(--accent-teal-dim);
      padding: var(--space-lg) var(--space-xl);
      margin: var(--space-xl) 0;
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      font-style: italic;
      color: var(--apex-navy);
    }

    .post-content img {
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-md);
      margin: var(--space-xl) 0;
    }

    .post-content pre {
      background: var(--apex-navy);
      color: #e2e8f0;
      padding: var(--space-lg);
      border-radius: var(--radius-md);
      overflow-x: auto;
      margin: var(--space-xl) 0;
      font-size: var(--text-sm);
    }

    .post-content code {
      background: var(--bg-surface);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 0.9em;
    }

    .post-content pre code {
      background: none;
      padding: 0;
    }

    .post-content table {
      width: 100%;
      border-collapse: collapse;
      margin: var(--space-xl) 0;
      font-size: var(--text-sm);
    }

    .post-content th,
    .post-content td {
      padding: var(--space-md) var(--space-lg);
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .post-content th {
      font-weight: 600;
      color: var(--apex-navy);
      background: var(--bg-surface);
    }

    .post-content tr:hover td {
      background: var(--bg-card-hover);
    }

/* ── Post Tags ──────────────────────────────── */
    .post-tags {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      padding: var(--space-xl) 0;
      margin-top: var(--space-2xl);
      border-top: 1px solid var(--border);
    }

    .post-tag {
      display: inline-block;
      background: var(--bg-surface);
      color: var(--text-secondary);
      font-size: var(--text-xs);
      font-weight: 500;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .post-tag:hover {
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
    }

/* ── Author Bio ─────────────────────────────── */
    .author-bio {
      display: flex;
      gap: var(--space-lg);
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
      margin: var(--space-2xl) 0;
    }

    .author-bio__avatar {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-full);
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--text-xl);
      font-weight: 700;
      flex-shrink: 0;
    }

    .author-bio__content {
      min-width: 0;
    }

    .author-bio__name {
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--apex-navy);
      margin: 0 0 2px;
    }

    .author-bio__role {
      font-size: var(--text-xs);
      color: var(--accent-teal);
      font-weight: 500;
      margin: 0 0 var(--space-sm);
    }

    .author-bio__text {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      line-height: 1.7;
      margin: 0;
    }

/* ── CTA Inline ─────────────────────────────── */
    .cta-inline {
      background: var(--gradient-brand);
      border-radius: var(--radius-lg);
      padding: var(--space-2xl);
      text-align: center;
      margin: var(--space-2xl) 0;
    }

    .cta-inline__title {
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--text-on-dark);
      margin: 0 0 var(--space-sm);
    }

    .cta-inline__text {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.8);
      margin: 0 0 var(--space-lg);
    }

    .cta-inline__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      background: #fff;
      color: var(--apex-navy);
      font-size: var(--text-sm);
      font-weight: 600;
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .cta-inline__btn:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    }

/* ── Post Navigation ────────────────────────── */
    .post-navigation {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-lg);
      padding: var(--space-2xl) 0;
      border-top: 1px solid var(--border);
    }

    .post-nav-link {
      display: flex;
      flex-direction: column;
      gap: var(--space-xs);
      padding: var(--space-lg);
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .post-nav-link:hover {
      border-color: var(--accent-teal);
      box-shadow: var(--shadow-md);
    }

    .post-nav-link--next {
      text-align: right;
    }

    .post-nav-link__label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: var(--text-xs);
      color: var(--text-muted);
      font-weight: 500;
    }

    .post-nav-link--next .post-nav-link__label {
      justify-content: flex-end;
    }

    .post-nav-link__title {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--apex-navy);
    }

    .post-nav-link:hover .post-nav-link__title {
      color: var(--accent-teal);
    }

/* ── No Posts ───────────────────────────────── */
    .no-posts {
      text-align: center;
      padding: var(--space-4xl) 0;
    }

    .no-posts__title {
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--apex-navy);
      margin: 0 0 var(--space-md);
    }

    .no-posts__desc {
      font-size: var(--text-base);
      color: var(--text-secondary);
      margin: 0 0 var(--space-xl);
    }

    .no-posts__desc a {
      color: var(--accent-teal);
    }

/* ── Page Links ─────────────────────────────── */
    .page-links {
      margin-top: var(--space-xl);
      padding-top: var(--space-lg);
      border-top: 1px solid var(--border);
    }

/* ─────────────────────────────────────────────
       SIDEBAR
    ───────────────────────────────────────────── */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
    }

    .sidebar-widget {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
    }

    .sidebar-widget--cta {
      background: var(--apex-navy);
      color: var(--text-on-dark);
      border: none;
    }

    .sidebar-widget__title {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--apex-navy);
      margin: 0 0 var(--space-lg);
    }

    .sidebar-widget--cta .sidebar-widget__title {
      color: var(--text-on-dark);
    }

    .sidebar-widget__title-icon {
      color: var(--accent-teal);
      flex-shrink: 0;
    }

    .sidebar-widget--cta__text {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      margin: 0 0 var(--space-lg);
    }

    /* ── Sidebar Buttons ──────────────────────── */
    .sidebar-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px 20px;
      border-radius: var(--radius-md);
      font-size: var(--text-sm);
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.25s ease;
      border: none;
    }

    .sidebar-btn--teal {
      background: var(--accent-teal);
      color: var(--apex-navy);
    }

    .sidebar-btn--teal:hover {
      background: #00b897;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(0, 201, 167, 0.3);
    }

    .sidebar-btn--outline-white {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
    }

    .sidebar-btn--outline-white:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.6);
      transform: translateY(-1px);
    }

    /* ── Sidebar: Cases de Sucesso ────────────── */
    .sidebar-widget--cases {
      background: linear-gradient(145deg, var(--apex-teal) 0%, #00a88a 100%);
      color: #fff;
      border: none;
      text-align: center;
      padding: var(--space-2xl) var(--space-xl);
    }

    .sidebar-widget--cases__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      margin: 0 auto var(--space-lg);
    }

    .sidebar-widget--cases__title {
      font-size: var(--text-lg);
      font-weight: 700;
      color: #fff;
      margin: 0 0 var(--space-sm);
    }

    .sidebar-widget--cases__text {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
      margin: 0 0 var(--space-xl);
    }

    .sidebar-widget--newsletter__text {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      line-height: 1.7;
      margin: 0 0 var(--space-lg);
    }

    .sidebar-widget--newsletter__form {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .sidebar-widget--newsletter__input {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      font-size: var(--text-sm);
      color: var(--apex-navy);
      background: var(--bg-base);
      outline: none;
      transition: border-color 0.2s ease;
    }

    .sidebar-widget--newsletter__input:focus {
      border-color: var(--accent-teal);
    }

    .sidebar-widget--newsletter__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 16px;
      background: var(--accent-teal);
      color: var(--apex-navy);
      border: none;
      border-radius: var(--radius-md);
      font-size: var(--text-sm);
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .sidebar-widget--newsletter__btn:hover {
      background: var(--accent-cyan);
    }

    .popular-list {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .popular-item {
      display: flex;
      gap: var(--space-md);
      align-items: flex-start;
    }

    .popular-item__number {
      width: 28px;
      height: 28px;
      border-radius: var(--radius-md);
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--text-xs);
      font-weight: 700;
      flex-shrink: 0;
    }

    .popular-item__content {
      min-width: 0;
    }

    .popular-item__title {
      display: block;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--apex-navy);
      text-decoration: none;
      line-height: 1.4;
      margin-bottom: 2px;
    }

    .popular-item__title:hover {
      color: var(--accent-teal);
    }

    .popular-item__meta {
      font-size: var(--text-xs);
      color: var(--text-muted);
    }

    .category-list {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .category-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 12px;
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: background 0.2s ease;
    }

    .category-item:hover {
      background: var(--bg-surface);
    }

    .category-item span:first-child {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      font-weight: 500;
    }

    .category-count {
      background: var(--bg-surface);
      color: var(--text-muted);
      font-size: var(--text-xs);
      font-weight: 600;
      padding: 2px 8px;
      border-radius: var(--radius-full);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
    }

    .tag {
      display: inline-block;
      background: var(--bg-surface);
      color: var(--text-secondary);
      font-size: var(--text-xs);
      font-weight: 500;
      padding: 6px 12px;
      border-radius: var(--radius-full);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .tag:hover {
      background: var(--accent-teal-dim);
      color: var(--accent-teal);
    }

/* ─────────────────────────────────────────────
       PAGE TEMPLATE
    ───────────────────────────────────────────── */
    .page .single-post__container {
      padding-top: var(--space-5xl);
      padding-bottom: var(--space-5xl);
    }

    .page__article {
      max-width: var(--container-narrow);
      margin: 0 auto;
    }

    .page__article .single-post__header {
      text-align: left;
      padding-bottom: var(--space-xl);
      margin-bottom: var(--space-2xl);
      border-bottom: 2px solid var(--border);
    }

    .page__article .single-post__title {
      font-size: var(--text-4xl);
      letter-spacing: -0.02em;
    }

    .single-post__featured-image-wrapper {
      margin-bottom: var(--space-2xl);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .single-post__featured-image {
      width: 100%;
      height: auto;
      display: block;
    }

/* ─────────────────────────────────────────────
       404 PAGE
    ───────────────────────────────────────────── */
    .not-found {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      padding: var(--space-4xl) var(--space-lg);
      text-align: center;
    }

    .not-found__content {
      max-width: 480px;
    }

    .not-found__code {
      font-size: 8rem;
      font-weight: 900;
      line-height: 1;
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: var(--space-lg);
    }

    .not-found__title {
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--apex-navy);
      margin: 0 0 var(--space-md);
    }

    .not-found__desc {
      font-size: var(--text-base);
      color: var(--text-secondary);
      margin: 0 0 var(--space-xl);
      line-height: 1.7;
    }

/* ── TOC (Table of Contents) ─────────────────── */
    .toc-container {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      margin: var(--space-xl) 0 var(--space-2xl);
      overflow: hidden;
    }

    .toc-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: var(--space-md) var(--space-lg);
      cursor: pointer;
      user-select: none;
      color: var(--apex-navy);
      font-weight: 600;
      font-size: var(--text-sm);
      transition: background 0.2s ease;
    }

    .toc-toggle:hover {
      background: var(--bg-surface);
    }

    .toc-toggle svg {
      color: var(--accent-teal);
      flex-shrink: 0;
    }

    .toc-toggle::after {
      content: '';
      margin-left: auto;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid var(--text-muted);
      transition: transform 0.25s ease;
    }

    .toc-toggle[aria-expanded="true"]::after {
      transform: rotate(180deg);
    }

    .toc-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .toc-nav--open {
      max-height: 600px;
    }

    .toc-list {
      list-style: none;
      margin: 0;
      padding: 0 0 var(--space-md);
    }

    .toc-item {
      margin: 0;
    }

    .toc-item a {
      display: block;
      padding: 8px var(--space-lg) 8px calc(var(--space-lg) + 12px);
      color: var(--text-secondary);
      text-decoration: none;
      font-size: var(--text-sm);
      line-height: 1.5;
      border-left: 3px solid transparent;
      transition: all 0.2s ease;
    }

    .toc-item a:hover {
      color: var(--accent-teal);
      background: var(--accent-teal-dim);
      border-left-color: var(--accent-teal);
    }

    .toc-item--sub a {
      padding-left: calc(var(--space-lg) + 28px);
      font-size: var(--text-xs);
      color: var(--text-muted);
    }

    .toc-item--sub a:hover {
      color: var(--accent-teal);
    }

/* ── Animate Fade In ────────────────────────── */
    .animate-fade-in {
      animation: fadeInUp 0.5s ease forwards;
    }

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

/* ─────────────────────────────────────────────
       PAGE HERO — SHARED
    ───────────────────────────────────────────── */
    .page-hero {
      position: relative;
      padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
      background: var(--gradient-hero);
      overflow: hidden;
    }

    .page-hero__container {
      position: relative;
      z-index: 2;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .page-hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: var(--accent-teal-dim);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-pill);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      width: fit-content;
    }

    .page-hero__eyebrow-dot {
      width: 6px;
      height: 6px;
      background: var(--accent-teal);
      border-radius: 50%;
    }

    .page-hero__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--accent-primary);
    }

    .page-hero__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 560px;
    }

/* ─────────────────────────────────────────────
       CONTENT SECTION — SHARED
    ───────────────────────────────────────────── */
    .content-section {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--bg-white);
      overflow: hidden;
    }

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

    .content-section__container {
      max-width: var(--container-narrow);
      margin: 0 auto;
      padding: 0 var(--space-lg);
    }

    .content-section__container--wide {
      max-width: var(--container);
    }

    .content-section h2 {
      font-size: clamp(1.5rem, 2vw, 1.875rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--accent-primary);
      margin-top: var(--space-3xl);
      margin-bottom: var(--space-lg);
    }

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

    .content-section p {
      font-size: var(--text-base);
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    .content-section ul {
      margin-bottom: var(--space-md);
      padding-left: var(--space-lg);
    }

    .content-section ul li {
      font-size: var(--text-base);
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-sm);
      list-style: disc;
    }

    .content-section strong {
      color: var(--text-primary);
      font-weight: 600;
    }

/* ── Values Grid ────────────────────────────── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
      margin-top: var(--space-xl);
      margin-bottom: var(--space-md);
    }

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

    .value-card:hover {
      background: var(--bg-white);
      border-color: var(--border-accent);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .value-card__icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-teal-dim);
      border-radius: var(--radius-md);
      color: var(--accent-teal);
      margin-bottom: var(--space-md);
    }

    .value-card__title {
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--accent-primary);
      margin-bottom: var(--space-sm);
    }

    .value-card__desc {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      line-height: 1.7;
    }

/* ── Cases Grid ────────────────────────────── */
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
      margin-top: var(--space-xl);
      margin-bottom: var(--space-md);
    }

    .case-card {
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
      padding: var(--space-xl);
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      transition: all var(--transition);
    }

    .case-card:hover {
      border-color: var(--border-accent);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .case-card__category {
      display: inline-flex;
      align-self: flex-start;
      padding: 6px 14px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      color: var(--accent-teal);
      background: var(--accent-teal-dim);
      border-radius: 100px;
    }

    .case-card__title {
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--accent-primary);
      line-height: 1.4;
    }

    .case-card__desc {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      line-height: 1.7;
      flex: 1;
    }

    .case-card__result {
      display: flex;
      gap: var(--space-xl);
      padding-top: var(--space-md);
      border-top: 1px solid var(--border);
    }

    .case-card__result-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .case-card__result-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent-teal);
      line-height: 1.2;
    }

    .case-card__result-label {
      font-size: 0.8rem;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }

/* ── Stats Section ──────────────────────────── */
    .stats-section {
      position: relative;
      padding: var(--space-5xl) 0;
      background: var(--accent-primary);
      overflow: hidden;
    }

    .stats-section__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .stats-section__bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    }

    .stats-section__glow {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      filter: blur(120px);
    }

    .stats-section__glow--teal {
      background: rgba(0, 201, 167, 0.12);
      top: -150px;
      right: -100px;
    }

    .stats-section__glow--lilac {
      background: rgba(155, 77, 202, 0.08);
      bottom: -150px;
      left: -100px;
    }

    .stats-section__container {
      position: relative;
      z-index: 2;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
      text-align: center;
    }

    .stats-section__header {
      max-width: 640px;
      margin: 0 auto var(--space-4xl);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-lg);
    }

    .stats-section__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--accent-teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .stats-section__eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-teal);
      border-radius: 50%;
    }

    .stats-section__title {
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--text-on-dark);
    }

    .stats-section__subtitle {
      font-size: var(--text-lg);
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.75;
    }

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

    .stat-card {
      padding: var(--space-2xl) var(--space-lg);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-xl);
      transition: all var(--transition-slow);
    }

    .stat-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(0, 201, 167, 0.3);
      transform: translateY(-4px);
    }

    .stat-card__value {
      font-size: clamp(2rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--accent-teal);
      margin-bottom: var(--space-sm);
      line-height: 1;
    }

    .stat-card__label {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.5;
    }

/* ── CTA Section — SHARED ───────────────────── */
    .cta-section {
      position: relative;
      padding: var(--space-4xl) 0;
      background: var(--bg-base);
      overflow: hidden;
    }

    .cta-section__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .cta-section__glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
    }

    .cta-section__glow--teal {
      width: 500px;
      height: 500px;
      background: rgba(0, 201, 167, 0.08);
      top: -150px;
      left: 50%;
      transform: translateX(-50%);
    }

    .cta-section__container {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 0 auto;
      padding: 0 var(--space-lg);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-xl);
    }

    .cta-section__title {
      font-size: clamp(1.5rem, 2vw, 2rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--accent-primary);
    }

    .cta-section__subtitle {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      line-height: 1.75;
    }

    .cta-section__divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
      border-radius: 2px;
    }

    .cta-section__btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 36px;
      background: var(--accent-primary);
      color: var(--text-on-dark);
      font-size: var(--text-lg);
      font-weight: 600;
      border-radius: var(--radius-md);
      transition: all var(--transition);
      box-shadow: 0 4px 20px rgba(26, 39, 68, 0.25);
      text-decoration: none;
    }

    .cta-section__btn:hover {
      background: #243352;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(26, 39, 68, 0.3);
    }

    .cta-section__trust {
      display: flex;
      align-items: center;
      gap: var(--space-xl);
      margin-top: var(--space-sm);
    }

    .cta-section__trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: var(--text-sm);
      color: var(--text-muted);
    }

    .cta-section__trust-icon {
      color: var(--accent-teal);
    }

/* ─────────────────────────────────────────────
       RESPONSIVE — INTERNAL PAGES
    ───────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .blog-layout__inner {
        grid-template-columns: 1fr;
      }

      .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
      }
    }

    @media (max-width: 768px) {
      .posts-grid {
        grid-template-columns: 1fr;
      }

      .single-post__container {
        padding: var(--space-4xl) var(--space-md) var(--space-3xl);
      }

      .single-post__title {
        font-size: var(--text-3xl);
      }

      .single-post__meta {
        flex-direction: column;
        gap: var(--space-sm);
      }

      .single-post__meta-divider {
        display: none;
      }

      .post-navigation {
        grid-template-columns: 1fr;
      }

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

      .post-card--featured .post-card__image-wrapper {
        aspect-ratio: 16 / 9;
      }

      .toc-toggle {
        padding: var(--space-md);
        font-size: var(--text-xs);
      }

      .toc-item a {
        padding: 6px var(--space-md) 6px calc(var(--space-md) + 10px);
        font-size: var(--text-xs);
      }

      .toc-item--sub a {
        padding-left: calc(var(--space-md) + 22px);
      }

      .values-grid,
      .cases-grid {
        grid-template-columns: 1fr;
      }

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

      .stats-section {
        padding: var(--space-4xl) 0;
      }

      .content-section {
        padding: var(--space-4xl) 0;
      }

      .cta-section__trust {
        flex-direction: column;
        gap: var(--space-sm);
      }
    }

    @media (max-width: 480px) {
      .single-post__title {
        font-size: var(--text-2xl);
      }

      .cta-inline {
        padding: var(--space-xl);
      }

      .cta-inline__title {
        font-size: var(--text-lg);
      }

      .not-found__code {
        font-size: 5rem;
      }
    }
