:root {
  --bg: #08152f;
  --bg-2: #0b1d43;
  --panel: #10295c;
  --panel-2: #153777;
  --text: #f5f9ff;
  --muted: #b7c6e3;
  --line: rgba(255,255,255,0.12);
  --accent: #1e4ed8;
  --accent-2: #3b82f6;
  --light: #eef4ff;
  --success: #77c0ff;
  --shadow: 0 20px 60px rgba(0,0,0,.25);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 100% -10%, rgba(59,130,246,.24), transparent 55%),
    radial-gradient(800px 400px at -10% 10%, rgba(30,78,216,.20), transparent 50%),
    linear-gradient(180deg, #061126 0%, #091735 45%, #061126 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6,17,38,.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #6da7ff);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: .96rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(30,78,216,.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.02);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.05);
}

.hero {
  padding: 82px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(123,172,255,.25);
  background: rgba(30,78,216,.12);
  color: #d6e5ff;
  font-weight: 700;
  font-size: .9rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin: 18px 0 18px;
  letter-spacing: -0.02em;
  max-width: 720px;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: 26px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.metric {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.metric strong {
  display: block;
  font-size: 1.5rem;
}

.section {
  padding: 76px 0;
}

.section h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}


.section p.section-lead {
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.kicker {
  color: #98bbff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .8rem;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px 24px 24px 80px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 22px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
}

.cta-banner {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-clean li {
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
}

.list-clean li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7ab1ff;
  font-size: 1.1rem;
}

.quote {
  font-size: 1.1rem;
  color: var(--light);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

footer {
  padding: 36px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}

.small {
  font-size: .95rem;
  color: var(--muted);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: #d7e5ff;
  font-weight: 700;
  font-size: .92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

label {
  font-size: .92rem;
  color: #dbe7ff;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.help-text {
  color: var(--muted);
  font-size: .92rem;
}

.page-hero {
  padding: 74px 0 30px;
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 16px;
}

.table th,
.table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.table th {
  text-align: left;
  color: #d9e8ff;
  background: rgba(255,255,255,.04);
}

.table td {
  color: var(--muted);
}

.notice {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(123,172,255,.26);
  background: rgba(30,78,216,.10);
  color: #d6e7ff;
}

.hero-diagram {
  padding: 24px;
}

.loop {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.loop .node {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}

/* MOBILE TOGGLE DEFAULT */
.mobile-toggle {
  display: none !important;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 8px 10px;
  line-height: 1;
}

/* BOOK PAGE IMAGE */
.book-feature-grid {
  display: grid;
  grid-template-columns: 900px 1fr;
  gap: 70px;
  align-items: center;
}

.book-full {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

/* DESKTOP NAV RECONFIRM */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* GENERAL TABLET + MOBILE */
@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-grid,
  .metric-grid,
  .book-feature-grid {
    grid-template-columns: 1fr !important;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
  }

  .nav-links {
    gap: 12px;
  }

  .book-feature-grid {
    gap: 30px;
    text-align: center;
  }

  .book-full {
    max-width: 420px;
  }
}

/* MOBILE NAV */
@media (max-width: 980px) {
  .mobile-toggle {
    display: block !important;
    margin-left: auto;
  }

  .nav .btn,
  .nav .btn-primary,
  .nav .primary,
  .lang-switch {
    display: none !important;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    background: #071126;
    order: 10;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
}

/* FOOTER RESET */
footer .footer-container {
  text-align: center !important;
  padding: 60px 20px !important;
}

footer .footer-logo {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
}

footer .footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}

footer .footer-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  max-width: 520px !important;
  margin: 0 auto 28px !important;
  align-items: start !important;
}

footer .footer-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

footer .footer-col:first-child {
  text-align: left !important;
}

footer .footer-col:last-child {
  text-align: right !important;
}

footer .footer-col strong {
  display: block !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

footer .footer-col a {
  display: block !important;
  text-decoration: none !important;
  color: #9aa4b2 !important;
}

footer .footer-copy {
  margin-top: 18px !important;
  color: #6b7280 !important;
  font-size: 14px !important;
  text-align: center !important;
}

/* SMALL MOBILE */
@media (max-width: 768px) {
  .footer-brand img {
    height: 70px;
    width: auto;
  }

  footer .footer-columns {
    gap: 32px !important;
    max-width: 340px !important;
  }

  footer .footer-col:first-child,
  footer .footer-col:last-child {
    text-align: center !important;
  }

  .book-full {
    max-width: 320px;
  }
}
/* WhatsApp Floating Button */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:55px;
height:55px;
z-index:9999;
}

.whatsapp-float img{
width:55px;
height:55px;
object-fit:contain;
}
/* FIX DROPDOWN SELECT */

select{
background:#ffffff;
color:#000000;
}

select option{
color:#000000;
background:#ffffff;
}
/* INNERBRAKE STATS */

.stat-card{
background:linear-gradient(145deg,#0e1f45,#142a57);
border:1px solid rgba(255,255,255,0.08);
border-radius:20px;
padding:40px 30px;
text-align:left;
transition:all .35s ease;
position:relative;
overflow:hidden;
}

.stat-card:hover{
transform:translateY(-6px);
border-color:rgba(255,255,255,0.18);
box-shadow:0 15px 40px rgba(0,0,0,0.35);
}

.stat-card .number{
font-size:48px;
font-weight:800;
color:#ffffff;
margin-bottom:10px;
letter-spacing:1px;
}

.stat-card .label{
font-size:17px;
color:#bcd0ff;
font-weight:500;
line-height:1.5;
}
/* ===== VISUAL FLOW (Pressure → Authority Protection) ===== */

.visual-sequence{
display:flex;
align-items:center;
justify-content:flex-start;
gap:12px;
flex-wrap:nowrap;
margin-top:22px;
overflow-x:auto;
padding-bottom:6px;
-webkit-overflow-scrolling:touch;
scrollbar-width:none;
}

.visual-sequence::-webkit-scrollbar{
display:none;
}

.visual-item{
display:inline-flex;
align-items:center;
gap:12px;
white-space:nowrap;
flex:0 0 auto;
}

.visual-pill{
padding:12px 16px;
border-radius:999px;
border:1px solid rgba(255,255,255,.12);
background:rgba(255,255,255,.04);
color:#dce8ff;
font-weight:700;
font-size:.95rem;
white-space:nowrap;
}

.visual-arrow{
color:#8fb4ff;
font-weight:800;
font-size:1.1rem;
flex:0 0 auto;
}

select{
background:#1e4ed8;
color:#ffffff;
padding:14px 16px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.25);
font-weight:600;
}