:root{
  --primary: #13ec6d;
  --primary-green: #059669;
  --secondary-blue: #0369a1;
  --bg-light: #f6f8f7;
  --bg-dark: #102218;
  --dark-navy: #0a192f;
  --border: rgba(15, 23, 42, 0.08);
  --text: #0f172a;
  --muted: #5b6475;
}

html{ scroll-behavior: smooth; }
body{
  font-family: "Spline Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text);
}

.page-offset{ padding-top: 84px; }

.btn-pill{ border-radius: 999px; }
.text-secondary-blue{ color: var(--secondary-blue) !important; }
.text-primary-green{ color: var(--primary-green) !important; }
.text-slate-400{ color: rgba(148,163,184,1) !important; }

.navbar-glass{
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16,185,129,0.08);
}

.brand-icon{
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 18px 60px rgba(16,185,129,0.20);
}
.brand-icon.sm{ width: 36px; height: 36px; border-radius: 12px; }
.brand-text{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--dark-navy);
}
.brand-accent{ color: var(--primary-green); }

.btn-gradient{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-green) 100%);
  border-radius: 24px;
}
.text-gradient{
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;    
  color: transparent;
}

.section{ padding: 88px 0; }
.section-soft{
  background: linear-gradient(180deg, rgba(246,248,247,0.85), rgba(246,248,247,0.60));
}
.section-kicker{
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.hero-section{
  padding: 90px 0 110px;
  position: relative;
}
.hero-title{
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--dark-navy);
  margin: 14px 0 14px;
}
.hero-subtitle{
  font-size: 20px;
  color: rgba(71,85,105,1);
  max-width: 620px;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.18);
  color: var(--primary-green);
  font-weight: 800;
  font-size: 13px;
}

.pulse-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--primary-green);
  box-shadow: 0 0 0 6px rgba(16,185,129,0.12);
  position: relative;
}
.pulse-dot::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius: 999px;
  border: 2px solid rgba(16,185,129,0.35);
  animation: pulse 1.5s infinite ease;
}
@keyframes pulse{
  0%{ transform: scale(.6); opacity: .9; }
  100%{ transform: scale(1.25); opacity: 0; }
}

.blob{
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}
.blob-green{
  width: 620px; height: 620px;
  right: -260px; top: -240px;
  background: radial-gradient(circle, rgba(16,185,129,0.14) 0%, rgba(16,185,129,0) 70%);
}
.blob-blue{
  width: 540px; height: 540px;
  left: -260px; bottom: -260px;
  background: radial-gradient(circle, rgba(3,105,161,0.12) 0%, rgba(3,105,161,0) 70%);
}

.hero-card{ position: relative; }
.hero-card-inner{
  position: relative;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(16,185,129,0.10);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 28px 90px rgba(2,6,23,0.12);
}
.hero-card-inner img{ position: relative; z-index: 1; }

.hero-decor{
  position: absolute;
  border-radius: 24px;
  pointer-events: none;
}
.hero-decor-1{
  width: 160px; height: 160px;
  right: -22px; bottom: -22px;
  background: rgba(3,105,161,0.10);
}
.hero-decor-2{
  width: 90px; height: 90px;
  left: -18px; top: -18px;
  background: rgba(16,185,129,0.10);
}

.floating-pill{
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 60px rgba(2,6,23,0.12);
  backdrop-filter: blur(10px);
}
.floating-top{ top: 14px; left: 14px; }
.floating-bottom{ bottom: 14px; right: 14px; }

.service-card{
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  border-color: rgba(16,185,129,0.45);
  box-shadow: 0 24px 80px rgba(2,6,23,0.10);
}
.icon-tile{
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(16,185,129,0.10);
  color: var(--primary-green);
  font-size: 28px;
}
.service-link{
  color: var(--primary-green);
  font-weight: 800;
  text-decoration: none;
}
.service-link:hover{ text-decoration: underline; }

.btn{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  will-change: transform;
  border-radius: 24px;
}
.btn:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 80px #0206171a;
}
.btn-gradient:hover{
  filter: brightness(1.02);
  box-shadow: 0 24px 80px #10b98138;
}
.btn-outline-secondary:hover{
  background-color: transparent !important;
  border-color: var(--primary-green) !important;
  color: var(--primary-green) !important;
}
.btn-outline-light:hover{
  border-color: #ffffff73;
}
.btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem #9646052e;   
}
@media (hover: none){
  .btn:hover{
    transform: none;
    box-shadow: none;
  }
}

.value-card{
  border-radius: 26px;
  padding: 28px 18px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.92);
}
.value-icon{
  font-size: 38px;
  color: var(--primary-green);
}
.value-emerald{
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.18);
}
.value-blue{
  background: rgba(3,105,161,0.08);
  border-color: rgba(3,105,161,0.16);
}
.value-slate{
  background: rgba(148,163,184,0.14);
  border-color: rgba(148,163,184,0.18);
}
.value-gradient{
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-blue) 100%);
  border: none;
  box-shadow: 0 22px 70px rgba(16,185,129,0.22);
}

.v-list li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  font-weight: 700;
  color: rgba(51,65,85,1);
  margin-bottom: 14px;
}
.v-bullet{
  width: 34px; height: 34px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(16,185,129,0.14);
  color: var(--primary-green);
  flex: 0 0 auto;
}

.tag-pill{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19,236,109,0.10);
  border: 1px solid rgba(19,236,109,0.20);
  color: var(--primary-green);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .10em;
}

.btn-filter{
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.90);
  font-weight: 800;
}
.btn-filter.active{
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
}

.portfolio-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.92);
  transition: transform .18s ease, box-shadow .18s ease;
}
.portfolio-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(2,6,23,0.10);
}

.badge-soft-emerald{
  background: rgba(19,236,109,0.12) !important;
  border: 1px solid rgba(19,236,109,0.20) !important;
  color: var(--primary-green) !important;
  font-weight: 800;
}
.badge-soft-slate{
  background: rgba(148,163,184,0.22) !important;
  border: 1px solid rgba(148,163,184,0.26) !important;
  color: rgba(71,85,105,1) !important;
  font-weight: 800;
}

.cta-navy{
  border-radius: 22px;
  padding: 26px;
  background: radial-gradient(600px 240px at 20% 30%, rgba(19,236,109,0.14), transparent 60%),
              radial-gradient(600px 240px at 80% 70%, rgba(3,105,161,0.12), transparent 60%),
              var(--dark-navy);
}
.text-emerald{ color: rgba(16,185,129,1) !important; }

.contact-section{
  background: var(--dark-navy);
  padding: 92px 0;
}
.contact-glow{
  position:absolute;
  width: 620px; height: 620px;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events:none;
}
.contact-glow-1{
  top: -200px; right: -200px;
  background: rgba(19,236,109,0.12);
}
.contact-glow-2{
  bottom: -220px; left: -220px;
  background: rgba(3,105,161,0.12);
}

.contact-info{
  display:flex;
  gap: 16px;
  align-items:flex-start;
}
.contact-ico{
  width: 56px; height: 56px;
  border-radius: 18px;
  display:grid; place-items:center;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: #fff;
  flex: 0 0 auto;
  transition: transform .18s ease, background .18s ease;
}
.contact-ico.emerald{ color: var(--primary-green); }
.contact-ico.blue{ color: var(--secondary-blue); }
.contact-info:hover .contact-ico{ transform: translateY(-2px); }

.form-card{
  position: relative;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(2,6,23,0.30);
  overflow: hidden;
}
.form-top-bar{
  height: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-green) 100%);
}
.soft-input{
  background: rgba(241,245,249,1) !important;
  border-color: rgba(226,232,240,1) !important;
}
.soft-input:focus{
  border-color: rgba(5,150,105,1) !important;
  box-shadow: 0 0 0 .25rem rgba(5,150,105,0.18) !important;
}

.footer-section{
  background: #fff;
  border-top: 1px solid rgba(16,185,129,0.08);
}
.footer-links a{
  color: rgba(100,116,139,1);
  text-decoration:none;
  font-weight: 600;
}
.footer-links a:hover{ color: var(--primary-green); }

.social-btn{
  width: 44px; height: 44px;
  border-radius: 999px;
  display:grid; place-items:center;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(248,250,252,1);
  color: rgba(100,116,139,1);
  text-decoration: none;
}
.social-btn:hover{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-green) 100%);
  color: #fff;
  border-color: transparent;
}

.live-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(16,185,129,1);
  box-shadow: 0 0 0 8px rgba(16,185,129,0.12);
  animation: live 1.2s infinite ease-in-out;
}
@keyframes live{
  0%,100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(0.8); opacity: .6; }
}

.footer-mini{
  color: rgba(100,116,139,1);
  text-decoration:none;
  font-weight: 700;
}
.footer-mini:hover{ color: var(--primary-green); }

@media (min-width: 992px){
  .values-col-right{
    margin-top: 34px;
  }
}

.method-card{
  border-radius: 36px;
  padding: 60px 40px;
  min-height: 430px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 30px 90px rgba(2,6,23,0.20);
}

.method-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 40px 120px rgba(2,6,23,0.28);
}

.method-card-green{
  background: linear-gradient(180deg, #2f4f4f 0%, #0f1f33 100%);
}

.method-card-blue{
  background: linear-gradient(180deg, #6b7280 0%, #0f1f33 100%);
}

.method-card-dark{
  background: linear-gradient(180deg, #8b949e 0%, #0f1f33 100%);
}

.method-icon{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16,185,129,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.method-list{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.method-list li{
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
  font-weight: 500;
  opacity: .95;
}

.method-list li::before{
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.method-wrapper{
  max-width: 1100px;
}

.method-card{
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  min-height: 430px;
}

.method-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.method-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2,6,23,0.25) 0%,
    rgba(2,6,23,0.55) 45%,
    rgba(2,6,23,0.85) 100%
  );
}

.method-content{
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  color: #fff;
}

.method-icon{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16,185,129,0.22);
  display: grid;
  place-items: center;
  font-size: 26px;
}

.whatsapp-wrapper{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: whatsappSlideIn .6s ease forwards;
}

.whatsapp-float{
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(37,211,102,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(37,211,102,0.5);
}

.whatsapp-float::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

.whatsapp-tooltip{
  background: #0a192f;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all .3s ease;
}

.whatsapp-wrapper:hover .whatsapp-tooltip{
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse{
  0%{ transform: scale(1); opacity: .6; }
  70%{ transform: scale(1.6); opacity: 0; }
  100%{ opacity: 0; }
}

@keyframes whatsappSlideIn{
  0%{ opacity: 0; transform: translateY(30px); }
  100%{ opacity: 1; transform: translateY(0); }
}

@media (max-width: 576px){
  .whatsapp-tooltip{
    display: none;
  }
  .whatsapp-float{
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

.success-section{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  background: radial-gradient(
      600px 300px at 20% 30%,
      rgba(19,236,109,0.08),
      transparent 60%
    ),
    radial-gradient(
      600px 300px at 80% 70%,
      rgba(3,105,161,0.08),
      transparent 60%
    ),
    #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-card{
  max-width: 700px;
  width: 100%;
  background: #ffffff;
  border-radius: 32px;
  padding: 60px 40px;
  box-shadow: 0 40px 120px rgba(2,6,23,0.10);
  border: 1px solid var(--border);
}

.success-icon{
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(16,185,129,0.10);
  color: var(--primary-green);
  font-size: 48px;
  margin: 0 auto 30px;
  box-shadow: 0 20px 60px rgba(16,185,129,0.18);
  animation: successPop .6s ease forwards;
}

.success-title{
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--secondary-blue);
  margin-bottom: 20px;
}

.success-text{
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
}

.success-progress{
  width: 180px;
  height: 6px;
  background: rgba(15,23,42,0.08);
  border-radius: 999px;
  margin: 0 auto 14px;
  overflow: hidden;
}

.success-progress-bar{
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-green) 100%
  );
  animation: successShrink 3s linear forwards;
}

.success-counter{
  font-size: 14px;
  font-weight: 700;
  color: rgba(100,116,139,1);
  margin-bottom: 30px;
}

.success-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-green) 100%
  );
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 20px 60px rgba(16,185,129,0.25);
}

.success-btn:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(16,185,129,0.35);
}

@keyframes successPop{
  0%{ transform: scale(.7); opacity: 0; }
  100%{ transform: scale(1); opacity: 1; }
}

@keyframes successShrink{
  from{ width: 100%; }
  to{ width: 0%; }
}


@media (max-width: 768px){
  .success-card{
    padding: 40px 24px;
  }

  .success-icon{
    width: 90px;
    height: 90px;
    font-size: 38px;
  }
}
