/* ══════════════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════════════ */
:root {
  --purple:      #6c47ff;
  --purple-dark: #4f2fe0;
  --purple-light:#ede9ff;
  --purple-mid:  #c4b5fd;
  --green:       #22c55e;
  --green-light: #dcfce7;
  --gray-50:     #f8f8fc;
  --gray-100:    #f1f0f7;
  --gray-200:    #e5e4f0;
  --gray-400:    #a09db8;
  --gray-600:    #6b6882;
  --gray-900:    #16142b;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(108,71,255,.08);
  --shadow-md:   0 8px 32px rgba(108,71,255,.12);
  --shadow-lg:   0 20px 60px rgba(108,71,255,.16);
  --radius:      20px;
  --radius-sm:   12px;
  --font:        'Plus Jakarta Sans', sans-serif;
}

/* ══════════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { user-select: none; -webkit-user-select: none; -webkit-tap-highlight-color: transparent; }
*:focus { outline: none; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--purple-mid); border-radius: 10px; }

/* ══════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 100px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .22s ease;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,71,255,.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  box-shadow: 0 8px 30px rgba(108,71,255,.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-light);
}
.btn-white {
  background: #fff;
  color: var(--purple);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Arrow icon in btn */
.arrow { font-size: 18px; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-200);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--purple);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.logo span { color: var(--purple); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color .2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 48px; width: auto; display: block; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--purple); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(108,71,255,.08);
  top: -80px; right: -80px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: rgba(34,197,94,.06);
  bottom: 0; left: -120px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hero-title .hl {
  color: var(--purple);
  position: relative;
}
.hero-title .hl::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px; right: 0;
  height: 6px;
  background: var(--purple-light);
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.trust-avatars { display: flex; }
.trust-avatars img,
.trust-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background: var(--purple-light);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  overflow: hidden;
}
.trust-avatars .trust-av:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--gray-600); }
.trust-text strong { color: var(--gray-900); }
.trust-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }

.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.hero-card-top {
  background: linear-gradient(135deg, var(--purple) 0%, #9b6dff 100%);
  padding: 32px 32px 56px;
  position: relative;
  overflow: hidden;
}
.hero-card-top::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  top: -60px; right: -40px;
}
.hero-card-top::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  bottom: -40px; left: 20px;
}
.hc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hc-amount {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
}
.hc-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.hero-card-bottom { padding: 24px 32px 32px; }
.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.hc-row:last-child { border-bottom: none; padding-bottom: 0; }
.hc-item-left { display: flex; align-items: center; gap: 12px; }
.hc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.hc-icon.purple { background: var(--purple-light); }
.hc-icon.green  { background: var(--green-light); }
.hc-icon.orange { background: #fff7ed; }
.hc-item-name { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.hc-item-sub { font-size: 12px; color: var(--gray-400); }
.hc-amount-sm { font-size: 15px; font-weight: 700; }
.hc-amount-sm.pos { color: var(--green); }
.hc-amount-sm.neg { color: #ef4444; }

.fc {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fc-1 { top: 24px; left: -36px; animation-delay: 0s; }
.fc-2 { bottom: 60px; right: -36px; animation-delay: 2s; }
.fc-emoji { font-size: 22px; }
.fc-text strong { display: block; font-size: 13px; font-weight: 700; }
.fc-text span  { font-size: 11px; color: var(--gray-400); }

/* ══════════════════════════════════════════════════════
   LOGOS BAR
══════════════════════════════════════════════════════ */
.logos-bar {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-200);
  letter-spacing: -.02em;
  transition: color .2s;
}
.logo-item:hover { color: var(--gray-400); }

/* ══════════════════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-purple { background: var(--purple); }

.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-desc { margin: 12px auto 0; }
.sec-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--gray-900);
  margin-top: 12px;
}
.sec-title .hl { color: var(--purple); }
.sec-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.svc-card.featured {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.svc-card.featured .svc-desc { color: rgba(255,255,255,.75); }
.svc-card.featured .svc-link { color: #fff; }
.svc-card.featured .svc-link::after { background: rgba(255,255,255,.3); }

.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.svc-card:not(.featured) .svc-icon-wrap { background: var(--purple-light); }
.svc-card.featured .svc-icon-wrap { background: rgba(255,255,255,.15); }

.svc-title { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.01em; }
.svc-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  position: relative;
}
.svc-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px; right: 0;
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.svc-link:hover::after { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.step-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.step-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .25s, box-shadow .25s;
}
.step-item:hover {
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step-num.outline {
  background: var(--purple-light);
  color: var(--purple);
}
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.ai-widget { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.ai-top {
  background: linear-gradient(90deg, var(--purple), #9b6dff);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-avatar-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.ai-name { font-size: 14px; font-weight: 700; color: #fff; }
.ai-status { font-size: 11px; color: rgba(255,255,255,.7); }
.ai-status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 4px;
}
.ai-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}
.msg.bot { background: var(--gray-50); color: var(--gray-900); border-radius: 4px 14px 14px 14px; }
.msg.user { background: var(--purple); color: #fff; align-self: flex-end; border-radius: 14px 4px 14px 14px; }
.typing-dots { display: flex; gap: 4px; padding: 2px 0; }
.typing-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-400);
  animation: tdot 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: .2s; }
.typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes tdot {
  0%,60%,100% { transform: translateY(0); opacity:.4; }
  30%          { transform: translateY(-5px); opacity:1; }
}

/* ══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════ */
.stats-bar { padding: 72px 0; background: var(--purple); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-col {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-col:last-child { border-right: none; }
.stat-num { font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; }
.stat-plus { color: var(--green); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 8px; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: #fff;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow .25s, transform .25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple-light);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--purple);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.testi-role { font-size: 12px; color: var(--gray-400); }

/* ══════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════ */
.cta-band { padding: 100px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--purple) 0%, #9b6dff 60%, #c084fc 100%);
  border-radius: 28px;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  right: -100px; top: -120px;
}
.cta-box::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  left: -60px; bottom: -80px;
}
.cta-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.cta-sub { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.6; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer { background: var(--gray-900); padding: 64px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand .logo span { color: var(--purple-mid); }
.footer-brand p { font-size: 14px; color: var(--gray-400); line-height: 1.7; max-width: 240px; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: #6b6882; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--gray-600); }
.footer-bottom span { color: var(--purple-mid); }
.social-row { display: flex; gap: 10px; }
.soc-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: background .2s, border-color .2s;
}
.soc-btn:hover { background: var(--purple); border-color: var(--purple); }

/* ══════════════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.contact-info-desc { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
}
.contact-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}
.contact-form {
  background: #fff;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,71,255,.08);
}
.form-group textarea { height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 15px; }

/* ══════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px 13px 16px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}
.wa-ico { width: 26px; height: 26px; flex-shrink: 0; }
.wa-ping {
  position: absolute;
  top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.wa-ping::before {
  content: '';
  width: 8px; height: 8px;
  background: #25d366;
  border-radius: 50%;
}
.wa-ping::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: wa-ring 1.8s ease-out infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; padding: 48px 40px; }
}
@media (max-width: 768px) {
  .nav-logo-img { height: 36px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .logos-row { gap: 28px; }
  .cta-box { padding: 40px 28px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}
