/* ============================================================
   BIOHACKLAB — STYLES (Landio-inspired dark theme)
   ============================================================ */

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

:root {
  --bg:        #04070d;
  --bg-2:      #0b0e18;
  --bg-card:   #10131c;
  --text:      #d5dbe6;
  --text-dim:  rgba(184, 199, 217, 0.72);
  --border:    rgba(216, 231, 242, 0.07);
  --white:     #ffffff;
  --c-teal:    #21C9B9;
  --c-purple:  #957FDE;
  --c-blue:    #30ACE6;
  --c-teal-g:  rgba(33, 201, 185, 0.18);
  --c-purple-g:rgba(149, 127, 222, 0.18);
  --c-blue-g:  rgba(48, 172, 230, 0.18);
  --radius-card: 20px;
  --radius-pill: 100px;
  --max-w:     1200px;
  --px:        40px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  background: var(--bg);
}

em { font-style: normal; color: var(--c-teal); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── SECTION BADGE ──────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(33,201,185,0.2);
  background: rgba(33,201,185,0.05);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(33,201,185,0.7);
  width: fit-content;
}

.badge-pulse {
  display: inline-flex;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 10px var(--c-teal);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(33,201,185,0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(33,201,185,0); }
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 700px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 520px;
}

/* ─── GRID PATTERN (shared bg element) ───────────────────────── */
.section-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,201,185,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,201,185,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  width: fit-content;
  white-space: nowrap;
}
.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(16,19,28) 0%, rgba(216,231,242,0.07) 100%);
  z-index: 0;
}
.btn-glow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: radial-gradient(ellipse, rgba(33,201,185,0.5) 0%, transparent 70%);
}
.btn-glow span, .btn-glow svg { position: relative; z-index: 1; }
.btn-glow svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-glow:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-glow--sm { font-size: 14px; padding: 10px 20px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(216,231,242,0.18); }

.btn-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--c-teal);
  color: #04070d;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
}

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(8,9,10,0.75);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(4,7,13,0.95); }
.nav-inner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 var(--px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo .logo-white { height: 26px; width: auto; display: block; }
.nav-logo .logo-dark  { height: 26px; width: auto; display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}
.nav-links a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: var(--border); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 7px 7px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(rgb(16,19,28), rgba(216,231,242,0.07));
  border: 1px solid var(--border);
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.8; }
.nav-cta-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(33,201,185,0.15);
  border-radius: 6px;
}
.nav-cta-icon svg { width: 13px; height: 13px; color: var(--c-teal); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0s;
  pointer-events: auto;
}
.mobile-menu a { font-size: 22px; font-weight: 600; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--c-teal); }
.mobile-menu .btn-mobile-cta { font-size: 15px; color: #04070d; }
.mobile-menu .btn-mobile-cta:hover { color: #04070d; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px var(--px) 140px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,201,185,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,201,185,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(33,201,185,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(149,127,222,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 0%,  rgba(48,172,230,0.07) 0%, transparent 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 64% at 50% 50%, rgba(4,7,13,0) 0%, #04070d 80%);
  z-index: 2;
  pointer-events: none;
}

/* ─── HERO SHAPES (floating pills) ────────────────────────────── */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hs {
  position: absolute;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(2px);
}
/* Shape 1 — teal, left mid, large */
.hs-1 {
  width: 580px; height: 140px;
  left: -10%; top: 20%;
  background: linear-gradient(to right, rgba(33,201,185,0.12), transparent);
  border-color: rgba(33,201,185,0.22);
  animation: hsE1 2.4s 0.3s both cubic-bezier(0.23,0.86,0.39,0.96), hsF1 14s 2.7s ease-in-out infinite;
}
@keyframes hsE1 {
  from { opacity:0; transform: rotate(12deg) translateY(-150px); }
  to   { opacity:1; transform: rotate(12deg) translateY(0); }
}
@keyframes hsF1 {
  0%,100% { transform: rotate(12deg) translateY(0); }
  50%     { transform: rotate(12deg) translateY(14px); }
}
/* Shape 2 — purple, right lower */
.hs-2 {
  width: 480px; height: 120px;
  right: -5%; top: 68%;
  background: linear-gradient(to right, rgba(149,127,222,0.12), transparent);
  border-color: rgba(149,127,222,0.22);
  animation: hsE2 2.4s 0.5s both cubic-bezier(0.23,0.86,0.39,0.96), hsF2 16s 2.9s ease-in-out infinite;
}
@keyframes hsE2 {
  from { opacity:0; transform: rotate(-15deg) translateY(-150px); }
  to   { opacity:1; transform: rotate(-15deg) translateY(0); }
}
@keyframes hsF2 {
  0%,100% { transform: rotate(-15deg) translateY(0); }
  50%     { transform: rotate(-15deg) translateY(15px); }
}
/* Shape 3 — blue, left bottom */
.hs-3 {
  width: 300px; height: 80px;
  left: 5%; bottom: 10%;
  background: linear-gradient(to right, rgba(48,172,230,0.1), transparent);
  border-color: rgba(48,172,230,0.2);
  animation: hsE3 2.4s 0.4s both cubic-bezier(0.23,0.86,0.39,0.96), hsF3 12s 2.8s ease-in-out infinite;
}
@keyframes hsE3 {
  from { opacity:0; transform: rotate(-8deg) translateY(-150px); }
  to   { opacity:1; transform: rotate(-8deg) translateY(0); }
}
@keyframes hsF3 {
  0%,100% { transform: rotate(-8deg) translateY(0); }
  50%     { transform: rotate(-8deg) translateY(12px); }
}
/* Shape 4 — teal, right top */
.hs-4 {
  width: 200px; height: 60px;
  right: 18%; top: 12%;
  background: linear-gradient(to right, rgba(33,201,185,0.1), transparent);
  border-color: rgba(33,201,185,0.2);
  animation: hsE4 2.4s 0.6s both cubic-bezier(0.23,0.86,0.39,0.96), hsF4 10s 3s ease-in-out infinite;
}
@keyframes hsE4 {
  from { opacity:0; transform: rotate(20deg) translateY(-150px); }
  to   { opacity:1; transform: rotate(20deg) translateY(0); }
}
@keyframes hsF4 {
  0%,100% { transform: rotate(20deg) translateY(0); }
  50%     { transform: rotate(20deg) translateY(10px); }
}
/* Shape 5 — purple, left top small */
.hs-5 {
  width: 150px; height: 42px;
  left: 24%; top: 8%;
  background: linear-gradient(to right, rgba(149,127,222,0.1), transparent);
  border-color: rgba(149,127,222,0.2);
  animation: hsE5 2.4s 0.7s both cubic-bezier(0.23,0.86,0.39,0.96), hsF5 18s 3.1s ease-in-out infinite;
}
@keyframes hsE5 {
  from { opacity:0; transform: rotate(-25deg) translateY(-150px); }
  to   { opacity:1; transform: rotate(-25deg) translateY(0); }
}
@keyframes hsF5 {
  0%,100% { transform: rotate(-25deg) translateY(0); }
  50%     { transform: rotate(-25deg) translateY(8px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 860px;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: radial-gradient(99% 86% at 50% 50%, #d5dbe6 28%, #04070d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 680px;
  letter-spacing: -0.01em;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.hero-social a { opacity: 0.5; transition: opacity 0.2s; }
.hero-social a:hover { opacity: 1; }
.hero-social svg { width: 20px; height: 20px; color: var(--text); }
.social-sep { width: 1px; height: 20px; background: var(--border); }
.hero-scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.35;
  transition: opacity 0.2s;
  animation: bounce 2s infinite;
}
.hero-scroll-arrow:hover { opacity: 0.7; }
.hero-scroll-arrow svg { width: 24px; height: 24px; color: var(--text); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}

/* Hero divider — visible colored line + glow */
.hero-border-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  z-index: 4;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--c-blue) 15%,
    var(--c-teal) 50%,
    var(--c-purple) 85%,
    transparent 100%
  );
}
.hero-border-bottom::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 5%;
  right: 5%;
  height: 32px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(48,172,230,0.18) 15%,
    rgba(33,201,185,0.28) 50%,
    rgba(149,127,222,0.18) 85%,
    transparent
  );
  filter: blur(10px);
}

/* ─── ABOUT ───────────────────────────────────────────────────── */
.section-about {
  position: relative;
  padding: 100px var(--px);
  background: var(--bg);
  border-radius: 50px 50px 0 0;
  overflow: hidden;
}
.about-bg-shape {
  position: absolute;
  width: 793px; height: 499px;
  border-radius: 10px;
  background: radial-gradient(50% 50%, rgba(33,201,185,0.4) 0%, transparent 100%);
  opacity: 0.07;
  transform: rotate(-13deg);
  bottom: -249px; right: -100px;
  pointer-events: none;
}
.about-container {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(33,201,185,0.25);
  background: rgba(33,201,185,0.06);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(33,201,185,0.8);
  width: fit-content;
}
.about-badge svg { color: var(--c-teal); }
.about-author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.about-avatar-wrap {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-teal);
  flex-shrink: 0;
}
.about-avatar { width: 100%; height: 100%; object-fit: cover; }
.about-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text);
}
.about-stars { color: #f7d720; letter-spacing: 2px; }
.section-border-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(33,201,185,0.15) 0%, #04070d 100%);
}

/* ─── BENEFITS ────────────────────────────────────────────────── */
.section-benefits { padding: 100px var(--px); background: var(--bg); position: relative; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  position: relative;
  background: #060810;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: rgba(207,231,255,0.1) 0px 2px 1px 0px inset;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s;
}
.benefit-card:nth-child(1):hover { border-color: rgba(33,201,185,0.3);  transform: translateY(-4px); }
.benefit-card:nth-child(2):hover { border-color: rgba(149,127,222,0.3); transform: translateY(-4px); }
.benefit-card:nth-child(3):hover { border-color: rgba(48,172,230,0.3);  transform: translateY(-4px); }
/* Teal top glow on card 1 */
.benefit-card:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-teal), transparent);
}
.benefit-card:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-purple), transparent);
}
.benefit-card:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-blue), transparent);
}
.benefit-graphic {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 0 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.benefit-card.visible .benefit-img { opacity: 1; transform: translateY(0) scale(1); }
.benefit-card.visible .bi-1 { transition-delay: 0.15s; }
.benefit-card.visible .bi-2 { transition-delay: 0.1s; }
.benefit-card.visible .bi-3 { transition-delay: 0.12s; }
.bi-1 { object-position: center 90%; padding-top: 40px; }
.bi-3 { object-position: center 85%; padding-top: 32px; }
.benefit-body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
  text-align: center;
  align-items: center;
}
.benefit-body h3 { font-size: 18px; font-weight: 500; color: var(--white); letter-spacing: -0.01em; }
.benefit-body p  { font-size: 15px; color: var(--text-dim); line-height: 1.6; }
.card-light {
  position: absolute; top: 0; right: 0;
  width: 250px; height: 200px;
  background: radial-gradient(50% 50% at 90% 10%, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}

/* ─── SERVICES ────────────────────────────────────────────────── */
.section-services {
  padding: 100px var(--px);
  background: var(--bg);
  position: relative;
}
.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,201,185,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,201,185,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.services-list { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  border-left: 2px solid transparent;
  transition: border-color 0.25s, border-left-color 0.25s, background 0.25s;
}
.service-item:nth-child(1):hover { border-left-color: var(--c-teal);   border-color: rgba(33,201,185,0.15); }
.service-item:nth-child(2):hover { border-left-color: var(--c-purple); border-color: rgba(149,127,222,0.15); }
.service-item:nth-child(3):hover { border-left-color: var(--c-blue);   border-color: rgba(48,172,230,0.15); }
.service-item:nth-child(4):hover { border-left-color: var(--c-teal);   border-color: rgba(33,201,185,0.15); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 20px; height: 20px; color: var(--text-dim); }
.service-item:nth-child(1) .service-icon { background: rgba(33,201,185,0.06); border-color: rgba(33,201,185,0.2); }
.service-item:nth-child(1) .service-icon svg { color: var(--c-teal); }
.service-item:nth-child(2) .service-icon { background: rgba(149,127,222,0.06); border-color: rgba(149,127,222,0.2); }
.service-item:nth-child(2) .service-icon svg { color: var(--c-purple); }
.service-item:nth-child(3) .service-icon { background: rgba(48,172,230,0.06); border-color: rgba(48,172,230,0.2); }
.service-item:nth-child(3) .service-icon svg { color: var(--c-blue); }
.service-item:nth-child(4) .service-icon { background: rgba(33,201,185,0.06); border-color: rgba(33,201,185,0.2); }
.service-item:nth-child(4) .service-icon svg { color: var(--c-teal); }
.service-body h3 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.service-body p  { font-size: 14px; color: var(--text-dim); }
.service-tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(33,201,185,0.2);
  background: rgba(33,201,185,0.05);
  font-size: 12px; font-weight: 500;
  color: rgba(33,201,185,0.7);
  white-space: nowrap;
}

/* ─── PROCESS ─────────────────────────────────────────────────── */
.section-process { padding: 100px var(--px); background: var(--bg); }
.process-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 60px; }
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.step-number {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--c-teal);
  flex-shrink: 0; margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  flex: 1;
}
.step-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.process-step:nth-child(1) .step-tag { color: var(--c-teal);   border-color: rgba(33,201,185,0.3);  background: rgba(33,201,185,0.05); }
.process-step:nth-child(2) .step-tag { color: var(--c-blue);   border-color: rgba(48,172,230,0.3);  background: rgba(48,172,230,0.05); }
.process-step:nth-child(3) .step-tag { color: var(--c-purple); border-color: rgba(149,127,222,0.3); background: rgba(149,127,222,0.05); }
.process-step:nth-child(4) .step-tag { color: var(--c-teal);   border-color: rgba(33,201,185,0.3);  background: rgba(33,201,185,0.05); }
.step-text h3 { font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.step-text p  { font-size: 15px; color: var(--text-dim); line-height: 1.65; }
.step-card-graphic {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 140px; justify-content: center;
}
.scg-bar { height: 8px; border-radius: 4px; background: rgba(216,231,242,0.08); }
.scg-bar.w70 { width: 70%; }
.scg-bar.w50 { width: 50%; }
.scg-dot { width: 24px; height: 24px; border-radius: 50%; background: rgba(33,201,185,0.15); border: 2px solid var(--c-teal); margin-top: 4px; }
.scg-check { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dim); }
.scg-check.done { color: var(--text); }
.scg-tick {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 11px;
  flex-shrink: 0;
}
.scg-check.done .scg-tick { background: rgba(33,201,185,0.15); color: var(--c-teal); }
.scg-protocol-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-dim); }
.scg-protocol-item.active { color: var(--white); }
.scg-dot-sm { width: 8px; height: 8px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.scg-dot-sm.active { background: var(--c-purple); box-shadow: 0 0 8px rgba(149,127,222,0.6); }
.scg-line { height: 16px; border-left: 1px dashed rgba(33,201,185,0.2); margin-left: 3.5px; }
.scg-graph { width: 100%; height: 60px; }
.process-cta { text-align: center; }

/* ─── INTEGRATIONS ────────────────────────────────────────────── */
.section-integrations { padding: 100px var(--px); background: var(--bg); }
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.integration-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
  font-size: 13px; font-weight: 500;
  color: var(--text-dim);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  cursor: default;
}
.integration-card:hover { border-color: rgba(33,201,185,0.25); color: var(--white); background: rgba(33,201,185,0.04); }
.int-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.int-icon svg { width: 20px; height: 20px; color: var(--text-dim); }
.integration-card:nth-child(odd)  .int-icon svg { color: var(--c-teal); }
.integration-card:nth-child(even) .int-icon svg { color: var(--c-blue); }
.integration-card:hover .int-icon { border-color: rgba(33,201,185,0.3); background: rgba(33,201,185,0.08); }
.int-name { font-size: 14px; font-weight: 600; color: var(--white); }
.int-desc { font-size: 12px; color: var(--text-dim); line-height: 1.5; text-align: center; }

/* ─── TESTIMONIALS — INFINITE SCROLL ──────────────────────────── */
.section-testimonials { padding: 100px var(--px) 0; background: var(--bg); }

/* column scroll wrapper — clips the animation, matches container width */
.t-scroll-outer {
  position: relative;
  overflow: hidden;
  height: 540px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
/* fade edges */
.t-scroll-outer::before,
.t-scroll-outer::after {
  content: '';
  position: absolute;
  left: 0; right: 0; z-index: 2;
  pointer-events: none;
}
.t-scroll-outer::before {
  top: 0; height: 90px;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.t-scroll-outer::after {
  bottom: 0; height: 90px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.t-scroll-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
}
.t-col { overflow: hidden; }
.t-col-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: tScrollUp linear infinite;
}
.t-col:hover .t-col-inner { animation-play-state: paused; }
@keyframes tScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.25s;
  flex-shrink: 0;
}
.testimonial-card:hover { border-color: rgba(33,201,185,0.25); }
.t-stars { color: #f7d720; letter-spacing: 2px; font-size: 14px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text-dim); line-height: 1.65; flex: 1; font-style: normal;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(33,201,185,0.1);
  border: 1px solid rgba(33,201,185,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--c-teal);
  flex-shrink: 0;
}
.t-avatar::after { content: attr(data-initials); }
.t-info { display: flex; flex-direction: column; gap: 2px; }
.t-info strong { font-size: 14px; color: var(--white); font-weight: 600; }
.t-info span   { font-size: 12px; color: var(--text-dim); }

/* ─── PRICING ─────────────────────────────────────────────────── */
.section-pricing {
  padding: 100px var(--px);
  background: var(--bg);
  position: relative;
}
.section-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,201,185,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,201,185,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex; flex-direction: column; gap: 32px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s;
}
.price-card:hover { border-color: rgba(48,172,230,0.25); }
.price-card--featured {
  border-color: rgba(33,201,185,0.35);
  background: var(--bg-2);
}
.price-card--featured:hover { border-color: rgba(33,201,185,0.55); }
.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-teal), transparent);
}
.pc-popular {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(33,201,185,0.12);
  color: var(--c-teal);
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(33,201,185,0.3);
}
.pc-top { display: flex; flex-direction: column; gap: 10px; }
.pc-name { font-size: 13px; font-weight: 600; color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; }
.pc-price { display: flex; align-items: baseline; gap: 4px; }
.pc-currency { font-size: 20px; font-weight: 500; color: var(--text); }
.pc-amount   { font-size: 52px; font-weight: 600; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.pc-period   { font-size: 15px; color: var(--text-dim); }
.pc-desc     { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.pc-equiv    { font-size: 13px; color: var(--c-teal); font-weight: 500; }
.pc-features { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pc-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.pc-features li.off { color: var(--text-dim); opacity: 0.4; }
.check-icon, .x-icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-icon { background: rgba(48,172,230,0.12); }
.check-icon svg { width: 12px; height: 12px; color: var(--c-blue); }
.price-card--featured .check-icon { background: rgba(33,201,185,0.12); }
.price-card--featured .check-icon svg { color: var(--c-teal); }
.x-icon { background: var(--border); }
.x-icon svg { width: 12px; height: 12px; color: var(--text-dim); }
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}
.pc-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.pc-btn:hover { border-color: rgba(48,172,230,0.35); color: var(--white); }
.pc-btn--featured { background: var(--c-teal); color: #04070d; border-color: transparent; }
.pc-btn--featured:hover { opacity: 0.88; color: #04070d; border-color: transparent; }
.pc-btn--outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.22); color: var(--text-dim); }
.pc-btn--outline:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }
.pc-glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 40% at 50% 100%, rgba(33,201,185,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 40px; position: relative; z-index: 1;
  font-size: 14px; color: var(--text-dim);
}
.pricing-guarantee svg { color: var(--c-teal); flex-shrink: 0; }

/* ─── BLOG ────────────────────────────────────────────────────── */
.section-blog { padding: 100px var(--px); background: var(--bg); }
#blog .section-header h2 { white-space: nowrap; max-width: none; }
#depoimentos .section-header h2 { white-space: nowrap; max-width: none; }
#integracoes .section-header p { white-space: nowrap; max-width: none; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.blog-skeleton {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  height: 280px;
  position: relative; overflow: hidden;
}
.blog-skeleton::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color 0.25s, transform 0.25s;
}
.blog-card:hover { border-color: rgba(33,201,185,0.25); transform: translateY(-3px); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-date { font-size: 12px; color: var(--c-teal); font-weight: 500; }
.blog-card-body h3 { font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.4; }
.blog-card-body p  { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.blog-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 auto;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px; font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}
.blog-more-btn:hover { color: var(--c-teal); border-color: rgba(33,201,185,0.3); }
.blog-more-btn svg { width: 14px; height: 14px; }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.section-faq {
  padding: 100px var(--px);
  background: var(--bg);
  position: relative;
}
.section-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,201,185,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,201,185,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  position: relative; z-index: 1;
}
.faq-left {
  display: flex; flex-direction: column; gap: 20px;
  align-items: flex-start;
  position: sticky; top: 100px;
}
.faq-left h2 { font-size: clamp(28px,3vw,38px); font-weight: 500; letter-spacing: -0.02em; color: var(--text); }
.faq-left p  { font-size: 15px; color: var(--text-dim); }
.faq-contact {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--c-teal); font-weight: 500;
  transition: opacity 0.2s; width: fit-content;
}
.faq-contact svg { width: 14px; height: 14px; }
.faq-contact:hover { opacity: 0.75; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0;
  background: none; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--text);
  cursor: pointer; text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--c-teal); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-dim); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--c-teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 20px; font-size: 15px; color: var(--text-dim); line-height: 1.7; }

/* ─── CTA FINAL ───────────────────────────────────────────────── */
.section-cta-final { padding: 80px var(--px) 100px; background: var(--bg); }
.cta-final-inner {
  background: var(--bg-card);
  border: 1px solid rgba(33,201,185,0.15);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  position: relative; overflow: hidden;
  max-width: 860px; margin: 0 auto;
}
.cta-final-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-teal), transparent);
}
.cta-final-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; color: var(--white); letter-spacing: -0.02em; max-width: 640px;
}
.cta-final-inner p { font-size: 16px; color: var(--text-dim); max-width: 520px; }
.cta-bg-shape {
  position: absolute;
  width: 600px; height: 400px; border-radius: 10px;
  background: radial-gradient(50% 50%, rgba(33,201,185,0.15) 0%, transparent 100%);
  opacity: 0.3;
  transform: rotate(-13deg);
  bottom: -200px; right: -100px;
  pointer-events: none;
}

/* ─── ABOUT — two-column layout ──────────────────────────────── */
.about-lead {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.about-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
}
.about-attacks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.about-attacks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
}
.about-attacks li::before {
  content: '→';
  color: var(--c-teal);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ─── APRESENTANDO ────────────────────────────────────────────── */
.section-presenting { padding: 100px var(--px); }
.presenting-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.presenting-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.presenting-content p { font-size: 17px; color: var(--text-dim); line-height: 1.8; }
.presenting-image {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.presenting-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.presenting-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.presenting-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.presenting-list li::before {
  content: '';
  display: inline-block;
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(33,201,185,0.12);
  border: 1.5px solid var(--c-teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2321C9B9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── MÓDULOS ─────────────────────────────────────────────────── */
.section-modules { padding: 100px var(--px); background: var(--bg-2); position: relative; }
.section-modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(33,201,185,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,201,185,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.module-card:hover { border-color: rgba(33,201,185,0.25); transform: translateY(-3px); }
.module-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-teal);
  background: rgba(33,201,185,0.08);
  border: 1px solid rgba(33,201,185,0.2);
  border-radius: 6px;
  padding: 3px 10px;
  align-self: flex-start;
}
.module-card:nth-child(3n+2) .module-num { color: var(--c-purple); background: rgba(149,127,222,0.08); border-color: rgba(149,127,222,0.2); }
.module-card:nth-child(3n+0) .module-num { color: var(--c-blue);   background: rgba(48,172,230,0.08);  border-color: rgba(48,172,230,0.2); }
.module-card h3 { font-size: 17px; font-weight: 600; color: var(--white); line-height: 1.3; }
.module-card p  { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--bg); }
.footer-top { padding: 80px var(--px) 60px; border-bottom: 1px solid var(--border); }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.footer-brand {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-logo { height: 28px; width: auto; object-fit: contain; display: block; flex-shrink: 0; }
.footer-brand p { font-size: 15px; color: var(--text-dim); line-height: 1.7; max-width: 320px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col  { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.04em; margin-bottom: 4px; }
.footer-col a  { font-size: 14px; color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--c-teal); }
.footer-bottom { padding: 40px var(--px); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 24px; }
.footer-disclaimer { font-size: 13px; color: var(--text-dim); max-width: none; line-height: 1.6; }
.footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-dim);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ─── COOKIE BANNER ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 200;
  background: var(--bg-card);
  border-top: 1px solid rgba(33,201,185,0.15);
  padding: 20px 40px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  box-sizing: border-box;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text { flex: 1; min-width: 200px; }
.cookie-banner-text strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.cookie-banner-text p { font-size: 13px; color: var(--text-dim); }
.cookie-banner-text a { color: var(--c-teal); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions button {
  padding: 10px 20px; border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500; cursor: pointer;
  border: 1px solid var(--border);
  transition: opacity 0.2s;
}
.cookie-banner-actions button:first-child { background: none; color: var(--text-dim); }
.cookie-banner-actions button:last-child  { background: var(--c-teal); color: #04070d; border-color: transparent; }
.cookie-banner-actions button:hover { opacity: 0.85; }

/* ─── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-hero {
  padding: 140px var(--px) 60px;
  text-align: center;
  position: relative;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,201,185,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,201,185,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  position: relative;
}
.legal-hero p { font-size: 14px; color: var(--text-dim); margin-top: 10px; position: relative; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px var(--px) 100px;
}
.legal-content h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-content p { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--c-teal); }
.legal-content strong { color: var(--white); font-weight: 600; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1199px) {
  :root { --px: 32px; }
  .modules-grid       { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid      { grid-template-columns: 1fr 1fr; }
  .t-scroll-wrap      { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-top-inner   { grid-template-columns: 1fr; gap: 48px; }
  .step-row           { grid-template-columns: 1fr; gap: 24px; }
  .step-card-graphic  { display: none; }
  #blog .section-header h2 { white-space: normal; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .burger    { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .faq-layout   { grid-template-columns: 1fr; gap: 40px; }
  .faq-left     { position: static; }
  .hs-2, .hs-3, .hs-5 { display: none; }
}

@media (max-width: 809px) {
  :root { --px: 20px; }
  .about-body { grid-template-columns: 1fr; gap: 48px; }
  .about-attacks { width: 100%; }
  .presenting-layout { grid-template-columns: 1fr; gap: 40px; }
  .presenting-image { order: -1; padding: 16px; border-radius: 14px; }
  .presenting-image img { border-radius: 6px; }
  .about-author-info { justify-content: center; }
  .modules-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px var(--px) 80px; }
  .section-about, .section-benefits, .section-services, .section-process,
  .section-integrations, .section-testimonials, .section-pricing,
  .section-blog, .section-faq, .section-cta-final { padding: 72px var(--px); }
  .section-testimonials { padding-bottom: 0; }
  .benefits-grid     { grid-template-columns: 1fr; }
  .t-scroll-wrap     { grid-template-columns: 1fr; }
  .t-scroll-outer    { height: 480px; }
  .t-col:nth-child(2), .t-col:nth-child(3) { display: none; }
  .integrations-grid { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 44px 1fr; }
  .service-tag  { display: none; }
  .process-step { padding: 28px 20px; flex-direction: column; gap: 16px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bar  { flex-direction: column; align-items: flex-start; }
  #integracoes .section-header p { white-space: normal; }
  #depoimentos .section-header h2 { white-space: normal; }
  #blog .section-header h2 { white-space: normal; }
  .cta-final-inner { padding: 48px 28px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
  .hs-1, .hs-4 { transform: scale(0.6); transform-origin: left center; }
}
