/* ================= ROOT & RESET ================= */
:root {
  --primary: #4f46e5;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --soft-bg: #f5f7ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #eef2f7;
  padding: 40px 0;
  overflow-x: hidden;
}

/* ================= PAGE WRAPPER ================= */
.page-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

/* ================= HERO ================= */


.hero-left h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: var(--primary);
}

.hero-left p {
  font-size: 18px;
  color: #444;
  max-width: 520px;
}

.pill {
  display: inline-block;
  background: #eef2ff;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-tags {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags span {
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  font-size: 14px;
}

.hero-right img {
  width: 100%;
  border-radius: 28px;
}

/* ================= LEAD SECTION ================= */
.lead-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 60px;
  overflow: hidden;
}

/* Gradient mesh */
.lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 10% 20%, rgba(79,70,229,0.12), transparent 60%),
    radial-gradient(500px 350px at 90% 10%, rgba(6,182,212,0.12), transparent 60%),
    radial-gradient(600px 400px at 50% 90%, rgba(245,158,11,0.10), transparent 60%);
  z-index: 0;
}

.lead-left,
.lead-right {
  position: relative;
  z-index: 1;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* Lead content */
.mini-pill {
  display: inline-block;
  background: #eef2ff;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
}

.lead-heading {
  font-size: 36px;
  margin-bottom: 16px;
}

.lead-subtext {
  font-size: 17px;
  color: #555;
  margin-bottom: 24px;
  max-width: 520px;
}

.lead-points {
  list-style: none;
  margin-bottom: 30px;
}

.lead-points li {
  margin-bottom: 12px;
  font-size: 16px;
}

.lead-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lead-trust div {
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  font-size: 14px;
}

/* ================= FORM ================= */
.form-card {
  max-width: 460px;
  background: #ffffff;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.form-card h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.3;
}


input, select {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 10px;
}


/* ================= FEATURES ================= */
.features {
  padding: 80px 60px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-top: 6px solid var(--primary);
  transition: transform .35s ease, box-shadow .35s ease;
}

.feature-card:nth-child(2){border-top-color:var(--secondary);}
.feature-card:nth-child(3){border-top-color:var(--accent);}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* ================= STEPS ================= */
.steps {
  padding: 80px 60px;
  background: #f8fbff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.step-card {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.step-card span {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* ================= TRUST ================= */
.trust {
  background: var(--soft-bg);
  padding: 50px;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-grid div {
  background: #ffffff;
  padding: 14px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  font-weight: 500;
}

.trust-grid i {
  color: var(--primary);
  font-size: 20px;
}

/* ================= FINAL CTA ================= */
.final-cta {
  padding: 80px 40px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(79,70,229,0.15), transparent 60%),
    #ffffff;
}

.final-cta a {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.cta-trust {
  margin-top: 14px;
  font-size: 14px;
  color: #6b7280;
}

/* ================= MICRO ANIMATIONS ================= */
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}

.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-card {
  opacity: 0;
  transform: translateY(30px) scale(.97);
  transition: opacity .7s ease, transform .7s ease;
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(79,70,229,.5); }
  70% { box-shadow: 0 0 0 20px rgba(79,70,229,0); }
  100% { box-shadow: 0 0 0 0 rgba(79,70,229,0); }
}

/* ================= FLOATING BUTTONS ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 999;
}

.chatbot-icon {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
}

/* ================= CHATBOT ================= */
.chatbot-window {
  position: fixed;
  bottom: 170px;
  right: 25px;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  display: none;
  overflow: hidden;
  z-index: 999;
}

.chat-header {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: white;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chat-header button {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
}

.chat-body {
  padding: 14px;
  max-height: 220px;
  overflow-y: auto;
  background: #fafafa;
}

.bot-msg {
  background: #f3f4f6;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 14px;
}

.chat-options {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.chat-options button {
  background: #eef2ff;
  color: var(--primary);
  border: none;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}

.chat-options button:hover {
  background: var(--primary);
  color: #ffffff;
}
/* ================= PREMIUM FOOTER CTA ================= */
.footer-cta {
  padding: 120px 40px 80px;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(79,70,229,0.18), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  text-align: center;
}

.footer-cta-card {
  max-width: 720px;
  margin: auto;
  padding: 60px 40px;
  border-radius: 32px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow:
    0 40px 120px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.footer-cta-card h2 {
  font-size: 34px;
  margin-bottom: 26px;
}

.footer-cta-btn {
  display: inline-block;
  padding: 18px 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(79,70,229,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(79,70,229,0.45);
}

.footer-trust {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6b7280;
}

/* ================= FOOTER ================= */
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-left h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-left p {
  max-width: 420px;
  font-size: 14px;
  color: #94a3b8;
}

.footer-right {
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  align-items: center;
}

/* ================= MOBILE FOOTER ================= */
@media (max-width: 768px) {
  .footer-cta-card {
    padding: 46px 26px;
  }

  .footer-cta-card h2 {
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= PREMIUM FOOTER ================= */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #0b1225, #020617);
  border-radius: 0 0 32px 32px;
  padding: 60px 70px;
  overflow: hidden;
}

/* INNER LAYOUT */
.footer-inner {
  display: flex;
  align-items: center;        /* VERTICAL CENTER */
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT BLOCK */
.footer-left h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-left p {
  color: #9ca3af;
  font-size: 14px;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BADGES */
.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badges span {
  background: rgba(255,255,255,0.08);
  color: #e5e7eb;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

/* RIGHT BLOCK */
.footer-right {
  color: #9ca3af;
  font-size: 13px;
  white-space: nowrap;
  align-self: center; /* PERFECT vertical alignment */
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 20px;
  }

  .footer-badges {
    justify-content: center;
  }
}
/* ================= FINAL PHONE FIELD (NO BLACK BOX) ================= */

.phone-field {
  display: flex;
  align-items: center;
  height: 56px;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 0 14px;
  background: #ffffff;
  margin-bottom: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

/* COUNTRY CODE (LOCKED WIDTH) */
.phone-field select {
  width: 88px;
  min-width: 88px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
}

/* DIVIDER LINE */
.phone-field::after {
  content: "";
  width: 1px;
  height: 26px;
  background: #e5e7eb;
  margin: 0 12px;
}

/* PHONE INPUT */
.phone-field input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
  font-size: 14px;
  color: #111827;
}

/* PLACEHOLDER */
.phone-field input::placeholder {
  color: #9ca3af;
}

/* SINGLE CLEAN FOCUS */
.phone-field:focus-within {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}


/* INNER ROW */
.hero-services {
  display: inline-flex;
  gap: 12px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

/* HOVER MICRO-INTERACTION */
.service-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 80px 70px;
  align-items: center;        /* 🔥 KEY FIX */
  position: relative;
}

.hero-tags {
  background: rgba(255,255,255,0.6);
  padding: 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}


/* MOBILE BEHAVIOR */
@media (max-width: 900px) {
  .hero-services {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* MOBILE: allow wrap cleanly */
@media (max-width: 900px) {
  .hero-services {
    flex-wrap: wrap;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 30px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    margin-top: 30px;
  }
}


/* MOBILE SAFETY */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 30px;
  }
}

/* ================= HERO SUPPORT SECTION ================= */

.hero-support {
  margin-top: 40px;
  padding: 50px;
  border-radius: 28px;
  background:
    radial-gradient(400px 300px at 15% 20%, rgba(79,70,229,0.18), transparent 60%),
    radial-gradient(400px 300px at 85% 80%, rgba(6,182,212,0.18), transparent 60%),
    #f5f7ff;
}

.hero-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.support-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  animation: rise 0.9s ease forwards;
}

.support-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f172a;
}

.support-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.support-card.highlight {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
}

.support-card.highlight h4,
.support-card.highlight p {
  color: #fff;
}

.support-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stat {
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  animation: floatCard 6s ease-in-out infinite;
}

.stat strong {
  font-size: 22px;
  display: block;
  color: #0f172a;
}

.stat span {
  font-size: 12px;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-support-grid {
    grid-template-columns: 1fr;
  }

  .support-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ================= HERO FINAL LOCK ================= */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 80px 70px;
  align-items: center;
  position: relative;
  background: #f5f7ff;
}

.hero-left {
  z-index: 2;
}

.hero-left h1 {
  font-size: 44px;
  line-height: 1.25;
  font-weight: 700;
  color: #000;
}

.hero-left h1 span {
  color: var(--primary);
}

.hero-left p {
  margin-top: 14px;
  font-size: 16px;
  color: #475569;
  max-width: 520px;
}

.hero-tags {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags span {
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* IMAGE SIDE */

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  width: 100%;
  max-width: 480px;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(135deg,
      rgba(79,70,229,0.18),
      rgba(6,182,212,0.18));
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  background: #fff;
}

/* MOBILE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }

  .hero-right {
    margin-top: 40px;
  }
}
/* ================= LAYOUT STABILITY FIX ================= */

/* Force all main sections to respect wrapper width */
.hero,
.hero-support,
.lead-section,
.features,
.steps,
.trust,
.footer-cta {
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix hero-support breaking layout */
.hero-support {
  position: relative;
  width: 100%;
  margin: 60px auto 0;
}

/* Prevent grid sections from pushing sideways */
.lead-section {
  width: 100%;
  margin: 0 auto;
}

/* Kill accidental horizontal shifts */
body,
.page-wrapper {
  overflow-x: hidden;
}

/* Ensure sections stack vertically */
.hero,
.hero-support,
.lead-section {
  clear: both;
  display: block;
}

/* MOBILE HARD FIX */
@media (max-width: 900px) {
  .hero-support,
  .lead-section {
    margin-left: 0;
    margin-right: 0;
  }
}
/* ================= LEAD SECTION LAYOUT FIX ================= */

.lead-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* text | form */
  align-items: center;
  gap: 60px;
  min-height: 720px;
  overflow: hidden;
}
.lead-left {
  max-width: 560px;
}
.lead-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.form-card {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .lead-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .lead-right {
    justify-content: center;
    margin-top: 40px;
  }
}

/* ================= PAGE CARD FIX ================= */

/* Ensure page always looks like a floating card */
.page-wrapper{
  background:#ffffff;
  border-radius:32px;
  box-shadow:0 40px 120px rgba(0,0,0,0.10);
}

/* Desktop spacing */
@media(min-width:1024px){
  body{
    padding:40px 0;
  }
  .page-wrapper{
    margin:0 auto;
  }
}

/* Mobile spacing fix */
@media(max-width:900px){
  body{
    padding:16px;
  }
  .page-wrapper{
    border-radius:24px;
  }
}

/* Small mobile */
@media(max-width:480px){
  body{
    padding:12px;
  }
  .page-wrapper{
    border-radius:20px;
  }
}

/* ================= UNIVERSAL RESPONSIVE LAYER ================= */

/* Base safety */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Page wrapper – always centered */
.page-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= DESKTOP & LARGE SCREENS ================= */
@media (min-width: 1200px) {
  .hero {
    padding: 90px 80px;
  }

  .lead-section,
  .features,
  .steps,
  .footer-cta {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* ================= LAPTOP / SMALL DESKTOP ================= */
@media (max-width: 1199px) {
  .hero {
    padding: 80px 60px;
  }

  .lead-section {
    padding: 70px 50px;
  }
}

/* ================= TABLET ================= */
@media (max-width: 900px) {

  .hero,
  .lead-section {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero {
    padding: 60px 40px;
  }

  .hero-right {
    margin-top: 40px;
  }

  .hero-support {
    padding: 36px 30px;
  }

  .features,
  .steps {
    padding: 60px 40px;
  }

  .feature-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= MOBILE (ALL PHONES) ================= */
@media (max-width: 768px) {

  body {
    padding: 16px 0;
  }

  .page-wrapper {
    border-radius: 22px;
  }

  /* HERO CARD */
  .hero {
    padding: 36px 22px;
    gap: 26px;
  }

  .hero-left h1 {
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.4px;
  }

  .hero-left p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .pill {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .hero-tags {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-tags span {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* SUPPORT SECTION */
  .hero-support {
    padding: 26px 18px;
    margin-top: 30px;
  }

  .hero-support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    padding: 18px;
  }

  .support-stats {
    justify-content: center;
  }

  /* LEAD SECTION */
  .lead-section {
    padding: 40px 22px;
    gap: 36px;
  }

  .lead-heading {
    font-size: 26px;
    line-height: 1.3;
  }

  .lead-subtext {
    font-size: 15px;
  }

  /* FORM */
  .form-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  input, select, button {
    font-size: 14px;
  }

  /* FLOATING BUTTONS SAFE ZONE */
  .whatsapp-float {
    bottom: 18px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .chatbot-icon {
    bottom: 86px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* ================= VERY SMALL PHONES ================= */
@media (max-width: 420px) {

  .hero-left h1 {
    font-size: 26px;
  }

  .lead-heading {
    font-size: 24px;
  }

  .form-card {
    padding: 22px 16px;
  }
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
/* ================= HERO (FINAL FIXED) ================= */

/* ================= HERO LAYOUT ================= */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 70px;
  background: #f5f7ff;
  border-radius: 32px;
  align-items: center;
}

/* LEFT */
.hero-left h1 {
  font-size: 44px;
  line-height: 1.25;
}

.hero-left p {
  margin-top: 16px;
  font-size: 16px;
  color: #475569;
  max-width: 520px;
}

/* RIGHT IMAGE */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  max-width: 480px;
  width: 100%;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(79,70,229,0.18),
    rgba(6,182,212,0.18)
  );
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 24px;
  }

  .hero-right {
    order: -1; /* image first */
    margin-bottom: 30px;
  }

  .hero-left h1 {
    font-size: 32px;
  }
}
/* ================= HERO CTA BUTTON ================= */

.hero-cta-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(79,70,229,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(79,70,229,0.45);
}
html {
  scroll-behavior: smooth;
}
/* MICRO INTERACTIONS */
button, .hero-cta-btn {
  transition: all .25s ease;
}

button:active {
  transform: scale(0.97);
}

input, select {
  transition: border-color .25s ease, box-shadow .25s ease;
}

input:focus, select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.feature-card, .support-card, .form-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover,
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-card {
  opacity: 0;
  transform: translateY(25px) scale(.98);
  transition: opacity .6s ease, transform .6s ease;
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  padding: 14px;
  display: none;
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.sticky-cta button {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}
.trust-strip {
  text-align: center;
  padding: 60px 20px;
}

.trust-strip p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-logos span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  font-size: 13px;
  font-weight: 500;
}

.stats-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  padding: 22px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}

.stat-box strong {
  font-size: 26px;
  color: #0f172a;
}

.stat-box span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}
.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
}



