:root{
  --green:#1DFBAF;
  --accent-dark:#11AC77;
  --navy:#101F40;
  --navy-2:#32446C;
  --white:#FFFFFF;
  --bg:#EEF4F8;
  --text:#1E2430;
  --muted:#6C7487;
  --line:#d4d4d4;
  --shadow:0 16px 40px rgba(16,31,64,.08);
  --shadow-soft:0 10px 28px rgba(16,31,64,.06);
  --radius-xl:28px;
  --radius-lg:18px;
  --radius-md:14px;
  --container:1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{overflow-x:hidden}

body{
  margin:0;
  font-family:"Plus Jakarta Sans",sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
svg{
  width:1.35rem;
  height:1.35rem;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.container {
  width:100%;
  max-width: 1280px;
  margin:0 auto;
}

/* =========================
   GLOBAL SECTION PADDING
========================= */
.section{
  padding:4% 6%;
}

.hero.section{
  padding:4% 6% 0;
}

.site-header .container{
  padding-left:6%;
  padding-right:6%;
  width: 100%;
  max-width: 100%;
}

@media (min-width:1441px) {
  .site-header .container{
    max-width: 1280px;
    padding: 0px !important;
  }
}

@media (max-width:1024px){
  .section{
    padding:8%;
  }
}

  .hero.section{
    padding:8% 8% 0;
  }

  .site-header .container{
    padding-left:8%;
    padding-right:8%;
  }
}

@media (max-width:768px){
  .section{
    padding:12% 4%;
  }

  .hero.section{
    padding:12% 4% 0;
  }

  .site-header .container{
    padding-left:4%;
    padding-right:4%;
  }
}

/* =========================
   REVEAL
========================= */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease,transform .55s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   HEADER
========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  font-size:24px;
  font-weight:800;
  letter-spacing:.01em;
  color:#111;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
}
.main-nav a{
  font-size:18px;
  font-weight:500;
  color:#111;
  transition:opacity .2s ease;
}
.main-nav a:hover{opacity:.76}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 20px;
  border-radius:999px;
  transition:transform .22s ease,box-shadow .22s ease,opacity .22s ease;
}
.btn:hover{transform:translateY(-1px)}

.btn-primary{
  background:var(--green);
  color:var(--navy);
  font-size:18px;
  font-weight:700;
  min-height:50px;
  padding:0 22px;
  box-shadow:0 12px 26px rgba(29,251,175,.28);
}

.btn-nav{
  background:#27365b;
  color:var(--white) !important;
  font-weight:500 !important;
  min-height:42px;
  padding: 12px 24px;
  font-size:18px;
  border-radius:999px;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  padding:0;
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--navy);
  margin:4px auto;
  border-radius:999px;
}

.mobile-nav{
  display:none;
  padding:0 0 14px;
}
.mobile-nav a{
  display:block;
  padding:0 4%;
  font-size:16px;
  font-weight:600;
  margin-bottom: 20px;
}
.mobile-nav.open{display:block}

/* =========================
   HERO
========================= */
.hero{
  background:
    radial-gradient(circle at 9% 18%, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 15%, transparent 16%),
    radial-gradient(circle at 18% 70%, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 11%, transparent 12%),
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.08) 0, rgba(255,255,255,.08) 26%, transparent 27%),
    radial-gradient(circle at 84% 58%, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 13%, transparent 14%),
    linear-gradient(90deg,#182440 0%,#243869 64%,#334c86 100%);
  overflow:hidden;
}

.hero-grid{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:120px;
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 60px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .hero-copy {
    width: 100% !important;
  }
}


.hero-copy,
.hero-visual{
  width:50%;
}

@media (max-width: 1024px) {
  .hero-visual {
    width: 80% !important;
  }
}

.hero-copy {
  max-width:none;
  padding-bottom: 6%;
}

.section-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#11AC7720;
  color:#11AC77;
  border-radius:999px;
  padding:8px 14px;
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}
.section-pill::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#11AC77;
}
.section-pill--dark{
  color:#FFFFFF;
  background:rgba(255,255,255,.14);
}
.section-pill--dark::before{
  background:#1DFBAF;
}

.hero h1{
  margin:0 0 16px;
  color:var(--white);
  font-size:56px;
  line-height:1.1em;
  letter-spacing:-1.6px;
  text-wrap:balance;
}

.hero p{
  margin:0 0 24px;
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.78;
  padding:20px 14px 20px 0;
}

.hero-visual{
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
}
.hero-visual img{
  width:100%;
  max-width: auto;
  margin-left:auto;
  margin-bottom:0;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

/* =========================
   HEADINGS
========================= */
.section-head.split{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:26px;
}

.section-head p {
  margin-top: auto !important;
}

.section-head.split > div,
.section-head.split > p{
  width:50%;
}

.section-head h2,
.products-copy h2,
.center-head h2,
.app-copy h2,
.testimonial-copy h2{
  margin:0;
  color:#111;
  font-size:40px;
  line-height:1.3;
  letter-spacing:-.04em;
}

.section-head p,
.products-copy p,
.center-head p,
.app-copy p,
.testimonial-copy p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.78;
}

/* =========================
   REASONS
========================= */
.reason-grid{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.reason-grid .card{
  width:calc(33.333% - 12px);
}

.card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow-soft);
  min-height:194px;
  border:1px solid rgba(16,31,64,.05);
  transition:transform .24s ease,box-shadow .24s ease;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.icon-box{
  width:52px;
  height:52px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(29,251,175,.15);
  color:#22ae7f;
  margin-bottom:34px;
}
.icon-box.small{
  width:44px;
  height:44px;
  margin:0;
  flex:0 0 auto;
  border-radius:12px;
}
.icon-box svg{
  width:36px;
  height:36px;
  stroke-width:0;
}
.icon-box.small svg{
  width:32px;
  height:32px;
}

.card h3,
.product-card h3,
.step-item h3{
  margin:0 0 12px;
  font-size:18px;
  line-height:1.25;
  letter-spacing:-.02em;
  color:#181818;
}
.card p,
.product-card p,
.step-item p,
.media-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.72;
}

/* =========================
   APP SECTION
========================= */
.app-showcase{
  background:
    radial-gradient(circle at 16% 44%, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 10%, transparent 11%),
    radial-gradient(circle at 78% 15%, rgba(255,255,255,.09) 0, rgba(255,255,255,.09) 22%, transparent 23%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.07) 0, rgba(255,255,255,.07) 19%, transparent 20%),
    linear-gradient(90deg,#10214A 0%,#162E68 49%,#23B99A 100%);
}

.app-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

@media (max-width: 768px) {
    .app-grid {
        gap: 40px;
    }
}

.app-copy,
.app-image{
  width:50%;
}

@media (max-width: 768px) {
    .app-copy {
        text-align: center;
    }
}

.app-copy{max-width:none}
.app-copy h2,.app-copy p{color:var(--white)}
.app-copy p{
  margin:18px 0 24px;
  padding:20px 0 12px;
  color:rgba(255,255,255,.74);
}
.app-image{
  display:flex;
  justify-content:flex-end;
}
.app-image img{
  width:100%;
  margin-left:auto;
}

/* =========================
   PRODUCTS
========================= */
.products-grid{
  display:flex;
  align-items:flex-start;
  gap:80px;
}

@media (max-width: 768px) {
  .products-grid{
  gap:40px;
}
}

.products-copy{
  width:40%;
}
.products-panel{
  width:60%;
}

.products-copy h2{max-width:100%}
.products-copy p{
  margin-top:20px;
  max-width:100%;
}

.product-categories{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}
.product-categories span{
  padding:8px 14px;
  border-radius:999px;
  background:rgba(29,251,175,.1);
  color:#3f8f74;
  font-size:12px;
  font-weight:700;
}

.product-cards{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.product-card{
  width:calc(50% - 7px);
  background:var(--white);
  border-radius:16px;
  box-shadow:var(--shadow-soft);
  padding:18px 16px;
  display:flex;
  align-items:flex-start;
  gap:16px;
  min-height:120px;
  border:1px solid rgba(16,31,64,.05);
  transition:transform .3s ease,box-shadow .3s ease;
}
.product-card:hover{
  transform:translateY(-4px) scale(1.02);
  box-shadow:var(--shadow);
}
.product-card h3{
  font-size:18px;
  margin-bottom:8px;
}
.product-card p{
  font-size:14px;
  line-height:1.7;
}

/* =========================
   STEPS
========================= */
.center-head{
  text-align:center;
  max-width:920px;
  margin:0 auto 40px;
}

.center-head h2{margin-bottom:14px}
.center-head p{
  max-width:680px;
  margin:0 auto;
}

.steps-grid{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  text-align:center;
  padding-top: 20px;
}

@media (max-width: 480px) {
    .steps-grid {
    display: flex !important;
    gap: 40px;
  }
}

@media (max-width: 768px) {
    .steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.step-item{
  width:calc(25% - 18px);
}
.step-item img{
  width:102px;
  height:102px;
  object-fit:contain;
  margin:0 auto 14px;
  filter:drop-shadow(0 10px 18px rgba(16,31,64,.16));
  transition:transform .28s ease;
}
.step-item:hover img{
  transform:translateY(-4px) scale(1.03);
}
.step-item h3{
  font-size:24px;
  line-height:1.18;
  margin-bottom:8px;
}
.step-item p{
  max-width:100%;
  margin:0 auto;
  font-size:16px;
  line-height:1.7;
}

/* =========================
   TESTIMONIAL
========================= */
.testimonial-section{
  background:linear-gradient(90deg,#101F40 0%,#243563 100%);
}

.testimonial-layout{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:56px;
}

.testimonial-copy {
    max-width: 40%;
    width: 40%;
}

@media (max-width: 768px) {
  .testimonial-copy {
    text-align: center;
  }
}

.testimonial-copy,
.slider-card{
  width:50%;
}

.testimonial-copy{max-width:none}
.testimonial-copy h2,.testimonial-copy p{color:var(--white)}
.testimonial-copy p{
  margin-top:18px;
  color:rgba(255,255,255,.72);
  max-width:100%;
}

.slider-card{
  background:var(--white);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:34px 32px 74px;
  position:relative;
  border:1px solid rgba(29,251,175,.18);
  width: 60%;
  max-width: 100%;
}
.slide{display:none}
.slide.active{
  display:block;
  animation:fadeIn .28s ease;
}
@keyframes fadeIn{
  from{opacity:.2;transform:translateY(6px)}
  to{opacity:1;transform:none}
}

.stars{
  color:#F7D748;
  font-size:24px;
  letter-spacing:0px;
  margin-bottom:20px;
}
.slide p{
  margin:0 0 26px;
  color:#3d4353;
  font-size:22px;
  line-height:1.62;
}
.slide h3{
  margin:0 0 4px;
  color:#181818;
  font-size:20px;
}
.slide span{
  color:#11AC77;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
}

.slider-nav{
  position:absolute;
  right:32px;
  bottom:32px;
  display:flex;
  gap:20px;
}

/* =========================
   ARROWS
========================= */
.arrow{
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  display:grid;
  place-items:center;
  cursor:pointer;
  font-size:18px;
  transition:transform .2s ease, opacity .2s ease;
}
.arrow:hover{
  transform:translateY(-1px);
  opacity:.92;
}
.arrow i{
  font-size:18px;
  line-height:1;
}

.arrow.prev,
.arrow.next{
  background: linear-gradient(135deg, #1DFBAF 0%, #11AC77 100%);
  color:#FFFFFF;
  box-shadow:0 8px 16px rgba(29,251,175,.22);
}

.slider-wrap{position:relative}

.arrow.side{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  background:#132754;
  color:#FFFFFF;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:none;
  z-index:5;
}
.arrow.side.prev{left:-12px}
.arrow.side.next{right:-12px}

/* =========================
   MEDIA
========================= */
.media-track{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

@media (max-width: 768px) {
    .media-track {
        padding-bottom: 60px;
    }
}
.media-card{
  width:calc(33.333% - 11px);
  background:var(--white);
  border-radius:16px;
  padding:22px;
  min-height:232px;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(16,31,64,.05);
  transition:transform .25s ease, box-shadow .25s ease;
}
.media-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(16,31,64,.08);
}
.media-card img{
  height:26px;
  width:auto;
  object-fit:contain;
  margin-bottom:16px;
}
.media-card p{
  font-size:18px;
  line-height:1.72;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background:linear-gradient(135deg,#0E1D3D 0%, #122A59 48%, #1A3D72 100%);
  color:var(--white);
  padding:90px 6% 20px;
}

@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:flex-start;
}
.footer-grid > div:nth-child(1){width:30%}
.footer-grid > div:nth-child(2){width:20%}
.footer-grid > div:nth-child(3){width:20%}

.footer-brand{
  color:var(--white);
  margin-bottom:48px;
}

.footer-brand-header img {
  width: 100%;
  height: 28px;
  display: block;
  object-fit: contain;
  object-position: left;
}

.footer-brand-logo img {
  width: 100%;
  height: 40px;
  display: block;
  object-fit: contain;
  object-position: left;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-brand-logo img {
    object-position: center center;
  }
}

.site-footer h3{
  margin:0;
  font-size:28px;
  line-height:1.3;
  letter-spacing:-.03em;
}
.site-footer h4{
  margin:0 0 20px;
  font-size:20px;
}
.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.site-footer li,.site-footer a{
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,.8);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:28px;
  padding-top:12px;
  text-align:center;
}
.footer-bottom p{
  font-size:13px;
  color:rgba(255,255,255,.8);
}

/* =========================
   FLOATING WHATSAPP
========================= */
.wa-float{
  position:fixed;
  right:16px;
  bottom:16px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#1ecb65;
  color:white;
  display:grid;
  place-items:center;
  box-shadow:0 18px 28px rgba(0,0,0,.18);
  z-index:70;
}
.wa-float svg{
  width:28px;
  height:28px;
  fill:currentColor;
  stroke:none;
}

/* =========================
   TABLET
========================= */
@media (max-width:1024px){
  .brand{font-size:22px}
  .main-nav a,.btn-nav,.btn-primary{font-size:17px}

  .section{padding:8%}
  .hero.section{padding:8% 8% 0; height: 100%}
  .site-header .container{
    padding-left:8%;
    padding-right:8%;
  }

  .hero h1{
    font-size:44px;
  }

  .hero p,
  .section-head p,
  .products-copy p,
  .center-head p,
  .app-copy p,
  .testimonial-copy p,
  .media-card p{
    font-size:17px;
  }

  .section-head h2,
  .products-copy h2,
  .center-head h2,
  .app-copy h2,
  .testimonial-copy h2{
    font-size:36px;
  }

  .step-item h3{font-size:22px}
  .step-item p,.product-card p,.card p{font-size:15px}
  .slide p{font-size:20px}
  .site-footer h3{font-size:26px}
  .site-footer li,.site-footer a{font-size:17px}

  .reason-grid .card,
  .media-card{
    width:calc(50% - 9px);
  }

  .step-item{
    width:calc(50% - 12px);
  }

  .site-footer{
    padding:8%;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){
  .main-nav{display:none}
  .menu-toggle{display:block}
  .brand{font-size:20px}

  .section{padding:12% 4%}
  .hero.section{padding:12% 4% 0}
  .site-header .container{
    padding-left:4%;
    padding-right:4%;
  }

  .hero-grid,
  .app-grid,
  .products-grid,
  .testimonial-layout,
  .section-head.split,
  .footer-grid{
    display:flex;
    flex-direction:column;
  }

  .hero-copy,
  .hero-visual,
  .app-copy,
  .app-image,
  .products-copy,
  .products-panel,
  .testimonial-copy,
  .slider-card,
  .section-head.split > div,
  .section-head.split > p,
  .footer-grid > div:nth-child(1),
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3){
    width:100%;
    max-width:100%;
  }

  .hero-copy.reveal.visible {
    padding-bottom: 6%;
  }

  @media (max-width: 768px) {
    .hero-copy.reveal.visible {
        padding-bottom: 8%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero p {
        max-width: 100%;
    }
}


  .hero h1{
    font-size:36px;
    max-width:100%;
  }

  .hero p,
  .section-head p,
  .products-copy p,
  .center-head p,
  .app-copy p,
  .testimonial-copy p,
  .media-card p{
    font-size:16px;
  }

  .hero-visual img{
    margin-bottom:0;
    max-width:auto;
  }

  .section-head h2,
  .products-copy h2,
  .center-head h2,
  .app-copy h2,
  .testimonial-copy h2{
    font-size:30px;
  }

  .reason-grid,
  .product-cards,
  .media-track{
    display:flex;
    flex-direction:column;
  }

  .reason-grid .card,
  .product-card,
  .step-item,
  .media-card{
    width:100%;
  }

  .step-item h3{font-size:20px}
  .step-item p,.product-card p,.card p{font-size:14px}
  .slide p{font-size:18px}
  .site-footer h3{font-size:24px}
  .site-footer li,.site-footer a{font-size:16px}

  @media (max-width: 768px) {
  .arrow.side {
    position: absolute;
    top: auto;
    bottom: -0px;
  }

  .arrow.side.prev {
    left: calc(50% - 34px);
    transform: translateX(-50%);
  }

  .arrow.side.next {
    left: calc(50% + 34px);
    transform: translateX(-50%);
  }
}
  .slider-wrap{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .slider-wrap .arrow.side{
    align-self:center;
  }
}