/* ──────────────────────────────────────────
   TOKENS
────────────────────────────────────────── */
:root {
  --primary:       #10b981;
  --primary-dark:  #059669;
  --primary-glow:  rgba(16,185,129,.35);
  --dark:          #0b1120;
  --dark-2:        #111827;
  --slate:         #1e293b;
  --text:          #334155;
  --text-light:    #64748b;
  --bg:            #ffffff;
  --bg-light:      #f8fafc;
  --border:        #e2e8f0;
  --radius:        16px;
  --radius-sm:     10px;
  --ease:          cubic-bezier(.4,0,.2,1);
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06);
  --shadow:        0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.12);
  --shadow-green:  0 8px 24px rgba(16,185,129,.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 40px; /* for urgency bar */
}

a { text-decoration: none; color: inherit; }
img { max-width:100%; display:block; }

/* ──────────────────────────────────────────
   LAYOUT
────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.bg-white  { background: var(--bg); }
.bg-light  { background: var(--bg-light); }

/* ──────────────────────────────────────────
   SECTION HEADER
────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(16,185,129,.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.section-title.light { color: #fff; }

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all .25s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px var(--primary-glow); }

.btn-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1.1rem;
  padding: 20px 44px;
  box-shadow: var(--shadow-green);
}
.btn-hero:hover { transform: translateY(-4px); box-shadow: 0 18px 40px var(--primary-glow); }
.btn-arrow { transition: transform .25s var(--ease); }
.btn-hero:hover .btn-arrow { transform: translateX(5px); }

.btn-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-green);
  transition: all .25s var(--ease);
  margin-top: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 32px var(--primary-glow); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../assets/hero.png') no-repeat center center / cover;
  color: #fff;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,17,32,.75) 0%, rgba(11,17,32,.97) 100%);
}

.hero-badge {
  position: relative; z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.35);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: #6ee7b7;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16,185,129,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 860px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.highlight {
  background: linear-gradient(90deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.35rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero-pills i { color: var(--primary); }

/* ──────────────────────────────────────────
   STATS BAR
────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  padding: 36px 0;
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 48px;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: .82rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.08);
}

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

.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.card-accent-1::after { background: linear-gradient(90deg,#10b981,#34d399); }
.card-accent-2::after { background: linear-gradient(90deg,#3b82f6,#60a5fa); }
.card-accent-3::after { background: linear-gradient(90deg,#8b5cf6,#a78bfa); }
.card-accent-4::after { background: linear-gradient(90deg,#f59e0b,#fbbf24); }
.card-accent-5::after { background: linear-gradient(90deg,#06b6d4,#22d3ee); }
.card-accent-6::after { background: linear-gradient(90deg,#ec4899,#f472b6); }

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::after { opacity: 1; }

.fc-icon {
  width: 56px; height: 56px;
  background: #ecfdf5;
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all .3s var(--ease);
}
.feature-card:hover .fc-icon { background: var(--primary); color: #fff; }

.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-card p  { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

.fc-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  background: var(--bg-light);
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────
   HOW IT WORKS
────────────────────────────────────────── */
.bg-dark-section {
  background: var(--dark);
  padding: 100px 0;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-card {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: all .3s var(--ease);
}
.step-card:hover { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.25); }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(16,185,129,.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-green);
}

.step-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-card p  { font-size: .9rem; color: #64748b; line-height: 1.7; }

.step-arrow {
  color: var(--primary);
  font-size: 1.4rem;
  padding-top: 68px;
  opacity: .6;
}

/* ──────────────────────────────────────────
   ELIGIBILITY
────────────────────────────────────────── */
.eligibility-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.req-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all .25s var(--ease);
}
.req-list li:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.req-icon-wrap {
  width: 44px; height: 44px;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}

.req-list strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.req-list span   { font-size: .85rem; color: var(--text-light); }

/* ──────────────────────────────────────────
   FORM SECTION
────────────────────────────────────────── */
.bg-form-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--slate) 100%);
  padding: 100px 0;
}

.form-outer {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.form-promises { display: flex; flex-direction: column; gap: 14px; }
.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.promise-item i { color: var(--primary); font-size: 1.1rem; }

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group label i { color: var(--primary); font-size: .9rem; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--bg-light);
  transition: all .25s var(--ease);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16,185,129,.12);
}

.form-group input::placeholder { color: #94a3b8; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: .95rem;
}
.form-message.success { display:flex; gap:10px; align-items:center; background:#ecfdf5; color:#059669; border:1px solid #a7f3d0; }
.form-message.error   { display:flex; gap:10px; align-items:center; background:#fef2f2; color:#dc2626; border:1px solid #fecaca; }

/* ──────────────────────────────────────────
   FAQ
────────────────────────────────────────── */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s var(--ease);
}
.accordion-item:hover { box-shadow: var(--shadow); }

.accordion-header {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background .2s;
}
.accordion-header:hover { background: var(--bg-light); }

.acc-icon {
  color: var(--primary);
  background: #ecfdf5;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.accordion-item.open .acc-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.accordion-body p { padding: 0 24px 22px; color: var(--text-light); line-height: 1.8; }

/* ──────────────────────────────────────────
   BOTTOM CTA
────────────────────────────────────────── */
.bottom-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 100px 24px;
  text-align: center;
}
.bottom-cta h2 { font-size: 2.6rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; margin-bottom: 16px; }
.bottom-cta p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 40px; }
.bottom-cta .btn-hero { background: #fff; color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.bottom-cta .btn-hero:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.25); }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 50px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #64748b; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-copy { color: #334155; font-size: .8rem; }

/* ──────────────────────────────────────────
   MOBILE STICKY BAR
────────────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  z-index: 200;
}
.btn-mobile-bar {
  width: 100%; display: flex; justify-content: center; align-items: center; gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 700; font-size: 1.05rem;
  border-radius: var(--radius);
  font-family: inherit;
  box-shadow: var(--shadow-green);
}

/* ──────────────────────────────────────────
   WHATSAPP FLOAT
────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: all .3s var(--ease);
}
.wa-float i { font-size: 1.5rem; }
.wa-float:hover { background: #128c7e; transform: translateY(-4px); box-shadow: 0 14px 32px rgba(37,211,102,.45); }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .eligibility-wrap { grid-template-columns: 1fr; gap: 48px; }
  .form-outer { grid-template-columns: 1fr; gap: 48px; }
  .steps-row { gap: 10px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 2rem; }
  .hero { min-height: 100svh; padding: 100px 20px 100px; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 1.1rem; }
  .btn-hero { font-size: 1rem; padding: 16px 32px; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 14px 24px; }
  .stat-divider { display: none; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-row { flex-direction: column; }
  .step-arrow { display: none; }
  .form-outer { gap: 40px; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .mobile-bar { display: block; }
  .wa-float { bottom: 92px; right: 16px; }
  .wa-label { display: none; }
  .wa-float { width: 54px; height: 54px; padding: 0; justify-content: center; border-radius: 50%; }

  /* Prevent iOS zoom on input focus */
  input, select { font-size: 16px !important; }
}

@media (max-width: 480px) {
  .hero-pills { gap: 8px; }
  .hero-pills span { font-size: .78rem; padding: 6px 14px; }
  .stat-num { font-size: 1.8rem; }
}

/* ──────────────────────────────────────────
   URGENCY BAR
────────────────────────────────────────── */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: linear-gradient(90deg, #b45309 0%, #d97706 50%, #b45309 100%);
  background-size: 200% 100%;
  animation: urgency-slide 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: .3px;
}
.urgency-bar i { font-size: .9rem; opacity: .85; }
@keyframes urgency-slide {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ──────────────────────────────────────────
   HERO AMOUNT TYPOGRAPHY
────────────────────────────────────────── */
.hero-amount {
  font-size: clamp(4rem, 12vw, 8rem);
  display: block;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 8px 0;
}
.hero-amount-suffix {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.tcard-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.tcard-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tcard-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-weight: 700; color: var(--dark); font-size: .95rem; }
.tcard-author span   { font-size: .8rem; color: var(--text-light); }

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

/* ──────────────────────────────────────────
   FORM SOCIAL PROOF & NO-MOTOR WARNING
────────────────────────────────────────── */
.form-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: .88rem;
  font-weight: 600;
  color: #d1fae5;
}
.form-social-proof i { font-size: 1rem; color: var(--primary); }
.fsp-divider { color: rgba(255,255,255,.2); font-size: 1.2rem; }

.no-motor-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-sm);
  color: #92400e;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
  animation: fadeIn .3s ease;
}
.no-motor-warning i { color: #f59e0b; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
@keyframes fadeIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
