/* ================================================================
   JudFácil — Landing Page Stylesheet v2.0
   Modern · Clean · Professional
   ================================================================ */

/* ----------------------------------------------------------------
   VARIABLES
   ---------------------------------------------------------------- */
:root {
  --grad-brand:    linear-gradient(135deg, #FF4E50 0%, #FC913A 55%, #F9D423 100%);
  --grad-btn:      linear-gradient(135deg, #FF4E50 0%, #FC913A 100%);
  --grad-btn-dark: linear-gradient(135deg, #e03e40 0%, #e07d2a 100%);

  --red:    #FF4E50;
  --orange: #FC913A;
  --yellow: #F9D423;
  --pink:   #FF2D6B;
  --navy:   #1A1F3C;
  --green:  #10B981;
  --blue:   #3B82F6;
  --purple: #8B5CF6;

  --white:  #FFFFFF;
  --g50:    #F9FAFB;
  --g100:   #F3F4F6;
  --g200:   #E5E7EB;
  --g300:   #D1D5DB;
  --g400:   #9CA3AF;
  --g500:   #6B7280;
  --g600:   #4B5563;
  --g700:   #374151;
  --g800:   #1F2937;
  --g900:   #111827;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --sh-xs:  0 1px 2px rgba(0,0,0,.05);
  --sh-sm:  0 2px 8px rgba(0,0,0,.06);
  --sh-md:  0 4px 20px rgba(0,0,0,.08);
  --sh-lg:  0 8px 40px rgba(0,0,0,.10);
  --sh-xl:  0 20px 60px rgba(0,0,0,.12);
  --sh-brand: 0 8px 32px rgba(252,145,58,.35);

  --header-h: 72px;
  --ease: cubic-bezier(.4,0,.2,1);
  --tr: all .26s var(--ease);
  --tr-slow: all .5s var(--ease);
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--g800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--g100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ================================================================
   UTILITIES
   ================================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padded { padding: 100px 0; }
.bg-light { background: var(--g50); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }
.bg-gradient-soft { background: linear-gradient(160deg, #F9FAFB 0%, #fff 100%); }
.mt-52 { margin-top: 52px; }

/* Section header */
.section-header { text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  color: var(--navy); line-height: 1.2; letter-spacing: -.02em;
}
.section-title.white { color: var(--white); }
.section-title em.highlight {
  font-style: normal;
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 1.05rem; color: var(--g500); line-height: 1.75;
  max-width: 560px; margin: 14px auto 0;
}
.section-desc.muted { color: rgba(255,255,255,.55); }

/* Section tags */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 5px 14px;
  border-radius: var(--r-full); margin-bottom: 16px; border: 1px solid transparent;
}
.tag-red    { background: rgba(239,68,68,.10);   border-color: rgba(239,68,68,.25);   color: #ef4444; }
.tag-orange { background: rgba(252,145,58,.10);  border-color: rgba(252,145,58,.25);  color: var(--orange); }
.tag-green  { background: rgba(16,185,129,.10);  border-color: rgba(16,185,129,.25);  color: var(--green); }
.tag-invest { background: rgba(252,145,58,.15);  border-color: rgba(252,145,58,.30);  color: var(--orange); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 700; transition: var(--tr);
  white-space: nowrap; cursor: pointer; border: 2px solid transparent;
  font-family: inherit; text-decoration: none;
}
.btn-primary {
  background: var(--grad-btn); color: #fff;
  box-shadow: var(--sh-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(252,145,58,.45); filter: brightness(1.05); }
.btn-ghost {
  background: transparent; color: var(--g700);
  border-color: var(--g200);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: rgba(252,145,58,.05); }
.btn-outline { background: transparent; border-color: var(--g200); color: var(--g700); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-white { background: var(--white); color: var(--orange); font-weight: 800; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.20); }
.btn-cta-outline { background: transparent; border: 2px solid rgba(255,255,255,.7); color: var(--white); }
.btn-cta-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }
.btn-sm  { padding: 9px 20px; font-size: .82rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; border-radius: var(--r-md); }
.btn-full { width: 100%; }
.btn-spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite; display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Text gradient util */
.text-gradient {
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.white-text { color: var(--white); }

/* Cards grid */
.cards-grid { display: grid; gap: 24px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
[style*="--delay"] { transition-delay: var(--delay); }

/* ================================================================
   SCROLL PROGRESS BAR
   ================================================================ */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-brand); z-index: 9999;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(252,145,58,.5);
}

/* ================================================================
   HEADER
   ================================================================ */
#siteHeader {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  background: rgba(255,255,255,.97); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent; z-index: 800;
  transition: var(--tr);
}
#siteHeader.scrolled {
  border-bottom-color: var(--g200);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

.header-inner {
  height: var(--header-h); display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

/* Logo — header (imagem real) */
.logo-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.header-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity .2s ease;
}
.header-logo-img:hover { opacity: .88; }

/* Logo — footer (imagem real) */
.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Fallback (quando a imagem não carrega) */
.logo-fallback { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--grad-btn);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: .85rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(252,145,58,.35);
}
.logo-text { font-size: 1.45rem; font-weight: 900; letter-spacing: -.02em; display: flex; }
.logo-jud  { color: var(--navy); }
.logo-facil { color: var(--pink); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 13px; font-size: .875rem; font-weight: 500;
  color: var(--g600); border-radius: var(--r-sm); transition: var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: rgba(252,145,58,.07); }
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px; cursor: pointer;
}
.hamburger span { display: block; height: 2px; background: var(--g700); border-radius: 2px; transition: var(--tr); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--g200);
  padding: 20px 24px; flex-direction: column; gap: 8px;
  z-index: 799; box-shadow: var(--sh-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; font-weight: 500; color: var(--g700);
  border-radius: var(--r-sm); font-size: .95rem; transition: var(--tr);
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav a:hover { background: var(--g100); color: var(--orange); }
.mobile-nav-sep { height: 1px; background: var(--g200); margin: 4px 0 8px; }

/* ================================================================
   HERO
   ================================================================ */
#hero {
  min-height: 100vh; padding-top: var(--header-h);
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #fff 0%, #FFF8F3 45%, #fffdf9 100%);
  display: flex; align-items: center;
}

.hero-bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(252,145,58,.09) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(255,78,80,.06) 0%, transparent 70%);
  bottom: 0; left: -120px;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate(0,0); }
  to   { transform: translate(20px,-30px); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 90px 0 110px; position: relative; z-index: 1;
}

/* Hero Left */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(255,78,80,.07), rgba(252,145,58,.07));
  border: 1px solid rgba(252,145,58,.22); border-radius: var(--r-full);
  padding: 6px 16px 6px 10px; font-size: .8rem; font-weight: 600;
  color: var(--orange); margin-bottom: 24px;
}
.badge-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(252,145,58,.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(252,145,58,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(252,145,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(252,145,58,0); }
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 900;
  color: var(--navy); line-height: 1.12;
  letter-spacing: -.03em; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem; color: var(--g500); line-height: 1.75;
  margin-bottom: 36px; max-width: 490px;
}
.hero-sub strong { color: var(--navy); font-weight: 700; }

/* Signup card */
.signup-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--sh-xl); position: relative; overflow: hidden;
}
.signup-card-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-btn);
}
.signup-card-head { margin-bottom: 22px; }
.signup-card-head h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.signup-card-head p { font-size: .82rem; color: var(--g400); }

/* Form */
.fgroup { margin-bottom: 14px; }
.flabel { display: block; font-size: .78rem; font-weight: 600; color: var(--g700); margin-bottom: 6px; }
.flabel .req { color: var(--red); }
.finput-wrap { position: relative; }
.finput-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--g400); font-size: .82rem; pointer-events: none;
}
.finput {
  width: 100%; padding: 11px 14px 11px 38px;
  background: var(--g50); border: 1.5px solid var(--g200);
  border-radius: var(--r-sm); font-family: inherit;
  font-size: .875rem; color: var(--g800);
  transition: var(--tr); outline: none;
}
.finput:focus { border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(252,145,58,.12); }
.finput::placeholder { color: var(--g400); }
.finput.error { border-color: #ef4444; }
.fselect {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239CA3AF'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.ferror { font-size: .73rem; color: #ef4444; margin-top: 4px; display: block; min-height: 14px; }
.form-fine {
  font-size: .75rem; color: var(--g400); text-align: center;
  margin-top: 12px; line-height: 1.5;
}
.form-fine a { color: var(--orange); font-weight: 600; cursor: pointer; }

/* Social Proof */
.social-proof { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 700; color: #fff;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.proof-label { font-size: .82rem; color: var(--g500); }
.proof-label strong { color: var(--navy); }

/* Hero Right */
.hero-right { position: relative; }
.hero-img-frame {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-xl);
}
.hero-img-frame img {
  width: 100%; height: 580px; object-fit: cover; display: block;
}
.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,31,60,.3) 100%);
}

/* Hero badge icon */
.badge-fa-icon {
  font-size: .85rem; color: var(--orange); flex-shrink: 0;
}

/* Floating badges */
.float-badge {
  position: absolute; background: var(--white);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 10px;
  animation: floatAnim 3.5s ease-in-out infinite alternate;
}
.badge-top { top: 36px; right: -28px; animation-delay: 0s; }
.badge-bottom { bottom: 36px; left: -28px; animation-delay: 1.5s; }
.badge-mid { top: 50%; right: -28px; transform: translateY(-50%); animation-delay: .8s; }
@keyframes floatAnim {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.badge-mid { animation: floatAnimMid 3.5s ease-in-out infinite alternate; }
@keyframes floatAnimMid {
  from { transform: translateY(-50%); }
  to   { transform: translateY(calc(-50% - 10px)); }
}
.fbadge-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fbadge-icon i { font-size: 1rem; }
.fbadge-title { font-size: .8rem; font-weight: 700; color: var(--navy); }
.fbadge-sub   { font-size: .7rem; color: var(--g400); }

/* ================================================================
   STATS BAR
   ================================================================ */
#stats { background: var(--navy); padding: 40px 0; }
.stats-grid {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; padding: 0 20px; }
.stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.stat-num {
  display: block; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 6px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stat-num.visible { opacity: 1; transform: translateY(0); }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* ================================================================
   PROBLEM CARDS
   ================================================================ */
.prob-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: var(--tr); position: relative; overflow: hidden;
}
.prob-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--orange); }
.prob-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-btn); transform: scaleX(0);
  transition: var(--tr); transform-origin: left;
}
.prob-card:hover::after { transform: scaleX(1); }
.prob-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.prob-icon i { font-size: 1.35rem; }
.prob-icon--red    { background: rgba(239,68,68,.10); }
.prob-icon--red    i { color: #ef4444; }
.prob-icon--yellow { background: rgba(245,158,11,.10); }
.prob-icon--yellow i { color: #f59e0b; }
.prob-icon--purple { background: rgba(139,92,246,.10); }
.prob-icon--purple i { color: #8b5cf6; }
.prob-icon--blue   { background: rgba(59,130,246,.10); }
.prob-icon--blue   i { color: #3b82f6; }
.prob-icon--green  { background: rgba(16,185,129,.10); }
.prob-icon--green  i { color: #10b981; }
.prob-icon--orange { background: rgba(252,145,58,.10); }
.prob-icon--orange i { color: #FC913A; }
.prob-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.prob-card p  { font-size: .875rem; color: var(--g500); line-height: 1.7; }

/* ================================================================
   SOLUTION CARDS
   ================================================================ */
.sol-card {
  background: var(--g50); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: var(--tr);
}
.sol-card:hover { background: var(--white); box-shadow: var(--sh-lg); border-color: var(--orange); transform: translateY(-4px); }
.sol-icon {
  width: 56px; height: 56px; background: var(--grad-btn);
  border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(252,145,58,.35);
}
.sol-icon i { font-size: 1.35rem; color: #fff; }
.sol-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sol-card p  { font-size: .875rem; color: var(--g500); line-height: 1.7; }

/* ================================================================
   HOW IT WORKS (STEPS)
   ================================================================ */
.steps-wrap { position: relative; }
.steps-line {
  position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--grad-btn); opacity: .18; z-index: 0;
}
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; z-index: 1; }
.step-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.step-num-wrap { display: flex; align-items: center; justify-content: center; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(252,145,58,.2); transition: var(--tr);
}
.step-card:hover .step-circle { background: var(--grad-btn); box-shadow: var(--sh-brand); }
.step-circle span {
  font-size: 1.4rem; font-weight: 900;
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; transition: var(--tr);
}
.step-card:hover .step-circle span { -webkit-text-fill-color: #fff; background: none; color: #fff; }
.step-emoji {
  width: 52px; height: 52px; background: var(--grad-btn);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(252,145,58,.30);
}
.step-emoji i { font-size: 1.2rem; color: #fff; }
.step-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); }
.step-card p  { font-size: .82rem; color: var(--g500); line-height: 1.6; }

/* ================================================================
   REVENUE / INVESTIDORES
   ================================================================ */
.revenue-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* Pillars */
.pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.pillar {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md); padding: 16px 20px; transition: var(--tr);
}
.pillar:hover { background: rgba(255,255,255,.10); border-color: rgba(252,145,58,.4); transform: translateX(6px); }
.pillar-icon {
  width: 44px; height: 44px; background: var(--grad-btn);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(252,145,58,.3);
}
.pillar-icon i { font-size: 1.1rem; color: #fff; }
.pillar-body h5 { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.pillar-body p  { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* Chart card */
.revenue-right { display: flex; flex-direction: column; gap: 20px; }
.chart-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg); padding: 28px;
}
.chart-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 8px;
}
.chart-head span { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 600; }
.chart-tag {
  font-size: .72rem; padding: 3px 10px; border-radius: var(--r-full);
  background: rgba(252,145,58,.2); color: var(--orange); font-weight: 700;
}

/* KPIs */
.rev-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rev-kpi {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: 16px; transition: var(--tr);
}
.rev-kpi:hover { background: rgba(255,255,255,.10); }
.kpi-val {
  font-size: 1.35rem; font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.kpi-lbl { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 4px; }

/* ================================================================
   TRUST / SECURITY
   ================================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; padding: 32px 20px; background: var(--g50);
  border: 1px solid var(--g200); border-radius: var(--r-lg); transition: var(--tr);
}
.trust-card:hover { background: var(--white); box-shadow: var(--sh-lg); border-color: var(--orange); transform: translateY(-4px); }
.trust-icon {
  width: 60px; height: 60px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon i { font-size: 1.5rem; }
.trust-icon--orange { background: rgba(252,145,58,.10); }
.trust-icon--orange i { color: #FC913A; }
.trust-icon--blue   { background: rgba(59,130,246,.10); }
.trust-icon--blue   i { color: #3b82f6; }
.trust-icon--green  { background: rgba(16,185,129,.10); }
.trust-icon--green  i { color: #10b981; }
.trust-icon--purple { background: rgba(139,92,246,.10); }
.trust-icon--purple i { color: #8b5cf6; }
.trust-card h4 { font-size: .92rem; font-weight: 700; color: var(--navy); }
.trust-card p  { font-size: .8rem; color: var(--g500); line-height: 1.6; }

/* Profiles strip */
.profiles-section { margin-top: 72px; text-align: center; }
.profiles-title {
  font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800;
  color: var(--navy); margin-bottom: 36px; letter-spacing: -.02em;
}
.profiles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.profile-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 26px; display: flex;
  align-items: center; gap: 16px; transition: var(--tr); text-align: left;
}
.profile-card:hover { box-shadow: var(--sh-lg); border-color: var(--orange); transform: translateY(-2px); }
.profile-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.profile-avatar i { font-size: 1.25rem; color: #fff; }
.profile-body h5 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.profile-body p  { font-size: .78rem; color: var(--g400); line-height: 1.5; }
.profile-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; font-weight: 600; color: var(--green); margin-top: 8px;
}

/* ================================================================
   CTA FINAL
   ================================================================ */
#cta-final { padding: 100px 0; }
.cta-box {
  background: var(--grad-btn);
  border-radius: var(--r-xl); padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-orb-1 { width: 500px; height: 500px; background: rgba(255,255,255,.06); top: -200px; left: -100px; }
.cta-orb-2 { width: 400px; height: 400px; background: rgba(255,255,255,.05); bottom: -150px; right: -80px; }
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900;
  color: rgba(255,255,255,.75); line-height: 1.2;
  letter-spacing: -.02em; margin-bottom: 18px;
}
.cta-content h2 .white-text { color: var(--white); }
.cta-content p {
  font-size: 1.05rem; color: rgba(255,255,255,.80);
  margin-bottom: 36px; line-height: 1.7;
}
.cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 24px;
}
.cta-checks {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.75);
}
.cta-checks li { display: flex; align-items: center; gap: 6px; }
.cta-checks i { font-size: .75rem; color: rgba(255,255,255,.9); }

/* ================================================================
   FOOTER
   ================================================================ */
#site-footer { background: var(--g900); padding: 60px 0 32px; }

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-brand p {
  font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.7;
  max-width: 280px; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: .85rem; transition: var(--tr);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-col h6 {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: rgba(255,255,255,.55); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem; color: rgba(255,255,255,.38);
  transition: var(--tr); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a i { font-size: .62rem; opacity: .5; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.28); }
.footer-bottom strong { color: var(--orange); }
.footer-url { color: rgba(255,255,255,.22); }
.footer-links { display: flex; align-items: center; gap: 14px; }
.footer-links a {
  font-size: .8rem; color: rgba(255,255,255,.32);
  cursor: pointer; transition: var(--tr);
}
.footer-links a:hover { color: var(--orange); }
.footer-links span { color: rgba(255,255,255,.18); font-size: .7rem; }

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--g900); border-top: 1px solid rgba(255,255,255,.1);
  z-index: 8888; padding: 16px 24px;
  transform: translateY(120%);
  transition: transform .5s cubic-bezier(.34,1.2,.64,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,.25);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-text { display: flex; align-items: flex-start; gap: 14px; flex: 1; min-width: 260px; }
.cookie-emoji {
  width: 36px; height: 36px; background: var(--grad-btn);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.cookie-emoji i { color: #fff; font-size: 1rem; }
.cookie-text p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.cookie-text strong { color: rgba(255,255,255,.85); }
.cookie-text a { color: var(--orange); font-weight: 600; cursor: pointer; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--grad-btn); color: var(--white);
  padding: 9px 22px; border-radius: var(--r-sm);
  font-size: .82rem; font-weight: 700; border: none; cursor: pointer;
  transition: var(--tr); display: flex; align-items: center; gap: 6px;
}
.cookie-btn-accept:hover { filter: brightness(1.08); transform: translateY(-1px); }
.cookie-btn-decline {
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.5);
  padding: 9px 18px; border-radius: var(--r-sm);
  font-size: .82rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: var(--tr);
}
.cookie-btn-decline:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* ================================================================
   MODAL
   ================================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(17,24,39,.78); backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  z-index: 9000; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--r-xl);
  width: 100%; max-width: 680px; max-height: 85vh;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-xl);
  animation: modalIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalIn { from { opacity:0; transform: scale(.93) translateY(20px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px 18px; border-bottom: 1px solid var(--g200); flex-shrink: 0;
}
.modal-head h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.modal-x {
  width: 32px; height: 32px; background: var(--g100); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g500); font-size: .85rem; transition: var(--tr); cursor: pointer;
}
.modal-x:hover { background: var(--g200); color: var(--g800); }
.modal-body {
  padding: 22px 28px; overflow-y: auto; flex: 1;
  font-size: .875rem; color: var(--g600); line-height: 1.8;
}
.modal-body h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin: 18px 0 8px; }
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 10px; }
.modal-body ul { padding-left: 18px; margin-bottom: 10px; }
.modal-body ul li { margin-bottom: 5px; list-style: disc; }
.modal-foot {
  padding: 14px 28px; border-top: 1px solid var(--g200);
  display: flex; justify-content: flex-end; flex-shrink: 0;
}

/* ================================================================
   TOAST
   ================================================================ */
.toast-wrap {
  position: fixed; bottom: 88px; right: 24px;
  display: flex; flex-direction: column; gap: 10px; z-index: 9990;
  pointer-events: none;
}
.toast {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-md); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-lg); min-width: 280px; max-width: 340px;
  pointer-events: all; border-left: 4px solid transparent;
  animation: toastIn .3s var(--ease);
}
@keyframes toastIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
@keyframes toastOut { from { opacity:1; transform: translateX(0); } to { opacity:0; transform: translateX(20px); } }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .revenue-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-grid { padding: 80px 0 90px; }
  .cols-3 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-line { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 12px; }
  .stat-sep { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .section-padded { padding: 72px 0; }
  .cols-3 { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-inner { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .revenue-grid { gap: 40px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .rev-kpis { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-item { padding: 16px 10px; }
  .hero-title { font-size: 1.9rem; }
}
