/*
 * LeakIntel — custom.css
 * Enterprise Cybersecurity — CrowdStrike / Palo Alto / SentinelOne
 *
 * Padrão dos grandes players:
 * - Fundo quase preto com azul navy muito escuro
 * - Laranja como cor de ação primária
 * - Tipografia condensada e forte (DM Sans + Space Grotesk)
 * - Sem gradientes chamativos — premium vem da composição
 * - Branco frio, nunca branco puro
 */

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  --li-bg-deep:    #07070a;
  --li-bg-base:    #0a0a0f;
  --li-bg-surface: #0f0f18;
  --li-bg-raised:  #131320;
  --li-bg-card:    #0d0d16;

  --li-border:     rgba(255,255,255,.07);
  --li-border-md:  rgba(255,255,255,.11);
  --li-border-hi:  rgba(255,255,255,.18);

  /* Laranja — cor de ação (CrowdStrike DNA) */
  --li-orange:     #f97316;
  --li-orange-lt:  #fb923c;
  --li-orange-dk:  #c2410c;
  --li-orange-dim: rgba(249,115,22,.10);
  --li-orange-glow:rgba(249,115,22,.22);

  /* Azul navy — identidade de fundo e destaques */
  --li-navy:       #1e3a5f;
  --li-navy-lt:    #2563eb;
  --li-navy-dim:   rgba(37,99,235,.10);

  /* Texto */
  --li-text:       #8896a8;
  --li-text-muted: #2d3748;
  --li-text-head:  #e2e8f0;
  --li-text-sub:   #4a5568;

  /* Utility */
  --li-green:      #22c55e;
  --li-red:        #ef4444;
}

:root {
  --background-color:   var(--li-bg-base);
  --default-color:      var(--li-text);
  --heading-color:      var(--li-text-head);
  --accent-color:       var(--li-orange);
  --surface-color:      var(--li-bg-surface);
  --contrast-color:     #ffffff;
  --nav-color:          var(--li-text);
  --nav-hover-color:    var(--li-text-head);
  --nav-mobile-background-color:   var(--li-bg-surface);
  --nav-dropdown-background-color: var(--li-bg-surface);
  --nav-dropdown-color:            var(--li-text);
  --nav-dropdown-hover-color:      var(--li-text-head);
}

.light-background {
  --background-color: #0c0c14;
  --surface-color:    var(--li-bg-surface);
}

.dark-background {
  --background-color: var(--li-bg-deep);
  --default-color:    var(--li-text);
  --heading-color:    var(--li-text-head);
  --surface-color:    var(--li-bg-surface);
}

.accent-background {
  --background-color: #0e0a06;
  --default-color:    var(--li-text);
  --heading-color:    var(--li-text-head);
  --surface-color:    #14100a;
}

/* ============================================================
   2. BASE
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --default-font: "DM Sans", system-ui, sans-serif;
  --heading-font: "Space Grotesk", "DM Sans", sans-serif;
  --nav-font:     "DM Sans", sans-serif;
}

body {
  background-color: var(--li-bg-base);
  color: var(--li-text);
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Névoa de fundo — sutil, como Palo Alto */
body::before {
  content: '';
  position: fixed;
  top: 0; right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse at top right, rgba(30,58,95,.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--li-orange-lt); transition: color .18s; }
a:hover { color: var(--li-orange); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--li-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--li-orange-dk); border-radius: 3px; }

/* ============================================================
   3. HEADER
   ============================================================ */
.header {
  background: rgba(7,7,10,.90);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--li-border);
}

.scrolled .header {
  background: rgba(7,7,10,.97);
  border-bottom: 1px solid var(--li-border-md);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.header .logo img { max-height: 34px; }

.navmenu a,
.navmenu a:focus {
  font-family: "DM Sans", sans-serif;
  color: var(--li-text);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .18s;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--li-text-head);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: var(--li-orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .2s;
}

.header .btn-getstarted:hover {
  background: var(--li-orange-lt);
  color: #fff;
  box-shadow: 0 4px 20px var(--li-orange-glow);
}

/* ============================================================
   4. HERO
   ============================================================ */
.hero {
  background: var(--li-bg-deep);
  position: relative;
  overflow: hidden;
}

/* Linha de acento laranja no topo — assinatura CrowdStrike */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--li-orange) 30%, var(--li-orange-lt) 50%, var(--li-orange) 70%, transparent 100%);
  z-index: 2;
}

/* Fundo navy suave */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(30,58,95,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(249,115,22,.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero img { opacity: .03; mix-blend-mode: screen; }
.hero .container { position: relative; z-index: 2; }

.hero h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--li-text-head);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.hero h2 em {
  font-style: normal;
  color: var(--li-orange);
}

.hero p {
  color: var(--li-text-sub);
  font-size: .97rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* Feature boxes */
.hero .icon-box {
  background: var(--li-bg-card);
  border: 1px solid var(--li-border);
  border-radius: 8px;
  padding: 20px 16px;
  transition: border-color .22s, box-shadow .22s;
  text-align: left;
}

.hero .icon-box:hover {
  border-color: rgba(249,115,22,.25);
  box-shadow: 0 0 0 1px rgba(249,115,22,.08), 0 8px 28px rgba(0,0,0,.3);
  transform: none;
}

.hero .icon-box .icon {
  background: var(--li-orange-dim);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .icon-box .icon i { color: var(--li-orange); font-size: 1.15rem; }

.hero .icon-box .title {
  font-family: "Space Grotesk", sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--li-text-head);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.hero .icon-box .description { font-size: .79rem; color: var(--li-text-sub); line-height: 1.65; }

/* ============================================================
   5. SEARCH FORM
   ============================================================ */
.hero .sign-up-form {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--li-border-md);
  border-radius: 8px;
  padding: 5px 5px 5px 18px;
  display: inline-flex;
  gap: 8px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 0 0 1px rgba(249,115,22,.06);
}

.hero .sign-up-form input[type=email] {
  background: transparent;
  border: none;
  outline: none;
  color: var(--li-text-head);
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  flex: 1;
  min-width: 0;
  caret-color: var(--li-orange);
}

.hero .sign-up-form input[type=email]::placeholder {
  color: var(--li-text-muted);
  font-size: .87rem;
}

.hero .sign-up-form input[type=submit] {
  background: var(--li-orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
}

.hero .sign-up-form input[type=submit]:hover {
  background: var(--li-orange-lt);
  box-shadow: 0 4px 18px var(--li-orange-glow);
}

/* ============================================================
   6. SECTION TITLE
   ============================================================ */
.section-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--li-text-head);
  letter-spacing: -.03em;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: var(--li-orange);
  border-radius: 2px;
}

.section-title p {
  color: var(--li-text-sub);
  font-size: .9rem;
}

/* ============================================================
   7. STATS
   ============================================================ */
.stats {
  background: var(--li-bg-surface) !important;
  border-top: 1px solid var(--li-border);
  border-bottom: 1px solid var(--li-border);
}

.stats .stats-item {
  background: transparent;
  border: none;
  border-right: 1px solid var(--li-border);
  border-radius: 0;
  padding: 36px 28px;
}

.stats .stats-item:last-child { border-right: none; }

.stats .stats-item:hover { background: rgba(249,115,22,.03); }

.stats .stats-item span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--li-text-head);
  display: block;
  line-height: 1;
}

.stats .stats-item p {
  color: var(--li-text-sub);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 10px 0 0;
}

/* ============================================================
   8. ABOUT
   ============================================================ */
.about { background: var(--li-bg-base); }
.about ul i { color: var(--li-orange); }
.about ul li { color: var(--li-text); font-size: .9rem; }
.about-alt { background: var(--li-bg-base); }

.about-alt .content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--li-text-head);
  letter-spacing: -.02em;
}

.about-alt .content ul i { color: var(--li-orange); }

.about .read-more {
  background: transparent;
  border: 1px solid var(--li-border-md);
  color: var(--li-text);
  border-radius: 6px;
  padding: 9px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: .84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}

.about .read-more:hover {
  border-color: var(--li-orange);
  color: var(--li-orange);
}

/* ============================================================
   9. CALL-TO-ACTION
   ============================================================ */
.call-to-action {
  background: var(--li-bg-deep) !important;
  border-top: 1px solid var(--li-border);
  border-bottom: 1px solid var(--li-border);
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(249,115,22,.06) 0%, transparent 65%);
  pointer-events: none;
}

.call-to-action h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--li-text-head);
  letter-spacing: -.03em;
}

.call-to-action p { color: var(--li-text-sub); font-size: .92rem; }

.call-to-action .cta-btn {
  background: var(--li-orange);
  color: #fff;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s;
  display: inline-block;
}

.call-to-action .cta-btn:hover {
  background: var(--li-orange-lt);
  color: #fff;
  box-shadow: 0 4px 22px var(--li-orange-glow);
  transform: translateY(-1px);
}

.extension {
  max-height: 48px;
  border-radius: 6px;
  opacity: .85;
  transition: opacity .2s, transform .2s;
}

.extension:hover { opacity: 1; transform: scale(1.03); }

/* ============================================================
   10. PRICING
   ============================================================ */
.pricing { background: var(--li-bg-base); }

.pricing .pricing-item {
  background: var(--li-bg-card);
  border: 1px solid var(--li-border);
  border-radius: 10px;
  padding: 30px 24px;
  transition: border-color .22s, box-shadow .22s;
  height: 100%;
  position: relative;
}

.pricing .pricing-item:hover {
  border-color: var(--li-border-hi);
  box-shadow: 0 8px 36px rgba(0,0,0,.35);
}

.pricing h3 {
  font-family: "DM Sans", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--li-text-sub);
  margin-bottom: 16px;
}

.pricing h4 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--li-text-head);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

.pricing h4 sup {
  font-size: .9rem;
  color: var(--li-text-sub);
  top: -.8rem;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.pricing h4 span {
  font-size: .82rem;
  color: var(--li-text-sub);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
}

.pricing ul li {
  color: var(--li-text);
  font-size: .86rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--li-border);
}

.pricing ul li:last-child { border-bottom: none; }
.pricing ul li i.bi-check { color: var(--li-orange); }
.pricing ul li.na { opacity: .28; }

.pricing .buy-btn {
  background: transparent;
  border: 1px solid var(--li-border-md);
  color: var(--li-text);
  border-radius: 6px;
  padding: 10px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: .86rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-block;
}

.pricing .buy-btn:hover {
  border-color: var(--li-orange);
  color: var(--li-orange);
}

/* Card destaque */
.pricing .featured .pricing-item {
  background: #0e0b07;
  border: 1px solid rgba(249,115,22,.28);
  box-shadow: 0 0 0 1px rgba(249,115,22,.06);
}

.pricing .featured .pricing-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--li-orange);
  border-radius: 10px 10px 0 0;
}

.pricing .featured h3 { color: var(--li-orange); }
.pricing .featured h4 { color: var(--li-text-head); }
.pricing .featured ul li { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.07); }
.pricing .featured ul li.na { opacity: .22; }
.pricing .featured ul li i.bi-check { color: var(--li-orange-lt); }

.pricing .featured .buy-btn {
  background: var(--li-orange);
  border-color: var(--li-orange);
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: var(--li-orange-lt);
  border-color: var(--li-orange-lt);
  color: #fff;
  box-shadow: 0 4px 18px var(--li-orange-glow);
}

/* ============================================================
   11. FAQ
   ============================================================ */
.faq { background: var(--li-bg-surface) !important; }

.faq .faq-container .faq-item {
  background: var(--li-bg-card);
  border: 1px solid var(--li-border);
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 18px 20px;
  transition: all .2s;
}

.faq .faq-container .faq-item:hover,
.faq .faq-container .faq-active {
  border-color: rgba(249,115,22,.22) !important;
  background: var(--li-bg-raised) !important;
}

.faq .faq-container .faq-item h3 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--li-text);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.faq .faq-container .faq-item:hover h3 { color: var(--li-text-head); }
.faq .faq-container .faq-active h3 { color: var(--li-orange-lt); }

.faq .faq-container .faq-item .faq-content p {
  color: var(--li-text-sub);
  font-size: .86rem;
  line-height: 1.8;
}

.faq .faq-container .faq-item .faq-toggle { color: var(--li-text-sub); }
.faq .faq-container .faq-active .faq-toggle { color: var(--li-orange); }

/* ============================================================
   12. CONTACT
   ============================================================ */
.contact { background: var(--li-bg-base); }

.contact .info-item {
  background: var(--li-bg-card);
  border: 1px solid var(--li-border);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  transition: border-color .2s;
}

.contact .info-item:hover { border-color: rgba(249,115,22,.2); }
.contact .info-item i { color: var(--li-orange); font-size: 1.15rem; margin-right: 14px; flex-shrink: 0; margin-top: 2px; }

.contact .info-item h3 {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--li-text-sub);
  margin-bottom: 3px;
}

.contact .info-item p, .contact .info-item a { color: var(--li-text); font-size: .88rem; margin: 0; }
.contact .info-item a:hover { color: var(--li-orange-lt); }

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  background: var(--li-bg-card);
  border: 1px solid var(--li-border-md);
  border-radius: 8px;
  color: var(--li-text-head);
  font-family: "DM Sans", sans-serif;
  font-size: .88rem;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
  caret-color: var(--li-orange);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--li-orange);
  box-shadow: 0 0 0 3px var(--li-orange-dim);
  outline: none;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder { color: var(--li-text-muted); }

.contact .php-email-form button[type=submit] {
  background: var(--li-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: "DM Sans", sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--li-orange-lt);
  box-shadow: 0 4px 18px var(--li-orange-glow);
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--li-bg-deep) !important;
  border-top: 1px solid var(--li-border);
}

.footer .sitename {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--li-text-head);
  letter-spacing: -.02em;
}

.footer h4 {
  font-family: "DM Sans", sans-serif;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--li-text-sub);
  margin-bottom: 14px;
}

.footer .footer-links ul a { color: var(--li-text-sub); font-size: .86rem; transition: color .18s; }
.footer .footer-links ul a:hover { color: var(--li-text-head); }
.footer .footer-links ul i { color: var(--li-orange); }

.footer .social-links a {
  background: var(--li-bg-surface);
  border: 1px solid var(--li-border);
  color: var(--li-text-sub);
  border-radius: 6px;
  width: 34px;
  height: 34px;
  transition: all .2s;
}

.footer .social-links a:hover {
  border-color: var(--li-orange);
  color: var(--li-orange);
}

.footer .copyright { border-top: 1px solid var(--li-border); padding-top: 18px; margin-top: 18px; }
.footer .copyright p { color: var(--li-text-sub); font-size: .8rem; }

/* ============================================================
   14. PAGE-TITLE
   ============================================================ */
.page-title {
  background: var(--li-bg-deep) !important;
  border-bottom: 1px solid var(--li-border);
  padding: 28px 0;
}

.page-title h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--li-text-head);
  letter-spacing: -.02em;
}

.page-title .breadcrumbs ol a,
.page-title .breadcrumbs ol li { color: var(--li-text-sub); font-size: .82rem; }

/* ============================================================
   15. STARTER SECTION
   ============================================================ */
.starter-section { background: var(--li-bg-base); min-height: 70vh; display: flex; align-items: center; }

.starter-section .assinatura input,
.starter-section .assinatura select {
  background: var(--li-bg-card);
  border: 1px solid var(--li-border-md);
  border-radius: 8px;
  color: var(--li-text-head);
  font-family: "DM Sans", sans-serif;
  padding: 12px 14px;
  font-size: .88rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  caret-color: var(--li-orange);
}

.starter-section .assinatura input:focus,
.starter-section .assinatura select:focus {
  border-color: var(--li-orange);
  box-shadow: 0 0 0 3px var(--li-orange-dim);
  outline: none;
}

.starter-section .assinatura input::placeholder { color: var(--li-text-muted); }
.starter-section .assinatura select option { background: var(--li-bg-surface); color: var(--li-text); }

.starter-section .assinatura button[type=submit] {
  background: var(--li-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}

.starter-section .assinatura button[type=submit]:hover {
  background: var(--li-orange-lt);
  box-shadow: 0 4px 18px var(--li-orange-glow);
}

/* ============================================================
   16. RESULT PAGE
   ============================================================ */
.hero .email { color: var(--li-text-sub); font-size: .84rem; margin: 10px 0 22px; }
.hero .email strong { color: var(--li-orange-lt); font-weight: 600; }

.leak-wrapper { display: flex; justify-content: center; margin: 0 auto 22px; max-width: 840px; width: 100%; }

.leak-card {
  background: var(--li-bg-surface);
  border: 1px solid rgba(239,68,68,.18);
  border-top: 2px solid var(--li-red);
  border-radius: 10px;
  padding: 26px;
  width: 100%;
}

.leak-card-ok {
  background: var(--li-bg-surface);
  border: 1px solid rgba(34,197,94,.16);
  border-top: 2px solid var(--li-green);
  border-radius: 10px;
  padding: 26px;
  width: 100%;
}

.leak-card .status.alert {
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.16);
  color: #fca5a5;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: .88rem;
  margin-bottom: 18px;
  text-align: left;
}

.leak-card .status.alert strong { color: var(--li-red); }

.leak-card-ok .status {
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.16);
  color: var(--li-green);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: .88rem;
  text-align: center;
}

.table-wrap { overflow-x: auto; }
.leak-table { width: 100%; border-collapse: collapse; font-size: .85rem; }

.leak-table thead th {
  background: rgba(249,115,22,.04);
  color: var(--li-text-sub);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 10px 14px;
  border-bottom: 1px solid var(--li-border-md);
  text-align: left;
}

.leak-table tbody td {
  padding: 11px 14px;
  color: var(--li-text);
  border-bottom: 1px solid var(--li-border);
}

.leak-table tbody tr:hover td { background: var(--li-bg-raised); }
.col-num { text-align: right; color: var(--li-orange-lt) !important; font-weight: 700; font-variant-numeric: tabular-nums; }

.hero .finish { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }

.hero .finish input[type=submit] {
  background: transparent;
  border: 1px solid var(--li-border-md);
  color: var(--li-text-sub);
  border-radius: 6px;
  padding: 10px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: .84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.hero .finish input[type=submit]:hover { border-color: var(--li-orange); color: var(--li-orange-lt); }

.hero .finish input[type=submit]:last-child {
  background: var(--li-orange);
  border-color: var(--li-orange);
  color: #fff;
  font-weight: 600;
}

.hero .finish input[type=submit]:last-child:hover {
  background: var(--li-orange-lt);
  border-color: var(--li-orange-lt);
  box-shadow: 0 4px 16px var(--li-orange-glow);
}

/* ============================================================
   17. MISC
   ============================================================ */
.scroll-top { background: var(--li-orange); border-radius: 6px; width: 36px; height: 36px; }
.scroll-top:hover { background: var(--li-orange-lt); box-shadow: 0 4px 14px var(--li-orange-glow); }
#preloader { background: var(--li-bg-deep); }
#preloader:before { border-top-color: var(--li-orange); border-bottom-color: rgba(255,255,255,.1); }

.alert-warning { background: rgba(251,191,36,.06); border: 1px solid rgba(251,191,36,.16); color: #fbbf24; border-radius: 8px; font-size: .86rem; }
.alert-danger  { background: rgba(239,68,68,.06);  border: 1px solid rgba(239,68,68,.16);  color: var(--li-red);   border-radius: 8px; font-size: .86rem; }
.alert-success { background: rgba(34,197,94,.06);  border: 1px solid rgba(34,197,94,.16);  color: var(--li-green); border-radius: 8px; font-size: .86rem; }

/* ============================================================
   18. MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .hero h2 { font-size: 1.9rem; }
  .hero .sign-up-form { flex-direction: column; padding: 12px; border-radius: 10px; }
  .hero .sign-up-form input[type=submit] { width: 100%; border-radius: 6px; }
  .pricing .featured .pricing-item { transform: none; }
  .leak-card, .leak-card-ok { padding: 18px; }
  .section-title h2 { font-size: 1.6rem; }
  .stats .stats-item { border-right: none; border-bottom: 1px solid var(--li-border); }
}
