/* 365available - home landing styles */
:root {
  --primary: #1f6feb;
  --primary-dark: #1858bd;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --green: #10b981;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --teal: #14b8a6;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-band: #0f172a;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.08), 0 1px 3px rgba(15,23,42,0.06);
  --shadow-lg: 0 20px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
  --radius: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
.hidden { display: none !important; }
.muted { color: var(--muted); font-weight: 400; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============= NAV ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo {
  width: 42px; height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.5px;
}
.nav-title { font-weight: 700; font-size: 16px; }
.nav-sub { font-size: 12px; color: var(--muted); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary-dark); color: white !important; }
@media (max-width: 720px) {
  .nav { padding: 12px 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(31,111,235,0.12), transparent 70%),
    radial-gradient(circle at 15% 75%, rgba(245,158,11,0.10), transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(139,92,246,0.10), transparent 50%);
  z-index: -1;
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.hero-pill {
  display: inline-block;
  padding: 8px 18px;
  background: white;
  color: var(--primary);
  border: 1px solid #c9defc;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin: 0 0 24px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 680px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-buttons-single { display: flex; justify-content: center; }
.btn-mega-wide {
  padding: 20px 64px;
  font-size: 18px;
  font-weight: 700;
  min-width: 400px;
}
@media (max-width: 720px) {
  .btn-mega-wide { padding: 16px 28px; min-width: 0; width: 100%; font-size: 16px; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  font-size: 15px;
  font-family: inherit;
  transition: transform 0.1s, box-shadow 0.15s, background 0.15s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-mega {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(31,111,235,0.35);
}
.btn-mega:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(31,111,235,0.45);
}
.btn-mega-outline {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-mega-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-mega-light {
  background: white;
  color: var(--primary);
}
.btn-mega-light:hover { background: #f1f5f9; }
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px 20px;
}
.btn-whatsapp:hover { background: #1ebe5b; }
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}
.hero-trust span { white-space: nowrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 60px auto 0;
  padding: 0 24px;
}
.stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .hero { padding: 50px 16px 40px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .btn-mega, .btn-mega-outline { padding: 14px 22px; font-size: 15px; }
}

/* GST card highlight (bold yellow line) */
.card-highlight {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  color: #92400e;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  text-align: center;
}
/* T&C applied tiny tag below price */
.card-tnc {
  font-size: 11.5px;
  color: var(--muted);
  text-align: right;
  margin: -4px 0 14px;
  font-style: italic;
}

/* Lead modal - step tags, OTP info, done state */
.lead-step-tag {
  display: inline-block;
  background: #e0e7ff;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lead-otp-info {
  background: #ecfeff;
  border: 1px solid #67e8f9;
  color: #155e75;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  margin: 0 0 12px;
}
.lead-otp-info strong { color: #0e7490; }
.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 6px 10px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  font-size: 13px;
  font-family: inherit;
}
.btn-link:hover { color: var(--primary-dark); }
.lead-step-done {
  text-align: center;
  padding: 16px 0 4px;
}
.lead-done-check {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 40px;
  font-weight: 700;
}
.lead-step-done h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}
.lead-step-done p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 8px;
}
.hint {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

/* ============= STORY BAND ============= */
.story-band {
  background: var(--bg-band);
  color: white;
  padding: 36px 24px;
  text-align: center;
}
.story-band-inner {
  max-width: 760px;
  margin: 0 auto;
}
.story-text {
  font-size: 19px;
  margin: 0;
  line-height: 1.55;
  color: #cbd5e1;
}
.story-text strong {
  color: white;
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
}

/* ============= SECTIONS ============= */
section { padding: 80px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 14px 0 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}
.section-pill {
  display: inline-block;
  padding: 6px 14px;
  background: #e0e7ff;
  color: var(--primary);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.section-pill-light {
  background: #fef3c7;
  color: var(--accent-dark);
}
@media (max-width: 720px) {
  .section-head h2 { font-size: 28px; }
  .section-head p { font-size: 15px; }
}

/* ============= SERVICES ============= */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #c9defc;
}
.card-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #f0f7ff 0%, white 30%);
}
.card-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; }
.icon-blue   { background: #dbeafe; color: var(--primary); }
.icon-orange { background: #fef3c7; color: var(--accent-dark); }
.icon-purple { background: #ede9fe; color: var(--purple); }
.icon-green  { background: #d1fae5; color: var(--green); }
.icon-teal   { background: #ccfbf1; color: var(--teal); }
.icon-pink   { background: #fce7f3; color: var(--pink); }

.card h3 {
  font-size: 19px;
  margin: 0 0 8px;
  font-weight: 700;
}
.card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 18px;
  line-height: 1.55;
  min-height: 88px; /* keeps highlight boxes vertically aligned across cards */
}
.card-price-free {
  color: var(--green) !important;
}
.card-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 13.5px;
  color: var(--text);
}
.card-feats li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}
.card-feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.card-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.card-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.card-time {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  text-align: right;
}
.card-cta {
  width: 100%;
  padding: 11px 18px;
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
  display: block;
  margin-top: auto; /* always sit at bottom of card */
}
.card-cta:hover {
  background: var(--primary);
  color: white;
}
.card-cta-primary {
  background: var(--primary);
  color: white;
}
.card-cta-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* ============= HOW ============= */
.how {
  background: white;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 720px) {
  .how-grid { grid-template-columns: 1fr; }
}
.how-step {
  text-align: center;
  padding: 24px;
}
.how-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(31,111,235,0.30);
}
.how-step h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}
.how-step p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ============= WHY ============= */
.why { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 920px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.why-icon {
  font-size: 28px;
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 800;
}
.why-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
}
.why-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.55;
}

/* ============= MOTIVATION ============= */
.motivation {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  color: white;
  text-align: center;
}
.motivation-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}
.motivation-accent {
  background: linear-gradient(90deg, #fff 0%, #ffd166 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.motivation-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 32px;
}
@media (max-width: 720px) {
  .motivation-title { font-size: 28px; }
  .motivation-sub { font-size: 16px; }
}

/* ============= TESTIMONIALS ============= */
.testimonials { background: white; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testi-quote {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 700;
  font-size: 15px;
}
.avatar-1 { background: linear-gradient(135deg, #6366f1, #ec4899); }
.avatar-2 { background: linear-gradient(135deg, #10b981, #14b8a6); }
.avatar-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-loc { font-size: 12.5px; color: var(--muted); }

/* ============= FAQ ============= */
.faq { background: var(--bg-soft); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--muted);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============= FINAL CTA ============= */
.final-cta {
  background: var(--bg-band);
  color: white;
  text-align: center;
}
.final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.final-cta p {
  font-size: 17px;
  color: #cbd5e1;
  max-width: 560px;
  margin: 0 auto 28px;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.final-cta .btn-mega-outline {
  background: transparent;
  color: white;
  border-color: white;
}
.final-cta .btn-mega-outline:hover {
  background: white;
  color: var(--bg-band);
}
@media (max-width: 720px) {
  .final-cta h2 { font-size: 28px; }
}

/* ============= FOOTER ============= */
.foot {
  background: #0a0f1c;
  color: #94a3b8;
  padding: 60px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-brand .nav-title { color: white; }
.foot-brand .nav-sub { color: #94a3b8; }
.foot-tag {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.5;
}
.foot h4 {
  color: white;
  font-size: 14px;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.foot a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}
.foot a:hover { color: white; }
.foot-addr {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 12px;
  line-height: 1.55;
}
.foot-bar {
  border-top: 1px solid #1e293b;
  padding: 20px 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ============= LEAD MODAL ============= */
.lead-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.lead-overlay.hidden { display: none !important; }
.lead-modal {
  background: white;
  border-radius: 18px;
  width: 100%;
  max-width: 460px;
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}
.lead-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
}
.lead-close:hover { background: var(--bg-soft); color: var(--text); }
.lead-head { margin-bottom: 22px; }
.lead-service-tag {
  display: inline-block;
  background: #e0e7ff;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.lead-modal h2 {
  font-size: 24px;
  margin: 12px 0 6px;
  font-weight: 800;
}
.lead-price {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}
.lead-modal label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 14px 0 6px;
}
.lead-modal input, .lead-modal textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-soft);
}
.lead-modal input:focus, .lead-modal textarea:focus {
  outline: 2px solid #c9defc;
  border-color: var(--primary);
  background: white;
}
.lead-modal textarea { resize: vertical; min-height: 50px; }
.lead-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.lead-submit { padding: 13px; font-size: 15px; }
.btn-whatsapp {
  background: #25D366;
  color: white !important;
  padding: 13px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-whatsapp:hover { background: #1ebe5b; }
.lead-error {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 8px;
  font-size: 13.5px;
}
.lead-success {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: 8px;
  font-size: 13.5px;
}
.lead-fineprint {
  font-size: 11.5px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.5;
  text-align: center;
}

/* ============= FLOATING CONTACT ============= */
.contact-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.contact-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.15s;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}
.contact-whatsapp { background: #25D366; }
.contact-email    { background: var(--primary); }
