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

:root {
  --navy:   #0A192F;
  --navy-l: #112240;
  --navy-ll:#172A45;
  --green:  #39FF14;
  --green-d:#2bd910;
  --white:  #FFFFFF;
  --gray:   #8892B0;
  --gray-l: #CCD6F6;
  --border: rgba(136,146,176,0.15);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,25,47,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon { font-size: 22px; }
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-nav-entrar {
  color: var(--gray-l) !important;
  border: 1px solid var(--border) !important;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px !important;
  font-weight: 600 !important;
}

.btn-nav-entrar:hover {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.btn-nav-demo {
  background: var(--green) !important;
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.btn-nav-demo:hover { background: var(--green-d) !important; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-l);
  border-radius: 2px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--navy);
  gap: 14px;
}

.nav-mobile-menu a {
  text-decoration: none;
  color: var(--gray);
  font-size: 15px;
  font-weight: 500;
}

.nav-mobile-menu .mobile-cta {
  color: var(--navy) !important;
  background: var(--green);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  text-align: center;
}

.nav-mobile-menu.open { display: flex; }

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* =====================
   BUTTONS
   ===================== */
.btn-cta-green {
  display: inline-block;
  background: var(--green);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(57,255,20,0.2);
  letter-spacing: 0.2px;
}

.btn-cta-green:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(57,255,20,0.35);
}

.btn-cta-green.large {
  padding: 16px 40px;
  font-size: 17px;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gray-l);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

/* =====================
   SECTION HELPERS
   ===================== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-tag.center { display: block; text-align: center; }

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 48px;
}

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

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { display: none; }
}

.hero-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.2);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-highlight { color: var(--green); }

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.proof-plus { font-size: 18px; color: var(--green); }

.proof-label {
  font-size: 12px;
  color: var(--gray);
}

.proof-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hv-card {
  background: var(--navy-l);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.hv-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--navy-ll);
  border-bottom: 1px solid var(--border);
}

.hv-dots { display: flex; gap: 6px; }
.hv-dots span { width: 11px; height: 11px; border-radius: 50%; }
.hv-dots span:nth-child(1) { background: #ff5f57; }
.hv-dots span:nth-child(2) { background: #febc2e; }
.hv-dots span:nth-child(3) { background: #28c840; }

.hv-title {
  flex: 1;
  font-size: 12px;
  color: var(--gray);
  margin-left: 8px;
}

.hv-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.hv-online {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}

.hv-body { padding: 20px; }

.hv-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.hv-stat {
  flex: 1;
  background: var(--navy-ll);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.hv-stat.accent { border-color: rgba(57,255,20,0.3); background: rgba(57,255,20,0.05); }

.hv-n {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hv-stat.accent .hv-n { color: var(--green); }

.hv-l {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
}

.hv-chart-label {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hv-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  margin-bottom: 16px;
}

.hv-bar {
  flex: 1;
  background: var(--navy-ll);
  border-radius: 4px 4px 0 0;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
}

.hv-bar.hi { background: rgba(57,255,20,0.15); border-color: rgba(57,255,20,0.4); }

.hv-bar span { font-size: 9px; color: var(--gray); position: absolute; bottom: -16px; }

.hv-alerts { display: flex; flex-direction: column; gap: 7px; margin-top: 20px; }

.hv-alert {
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 6px;
  border-left: 2px solid;
}

.hv-alert.warn { background: rgba(255,152,0,0.1); color: rgba(255,152,0,0.9); border-color: rgba(255,152,0,0.5); }
.hv-alert.ok { background: rgba(57,255,20,0.08); color: rgba(57,255,20,0.9); border-color: rgba(57,255,20,0.4); }

/* =====================
   IMPACTO
   ===================== */
.section-impacto {
  padding: 100px 0;
  background: var(--navy-l);
  border-top: 1px solid var(--border);
}

.impacto-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.impacto-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

.impacto-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

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

.impacto-item {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.impacto-item:hover {
  border-color: rgba(57,255,20,0.3);
  transform: translateY(-3px);
}

.impacto-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.impacto-item strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 8px; color: var(--gray-l); }
.impacto-item p { font-size: 13px; color: var(--gray); line-height: 1.6; margin: 0; }

/* =====================
   PROBLEMAS
   ===================== */
.section-problemas {
  padding: 100px 0;
  background: var(--navy);
}

.prob-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) { .prob-inner { grid-template-columns: 1fr; } }

.prob-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
  line-height: 1.2;
}

.prob-lista {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prob-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.prob-x {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(255,68,68,0.1);
  border: 1px solid rgba(255,68,68,0.3);
  color: #ff4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.prob-item strong { color: var(--gray-l); font-size: 15px; display: block; margin-bottom: 4px; }
.prob-item p { color: var(--gray); font-size: 14px; margin: 0; line-height: 1.6; }

.prob-cta-box {
  position: sticky;
  top: 80px;
}

.pcb-inner {
  background: var(--navy-l);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: 0 0 40px rgba(57,255,20,0.05);
}

.pcb-icon { font-size: 36px; margin-bottom: 16px; }

.pcb-inner h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
  line-height: 1.3;
}

.pcb-inner p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* =====================
   SOLUÇÃO
   ===================== */
.section-solucao {
  padding: 100px 0;
  background: var(--navy-l);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solucao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .solucao-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .solucao-grid { grid-template-columns: 1fr; } }

.sol-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.sol-card:hover {
  border-color: rgba(57,255,20,0.3);
  transform: translateY(-3px);
}

.sol-icon { font-size: 32px; margin-bottom: 16px; }

.sol-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-l);
}

.sol-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0; }

/* =====================
   DIFERENCIAIS
   ===================== */
.section-diferenciais {
  padding: 100px 0;
  background: var(--navy);
}

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

@media (max-width: 900px) { .dif-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .dif-grid { grid-template-columns: 1fr; } }

.dif-card {
  background: var(--navy-l);
  padding: 36px 28px;
  position: relative;
  transition: background 0.2s;
}

.dif-card:hover { background: var(--navy-ll); }

.dif-number {
  font-size: 42px;
  font-weight: 900;
  color: rgba(57,255,20,0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.dif-icon { font-size: 26px; margin-bottom: 14px; }

.dif-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-l);
  margin-bottom: 10px;
}

.dif-card p { font-size: 13px; color: var(--gray); line-height: 1.7; margin: 0; }

/* =====================
   FUNCIONALIDADES
   ===================== */
.section-funcionalidades {
  padding: 100px 0;
  background: var(--navy-l);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.func-blocos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .func-blocos { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .func-blocos { grid-template-columns: 1fr; } }

.func-bloco {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.func-bloco:hover { border-color: rgba(57,255,20,0.25); }

.fb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--navy-ll);
  border-bottom: 1px solid var(--border);
}

.fb-icon { font-size: 20px; }
.fb-titulo { font-size: 15px; font-weight: 700; color: var(--gray-l); }

.func-bloco ul {
  list-style: none;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.func-bloco ul li {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.func-bloco ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(57,255,20,0.5);
}

/* =====================
   AUTORIDADE
   ===================== */
.section-autoridade {
  padding: 80px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.autoridade-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.aut-quote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
}

.aut-aspas {
  font-size: 80px;
  color: var(--green);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 0.5;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.aut-detalhe {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================
   SEGURANÇA
   ===================== */
.section-seguranca {
  padding: 100px 0;
  background: var(--navy-l);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.seg-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s;
}

.seg-card:hover { border-color: rgba(57,255,20,0.2); }

.seg-icon { font-size: 36px; margin-bottom: 16px; }

.seg-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-l);
}

.seg-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0; }

/* =====================
   FORMULÁRIO
   ===================== */
.section-demo {
  padding: 100px 0;
  background: var(--navy);
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 900px) { .demo-inner { grid-template-columns: 1fr; } }

.demo-texto .section-tag { margin-bottom: 12px; }

.demo-texto h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.demo-desc {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.demo-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-l);
  font-weight: 500;
}

.di-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(57,255,20,0.6);
}

/* Form card */
.demo-form-wrap {
  background: var(--navy-l);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

@media (max-width: 540px) { .demo-form-wrap { padding: 24px 18px; } }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-l);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req { color: var(--green); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); opacity: 0.7; }

.form-group select option { background: var(--navy-l); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(57,255,20,0.5);
  box-shadow: 0 0 0 2px rgba(57,255,20,0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: rgba(255,68,68,0.6);
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.form-message.success {
  background: rgba(57,255,20,0.08);
  color: var(--green);
  border: 1px solid rgba(57,255,20,0.25);
}

.form-message.error {
  background: rgba(255,68,68,0.08);
  color: #ff6b6b;
  border: 1px solid rgba(255,68,68,0.25);
}

.btn-submit-green {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: var(--font);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  box-shadow: 0 0 20px rgba(57,255,20,0.2);
}

.btn-submit-green:hover:not(:disabled) {
  background: var(--green-d);
  box-shadow: 0 0 30px rgba(57,255,20,0.3);
}

.btn-submit-green:disabled { opacity: 0.5; cursor: not-allowed; }

.form-privacy { font-size: 12px; color: var(--gray); text-align: center; }

/* =====================
   CTA FINAL
   ===================== */
.section-cta-final {
  padding: 100px 0;
  background: var(--navy-l);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.cta-inner p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 36px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--navy-ll);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer .logo-text { color: var(--white); font-size: 18px; }
.footer .logo-icon { font-size: 20px; }

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fl-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}

.footer-links-group a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p { font-size: 13px; color: var(--gray); }
