:root {
  --navy-950: #031322;
  --navy-900: #061f3c;
  --navy-800: #07345f;
  --navy-700: #0a4b86;
  --blue-500: #0b74d1;
  --cyan-400: #35d7ff;
  --yellow-500: #ffd21f;
  --yellow-400: #ffe463;
  --orange-500: #ff9a18;
  --green-500: #22a348;
  --green-600: #16863b;
  --red-500: #e31d2b;
  --white: #ffffff;
  --ice: #f4f8fc;
  --muted: #6e7f91;
  --text: #172334;
  --border: rgba(7, 52, 95, 0.14);
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(3, 26, 51, 0.16);
  --shadow-strong: 0 34px 90px rgba(3, 26, 51, 0.28);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 84px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--ice);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -100px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 900;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  background: rgba(244, 248, 252, 0.86);
  border-bottom: 1px solid rgba(7, 52, 95, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 46px rgba(3, 26, 51, 0.08);
}

.header-grid {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(3, 19, 34, 0.12));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 900;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-500), var(--orange-500));
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy-800);
}

.header-cta,
.btn,
.category-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -0.02em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.header-cta,
.btn-primary,
.category-card button {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
  box-shadow: 0 18px 36px rgba(255, 154, 24, 0.26);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.section-light .btn-secondary {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--border);
}

.btn:hover,
.header-cta:hover,
.category-card button:hover {
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-spark {
  position: relative;
  overflow: hidden;
}

.btn-spark::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -35%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  transform: skewX(-18deg);
  animation: spark 3.6s linear infinite;
}

@keyframes spark {
  0%, 45% { left: -42%; }
  70%, 100% { left: 120%; }
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 96px 0 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 210, 31, 0.24), transparent 27%),
    radial-gradient(circle at 12% 88%, rgba(34, 163, 72, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 48%, #021120 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: perspective(700px) rotateX(58deg) translateY(-14%);
  transform-origin: top;
}

.hero-orb {
  position: absolute;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.38;
  pointer-events: none;
}

.hero-orb-one {
  top: -170px;
  right: -130px;
  background: radial-gradient(circle, rgba(255,210,31,0.78), transparent 64%);
}

.hero-orb-two {
  left: -210px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(11,116,209,0.65), transparent 64%);
}

.energy-grid,
.pulse-line {
  position: absolute;
  pointer-events: none;
}

.energy-grid {
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(53, 215, 255, 0.16), transparent 42%);
  mix-blend-mode: screen;
}

.pulse-line {
  height: 2px;
  width: 52vw;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 31, 0.7), transparent);
  filter: drop-shadow(0 0 16px rgba(255,210,31,0.5));
  animation: pulseMove 6s linear infinite;
}

.pulse-line-one {
  top: 28%;
  left: -12%;
  transform: rotate(-18deg);
}

.pulse-line-two {
  right: -15%;
  bottom: 21%;
  transform: rotate(-22deg);
  animation-delay: 1.8s;
}

@keyframes pulseMove {
  0% { opacity: 0; translate: -18% 0; }
  24% { opacity: 1; }
  76% { opacity: 1; }
  100% { opacity: 0; translate: 18% 0; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--yellow-500);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #26ff73;
  box-shadow: 0 0 0 8px rgba(38, 255, 115, 0.12);
  animation: live 1.6s ease-in-out infinite;
}

@keyframes live {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.72); }
}

.hero h1,
.section-heading h2,
.section-copy h2,
.feature-main h2,
.final-card h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.hero-subtitle {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-stack span {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
  font-size: 0.88rem;
}

.hero-panel {
  position: relative;
  min-height: 590px;
  padding: 28px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)),
    radial-gradient(circle at 42% 20%, rgba(255, 210, 31, 0.2), transparent 34%);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transform-style: preserve-3d;
}

.panel-glow {
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(53, 215, 255, 0.16), transparent 46%, rgba(255, 210, 31, 0.18));
  opacity: 0.95;
  pointer-events: none;
}

.panel-topline,
.panel-metrics,
.brand-mini-row {
  position: relative;
  z-index: 2;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.74);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.panel-topline strong {
  color: #26ff73;
  text-shadow: 0 0 14px rgba(38,255,115,0.5);
}

.battery-stage {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  height: 150px;
  margin: 56px auto 24px;
}

.battery-body {
  position: absolute;
  inset: 16px 24px 16px 0;
  border: 3px solid rgba(255,255,255,0.8);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: inset 0 0 34px rgba(255,255,255,0.12), 0 0 46px rgba(255,210,31,0.16);
}

.battery-charge {
  position: absolute;
  inset: 0 19% 0 0;
  background: linear-gradient(90deg, var(--green-500), var(--yellow-500), var(--orange-500));
  animation: chargeFlow 4s ease-in-out infinite;
}

.battery-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 28%, rgba(255,255,255,0.36), transparent 43%);
  translate: -60% 0;
  animation: shineMove 3.8s ease-in-out infinite;
}

.battery-terminal {
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 62px;
  border-radius: 0 12px 12px 0;
  background: rgba(255,255,255,0.8);
  transform: translateY(-50%);
}

.bolt-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  font-size: 4rem;
  text-shadow: 0 6px 18px rgba(255,255,255,0.3);
}

@keyframes chargeFlow {
  0%, 100% { inset-right: 25%; filter: hue-rotate(0deg); }
  50% { inset-right: 8%; filter: hue-rotate(18deg); }
}

@keyframes shineMove {
  0%, 46% { translate: -70% 0; }
  78%, 100% { translate: 70% 0; }
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(420px, 92%);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.3));
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.panel-metrics div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
}

.panel-metrics span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.72rem;
  font-weight: 850;
}

.panel-metrics strong {
  display: block;
  color: var(--white);
  line-height: 1.1;
  margin-top: 4px;
}

.brand-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.brand-mini-row img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
}

.quick-actions {
  position: relative;
  z-index: 4;
  margin-top: -44px;
}

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

.quick-grid a {
  display: grid;
  gap: 5px;
  padding: 22px;
  min-height: 132px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.quick-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.quick-grid span {
  color: var(--orange-500);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.quick-grid strong {
  color: var(--navy-900);
  font-size: 1.14rem;
  letter-spacing: -0.035em;
}

.quick-grid small {
  color: var(--muted);
  font-weight: 850;
}

.section {
  padding: 102px 0;
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255,210,31,0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.section-copy h2,
.feature-main h2,
.final-card h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  color: var(--navy-950);
}

.section-dark .section-copy h2,
.section-dark .section-copy p,
.section-dark .eyebrow {
  color: var(--white);
}

.section-heading p,
.section-copy p,
.feature-card p,
.final-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-copy p {
  color: rgba(255,255,255,0.75);
}

.conversion-grid,
.diagnostic-grid,
.faq-layout,
.brands-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 54px;
}

.conversion-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.conversion-metrics div {
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(3,26,51,0.06);
}

.conversion-metrics strong {
  display: block;
  color: var(--navy-900);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.conversion-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--navy-900);
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), #47f17b);
  box-shadow: 0 8px 18px rgba(34,163,72,0.25);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.quote-form {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,210,31,0.7), transparent 28%, rgba(11,116,209,0.45));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.form-header {
  margin-bottom: 22px;
}

.form-header span {
  display: block;
  color: var(--orange-500);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.form-header strong {
  display: block;
  color: var(--navy-950);
  margin-top: 4px;
  font-size: 1.6rem;
  letter-spacing: -0.045em;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy-900);
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f7fbff;
  color: var(--text);
  padding: 0 15px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: rgba(11,116,209,0.55);
  box-shadow: 0 0 0 4px rgba(11,116,209,0.1);
  background: var(--white);
}

.input-error {
  border-color: var(--red-500) !important;
  box-shadow: 0 0 0 4px rgba(227, 29, 43, 0.08) !important;
}

.form-feedback {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--navy-800);
  font-weight: 850;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-tabs button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-800);
  padding: 12px 18px;
  font-weight: 950;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.filter-tabs button.is-active,
.filter-tabs button:hover {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
  transform: translateY(-1px);
}

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

.category-card {
  position: relative;
  min-height: 294px;
  padding: 26px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(3,26,51,0.08);
  overflow: hidden;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.category-card::before {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,31,0.42), transparent 68%);
}

.category-card.highlighted {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(255,210,31,0.26), transparent 34%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
}

.category-card.highlighted h3,
.category-card.highlighted .card-number {
  color: var(--white);
}

.category-card.highlighted p {
  color: rgba(255,255,255,0.76);
}

.category-card.is-hidden {
  display: none;
}

.card-number {
  display: inline-flex;
  color: var(--orange-500);
  font-weight: 950;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}

.category-card h3 {
  margin: 36px 0 10px;
  color: var(--navy-950);
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.category-card p {
  min-height: 76px;
  margin: 0 0 20px;
  color: var(--muted);
}

.category-card button {
  min-height: 44px;
  padding-inline: 18px;
}

.symptom-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.symptom-panel button {
  min-height: 58px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 13px 15px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.08);
  font-weight: 900;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.symptom-panel button.is-active,
.symptom-panel button:hover {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
  border-color: transparent;
  transform: translateY(-2px);
}

.risk-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.17);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.risk-header,
.risk-card p,
.risk-card .btn {
  grid-column: 2;
}

.risk-header span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.risk-header strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.055em;
}

.risk-card p {
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.risk-meter {
  grid-row: 1 / span 3;
  align-self: stretch;
  position: relative;
  width: 92px;
  min-height: 260px;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(255,255,255,0.12);
}

.risk-meter::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
}

.risk-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, var(--green-500), var(--yellow-500), var(--orange-500), var(--red-500));
  transition: height 520ms cubic-bezier(.2,.9,.2,1);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1.35fr;
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(3,26,51,0.08);
}

.feature-tag {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
  font-weight: 950;
}

.feature-card h3 {
  color: var(--navy-950);
  margin: 34px 0 10px;
  font-size: 1.46rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.feature-main {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(255,210,31,0.24), transparent 30%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
}

.feature-main h2,
.feature-main p {
  color: var(--white);
}

.brands-showcase {
  padding: 46px;
  border-radius: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.brand-logo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.brand-logo-card {
  min-height: 200px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,210,31,0.18), transparent 45%),
    #f8fbff;
  border: 1px solid var(--border);
}

.brand-logo-card img {
  max-height: 138px;
  object-fit: contain;
}

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

.step {
  padding: 26px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 38px rgba(3,26,51,0.07);
}

.step span {
  color: var(--orange-500);
  font-weight: 950;
}

.step h3 {
  margin: 30px 0 10px;
  color: var(--navy-950);
  font-size: 1.34rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.step p {
  color: var(--muted);
  margin: 0;
}

.proof-section {
  padding: 34px 0;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
}

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

.proof-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
}

.proof-card strong {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
}

.proof-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.68);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(3,26,51,0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy-950);
  font-weight: 950;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 104px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,210,31,0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.final-card {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  color: var(--white);
}

.final-card h2,
.final-card p {
  color: var(--white);
}

.final-card p:not(.eyebrow) {
  margin: 20px auto 28px;
  max-width: 640px;
  color: rgba(255,255,255,0.75);
}

.site-footer {
  padding: 54px 0 22px;
  color: rgba(255,255,255,0.76);
  background: #020d18;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.footer-brand img {
  width: 174px;
  height: auto;
  margin-bottom: 12px;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer a,
.site-footer span,
.site-footer p {
  color: rgba(255,255,255,0.68);
  margin: 0 0 8px;
}

.site-footer a:hover {
  color: var(--yellow-500);
}

.creator-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.creator-bar span {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  font-weight: 800;
}

.creator-bar a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  transition: transform var(--transition), box-shadow var(--transition);
}

.creator-bar a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.creator-bar img {
  width: 150px;
  height: auto;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #20c45a, #13853e);
  box-shadow: 0 18px 42px rgba(19, 133, 62, 0.34);
  font-weight: 950;
  transform: translateY(96px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}

.floating-whatsapp.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .conversion-grid,
  .diagnostic-grid,
  .faq-layout,
  .brands-showcase {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .quick-grid,
  .proof-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .header-grid {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 136px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--header-height) + 12px);
    display: grid;
    justify-items: start;
    gap: 8px;
    padding: 20px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-strong);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 72px 0 74px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 5.1rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quick-actions {
    margin-top: -28px;
  }

  .quick-grid,
  .category-grid,
  .feature-grid,
  .footer-grid,
  .brand-logo-cards,
  .conversion-metrics {
    grid-template-columns: 1fr;
  }

  .panel-metrics,
  .brand-mini-row,
  .steps,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .risk-card {
    grid-template-columns: 1fr;
  }

  .risk-header,
  .risk-card p,
  .risk-card .btn,
  .risk-meter {
    grid-column: auto;
    grid-row: auto;
  }

  .risk-meter {
    width: 100%;
    min-height: 82px;
    height: 82px;
  }

  .risk-fill {
    height: 100% !important;
    width: 46%;
    right: auto;
    transition: width 520ms cubic-bezier(.2,.9,.2,1);
  }

  .form-row,
  .symptom-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .quote-form,
  .brands-showcase,
  .risk-card,
  .hero-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .panel-metrics,
  .brand-mini-row,
  .steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .creator-bar {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
  }
}


.brand-switch {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 34px;
}

.brand-switch button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-800);
  font-weight: 950;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.brand-switch button.is-active,
.brand-switch button:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  box-shadow: 0 18px 34px rgba(7,52,95,0.18);
  transform: translateY(-2px);
}

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

.showcase-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(3,26,51,0.08);
  transition: opacity var(--transition), filter var(--transition), box-shadow var(--transition);
}

.showcase-card.special {
  background: radial-gradient(circle at 84% 8%, rgba(255,210,31,0.22), transparent 26%), linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.showcase-card.is-muted {
  opacity: 0.48;
  filter: saturate(0.72);
}

.showcase-card.is-emphasis {
  box-shadow: 0 26px 64px rgba(3,26,51,0.14);
}

.showcase-orb {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px 18px 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7,52,95,0.04), rgba(7,52,95,0.09));
}

.showcase-orb::before {
  content: "";
  position: absolute;
  top: 18px;
  width: min(82%, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, #1182e1, #083c75 72%, #06284a 100%);
  box-shadow: inset 0 8px 40px rgba(255,255,255,0.08), 0 26px 34px rgba(3,26,51,0.16);
}

.showcase-badge,
.showcase-icon,
.showcase-brand-logos {
  position: relative;
  z-index: 1;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  min-height: 36px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(6,31,60,0.88);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-icon {
  width: min(84%, 250px);
  min-height: 200px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.showcase-icon svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.18));
}

.showcase-brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.showcase-brand-logos img {
  height: 46px;
  width: auto;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 12px 24px rgba(3,26,51,0.14);
}

.showcase-brand-logos img:last-child {
  height: 58px;
}

.showcase-body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.showcase-label {
  color: var(--blue-500);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.showcase-body h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.7rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.showcase-body p {
  margin: 0;
  color: var(--muted);
}

.showcase-body button {
  justify-self: start;
}

.visual-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.service-visuals {
  color: var(--white);
  background: radial-gradient(circle at 80% 14%, rgba(255,210,31,0.2), transparent 24%), linear-gradient(135deg, #02172d 0%, #072d56 100%);
}

.service-visuals .section-copy h2,
.service-visuals .section-copy p,
.service-visuals .eyebrow {
  color: var(--white);
}

.startstop-showcase {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
}

.startstop-panel {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
}

.panel-chip {
  position: absolute;
  top: -14px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--navy-950);
  font-weight: 950;
}

.chip-agm {
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
}

.chip-efb {
  background: linear-gradient(135deg, #bdfbff, var(--cyan-400));
}

.startstop-pack {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 128px;
}

.startstop-pack img {
  width: auto;
  max-width: 110px;
  height: 74px;
  object-fit: contain;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
}

.startstop-pack-agm img {
  height: 92px;
}

.startstop-pack strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
}

.startstop-pack p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.72);
}

.startstop-brand-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.startstop-brand-row div {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
}

.startstop-brand-row img {
  max-height: 56px;
  width: auto;
}

.service-circles {
  position: relative;
  min-height: 480px;
}

.service-circle {
  position: absolute;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
  border: 10px solid rgba(11,116,209,0.16);
  box-shadow: 0 24px 44px rgba(3,26,51,0.12);
  padding: 18px;
}

.service-circle-main {
  width: 290px;
  height: 290px;
  left: 42px;
  top: 116px;
}

.service-circle-top {
  width: 188px;
  height: 188px;
  right: 8px;
  top: 0;
}

.service-circle-bottom {
  width: 190px;
  height: 190px;
  right: 40px;
  bottom: 0;
}

.service-circle-icon {
  font-size: 2rem;
}

.service-circle strong {
  color: var(--navy-950);
  font-size: 1.24rem;
  line-height: 1.02;
}

.service-circle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .showcase-grid,
  .visual-split {
    grid-template-columns: 1fr 1fr;
  }

  .visual-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .showcase-grid,
  .startstop-brand-row {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    padding: 20px;
  }

  .showcase-icon {
    min-height: 180px;
  }

  .service-circles {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .service-circle {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    border-radius: 34px;
    min-height: 180px;
    border-width: 1px;
  }
}

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

  .startstop-pack {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .showcase-brand-logos img {
    height: 40px;
  }

  .showcase-brand-logos img:last-child {
    height: 50px;
  }
}

.premium-line {
  background:
    radial-gradient(circle at 12% 12%, rgba(17,130,225,0.08), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(255,208,31,0.10), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

.line-shortcuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 34px;
}

.line-shortcuts button {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  color: var(--navy-800);
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(3,26,51,0.06);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.line-shortcuts button:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  box-shadow: 0 18px 30px rgba(3,26,51,0.14);
}

.line-illustration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.line-illustration-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(8,44,82,0.08);
  box-shadow: 0 18px 40px rgba(3,26,51,0.08);
}

.line-illustration-card-premium {
  background:
    radial-gradient(circle at 84% 12%, rgba(255,214,63,0.18), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.line-illustration-orb {
  position: relative;
  min-height: 290px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: 20px 18px 18px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6,40,74,0.04), rgba(10,62,120,0.09));
}

.line-illustration-orb::before {
  content: "";
  position: absolute;
  top: 42px;
  width: min(80%, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 20%, #1288eb, #0b59a8 56%, #06284a 100%);
  box-shadow: inset 0 14px 28px rgba(255,255,255,0.08), 0 28px 34px rgba(3,26,51,0.16);
}

.line-illustration-orb::after {
  content: "";
  position: absolute;
  top: 54px;
  width: min(78%, 226px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}

.line-brand-ribbon,
.line-vehicle-icon,
.line-logo-duo {
  position: relative;
  z-index: 1;
}

.line-brand-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 16px 28px rgba(3,26,51,0.12);
}

.line-brand-ribbon img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.line-brand-ribbon img:last-child {
  height: 48px;
}

.line-vehicle-icon {
  width: min(84%, 240px);
  min-height: 174px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.line-vehicle-icon svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.20));
}

.line-logo-duo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.line-logo-duo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(3,26,51,0.12);
}

.line-illustration-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.line-illustration-copy h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.72rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.line-illustration-copy p {
  margin: 0;
  color: var(--muted);
}

.line-illustration-copy button {
  justify-self: start;
}

.startstop-interactive {
  background: radial-gradient(circle at 12% 20%, rgba(255,208,31,0.14), transparent 16%), linear-gradient(135deg, #04192f 0%, #0a325f 100%);
  color: var(--white);
}

.startstop-interactive .section-copy h2,
.startstop-interactive .section-copy p,
.startstop-interactive .eyebrow,
.startstop-interactive .check-list li {
  color: var(--white);
}

.startstop-interactive .check-list li::before {
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
}

.startstop-interactive-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.tech-experience {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 26px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
}

.tech-mode-tabs,
.tech-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-mode-tabs button,
.tech-brand-pills button {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.tech-mode-tabs button:hover,
.tech-mode-tabs button.is-active,
.tech-brand-pills button:hover,
.tech-brand-pills button.is-active {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.96);
  color: var(--navy-950);
  border-color: transparent;
}

.tech-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.tech-pack-card,
.tech-side-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.tech-pack-card {
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.tech-pack-card[data-tech-theme="moura"] {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
}

.tech-pack-card[data-tech-theme="heliar"] {
  background: linear-gradient(180deg, rgba(19,192,94,0.14), rgba(255,255,255,0.08));
}

.tech-pack-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy-950);
  font-weight: 950;
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
}

.tech-chip-outline {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
}

.tech-pack-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.tech-logo-box {
  display: grid;
  place-items: center;
  width: 118px;
  min-height: 118px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

.tech-logo-box img {
  width: auto;
  max-width: 90px;
  max-height: 70px;
  object-fit: contain;
}

.tech-pack-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tech-pack-copy p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.78);
}

.tech-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.tech-metrics div {
  min-height: 98px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
}

.tech-metrics span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.08;
}

.tech-side-panel {
  display: grid;
  gap: 14px;
}

.tech-side-card {
  padding: 18px;
}

.tech-side-card strong {
  display: block;
  color: var(--white);
  font-size: 1.04rem;
}

.tech-side-card p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.76);
}

.tech-advantages {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
}

.tech-advantages li + li {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .line-illustration-grid,
  .startstop-interactive-grid,
  .tech-visual {
    grid-template-columns: 1fr 1fr;
  }

  .startstop-interactive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .line-illustration-grid,
  .tech-visual,
  .tech-metrics {
    grid-template-columns: 1fr;
  }

  .line-illustration-orb {
    min-height: 270px;
  }

  .tech-pack-body {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .line-illustration-card,
  .tech-experience {
    padding: 18px;
  }

  .line-brand-ribbon img {
    height: 34px;
  }

  .line-brand-ribbon img:last-child {
    height: 42px;
  }

  .line-vehicle-icon {
    min-height: 154px;
  }

  .line-illustration-copy h3,
  .tech-pack-copy h3 {
    font-size: 1.42rem;
  }
}

/* --- Layout autoral Lukão Baterias: vitrine de aplicações + console Start-Stop --- */
.premium-line {
  background:
    radial-gradient(circle at 8% 14%, rgba(17,130,225,0.10), transparent 18%),
    radial-gradient(circle at 92% 10%, rgba(255,210,31,0.12), transparent 16%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.premium-line-shell {
  display: grid;
  gap: 24px;
}

.premium-line-heading {
  max-width: 980px;
}

.line-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.line-shortcuts button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(8,44,82,0.10);
  background: rgba(255,255,255,0.92);
  color: var(--navy-900);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(3,26,51,0.06);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition);
}

.line-shortcuts button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(3,26,51,0.14);
}

.application-hub {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
  align-items: start;
}

.line-command {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, #08284a 0%, #0d3f73 100%);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(3,26,51,0.20);
  overflow: hidden;
}

.line-command::before {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,31,0.30), transparent 62%);
}

.line-command > * {
  position: relative;
  z-index: 1;
}

.line-command-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.line-command h3 {
  margin: 14px 0 0;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.line-command p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.78);
}

.line-command-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.line-command-metrics div {
  min-height: 112px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
}

.line-command-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.line-command-metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
}

.line-command-brands {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.line-command-brands img {
  height: 42px;
  width: auto;
  object-fit: contain;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
}

.line-command-brands img:last-child {
  height: 52px;
}

.application-rack {
  display: grid;
  gap: 16px;
}

.application-row {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(8,44,82,0.08);
  box-shadow: 0 18px 38px rgba(3,26,51,0.08);
}

.application-row-premium {
  background:
    radial-gradient(circle at 92% 18%, rgba(255,210,31,0.18), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.application-sigil {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 16px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #0a3b6f, #1182e1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.application-sigil svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}

.application-copy {
  display: grid;
  gap: 10px;
}

.application-label {
  color: var(--blue-500);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.application-copy h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.52rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.application-copy p {
  margin: 0;
  color: var(--muted);
}

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.application-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17,130,225,0.08);
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 800;
}

.application-side {
  display: grid;
  justify-items: end;
  gap: 14px;
  min-width: 190px;
}

.application-brand-mini {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.application-brand-mini img {
  width: auto;
  height: 34px;
  object-fit: contain;
  padding: 7px 8px;
  border-radius: 14px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 20px rgba(3,26,51,0.08);
}

.application-brand-mini img:last-child {
  height: 46px;
}

.startstop-interactive {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(255,210,31,0.16), transparent 16%),
    radial-gradient(circle at 12% 18%, rgba(17,130,225,0.18), transparent 18%),
    linear-gradient(135deg, #03192e 0%, #0a3159 100%);
}

.startstop-console {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  padding: 28px;
  border-radius: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
  backdrop-filter: blur(12px);
}

.startstop-console-copy .eyebrow,
.startstop-console-copy h2,
.startstop-console-copy p,
.startstop-console-copy .check-list li {
  color: var(--white);
}

.startstop-console-copy .check-list li::before {
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
}

.startstop-console-stage {
  display: grid;
  gap: 14px;
}

.tech-mode-tabs,
.tech-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-mode-tabs button,
.tech-brand-pills button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-weight: 900;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.tech-mode-tabs button:hover,
.tech-mode-tabs button.is-active,
.tech-brand-pills button:hover,
.tech-brand-pills button.is-active {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.96);
  color: var(--navy-950);
}

.tech-console-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 16px;
  align-items: start;
}

.tech-pack-card,
.tech-side-card {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
}

.tech-pack-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
}

.tech-pack-card[data-tech-theme="heliar"] {
  background: linear-gradient(180deg, rgba(40,182,77,0.20), rgba(255,255,255,0.08));
}

.tech-pack-card[data-tech-theme="moura"] {
  background: linear-gradient(180deg, rgba(33,109,202,0.22), rgba(255,255,255,0.08));
}

.tech-pack-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
  color: var(--navy-950);
  font-weight: 950;
}

.tech-chip-outline {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}

.tech-brand-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.tech-logo-box {
  display: grid;
  place-items: center;
  width: 126px;
  min-height: 126px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}

.tech-logo-box img {
  width: auto;
  max-width: 92px;
  max-height: 72px;
  object-fit: contain;
}

.tech-pack-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.tech-pack-copy p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.78);
}

.tech-spec-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.tech-spec-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.tech-spec-line span {
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-spec-line strong {
  color: var(--white);
  text-align: right;
}

.tech-side-panel {
  display: grid;
  gap: 14px;
}

.tech-side-card {
  padding: 18px;
  background: rgba(255,255,255,0.08);
}

.tech-side-card-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
}

.tech-side-card strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
}

.tech-side-card p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.76);
}

.tech-advantages {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
}

.tech-advantages li + li {
  margin-top: 8px;
}

@media (max-width: 1120px) {
  .application-hub,
  .startstop-console,
  .tech-console-grid {
    grid-template-columns: 1fr;
  }

  .line-command {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .application-row {
    grid-template-columns: 1fr;
  }

  .application-side {
    justify-items: start;
    min-width: 0;
  }

  .application-brand-mini {
    justify-content: flex-start;
  }

  .line-command-metrics {
    grid-template-columns: 1fr;
  }

  .tech-brand-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .line-command,
  .application-row,
  .startstop-console,
  .tech-pack-card,
  .tech-side-card {
    padding: 18px;
  }

  .application-sigil {
    min-height: 94px;
  }

  .application-copy h3,
  .tech-pack-copy h3,
  .line-command h3 {
    font-size: 1.38rem;
  }

  .application-brand-mini img,
  .line-command-brands img {
    height: 30px;
  }

  .application-brand-mini img:last-child,
  .line-command-brands img:last-child {
    height: 40px;
  }
}


/* --- Cards com imagens reais, sem ícones genéricos --- */
.vehicle-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(16, 127, 221, 0.10), transparent 20%),
    radial-gradient(circle at 90% 4%, rgba(255, 210, 31, 0.13), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #edf5fb 100%);
}

.vehicle-photo-grid {
  align-items: stretch;
}

.vehicle-photo-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,250,255,0.96));
}

.vehicle-photo-card::before {
  display: none;
}

.vehicle-photo {
  position: relative;
  min-height: 210px;
  border-radius: 24px;
  overflow: hidden;
  background: #08284a;
  box-shadow: 0 20px 34px rgba(3,26,51,0.16);
}

.vehicle-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,17,32,0.04), rgba(2,17,32,0.42)),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.24), transparent 28%);
}

.vehicle-photo > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.vehicle-photo-card:hover .vehicle-photo > img:first-child {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.photo-brand-strip {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 16px 26px rgba(3,26,51,0.20);
  backdrop-filter: blur(10px);
}

.photo-brand-strip img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.photo-brand-strip img:last-child {
  height: 46px;
}

.vehicle-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 116, 209, 0.10);
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vehicle-photo-card h3 {
  margin: 0;
}

.vehicle-photo-card p {
  min-height: 0;
  margin-bottom: 4px;
}

.vehicle-photo-card-highlight {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,210,31,0.18), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.creator-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.creator-bar span {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.creator-bar img {
  width: auto;
  height: 44px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
}

@media (max-width: 860px) {
  .vehicle-photo {
    min-height: 230px;
  }

  .vehicle-photo > img:first-child {
    min-height: 230px;
  }

  .creator-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .vehicle-photo {
    min-height: 190px;
  }

  .vehicle-photo > img:first-child {
    min-height: 190px;
  }

  .photo-brand-strip {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
