:root{
  --orange:#ff5a1f;
  --orange-dark:#f24c12;
  --text:#202635;
  --muted:#5b6472;
  --bg:#f3f3f5;
  --white:#fff;
  --shadow:0 24px 70px rgba(0,0,0,.10);
  --container:1240px;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}

button{ font-family:inherit; }
img{ display:block; max-width:100%; }

.container{
  width:min(var(--container), calc(100% - 56px));
  margin:0 auto;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  padding-top:105px;
  padding-bottom:42px;
  background:var(--bg);
}

.hero-top{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:335px;
  background:var(--orange);
  z-index:0;
}

.hero-top svg{
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:120px;
  display:block;
}

/* NAVBAR */

.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  z-index:999;

  padding:8px 0;

  background:rgba(255,90,31,.78);

  backdrop-filter:blur(14px);

  box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:0;
}

.logo{
  color:#fff;
  font-size:30px;
  font-weight:800;
  letter-spacing:-1px;
  text-shadow:0 2px 8px rgba(0,0,0,.12);
}

/* NAV BUTTON */

.nav-button{
  background:#25D366;
  color:#fff;

  height:50px;
  padding:0 20px;

  border-radius:999px;
  border:none;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  font-size:15px;
  font-weight:700;
  text-decoration:none;

  box-shadow:
    0 10px 22px rgba(37,211,102,.28),
    0 2px 6px rgba(0,0,0,.08);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.nav-button:hover{
  background:#1ebe5d;
  transform:translateY(-2px) scale(1.03);

  box-shadow:
    0 14px 28px rgba(37,211,102,.34),
    0 3px 8px rgba(0,0,0,.10);
}

.nav-button img{
  width:18px;
  height:18px;
  object-fit:contain;
  display:block;
}
.hero-card{
  position:relative;
  z-index:3;
  width:min(var(--container), calc(100% - 56px));
  margin:0 auto;
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:560px;
}

.hero-left{
  padding:62px 48px 44px;
  width:46%;
  position:relative;
  z-index:4;
}

.hero-copy h1{
  font-size:74px;
  line-height:.95;
  letter-spacing:-3px;
  margin-bottom:30px;
}

.hero-copy p{
  font-size:28px;
  line-height:1.25;
  color:#424b59;
  margin-bottom:34px;
  max-width:520px;
}

.hero-actions{
  display:flex;
  flex-direction:column;
  gap:16px;
  width:270px;
}

.btn-primary,
.btn-secondary{
  min-height:64px;
  border-radius:16px;
  font-size:22px;
  font-weight:700;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;
}

.btn-primary{
  border:none;
  background:var(--orange);
  color:#fff;
  box-shadow:0 14px 28px rgba(255,90,31,.25);
}

.btn-secondary{
  background:#fff;
  color:#2b3240;
  border:2px solid #6b7280;
}

.hero-right{
  position:absolute;
  inset:0;
  min-height:560px;
  overflow:hidden;
}

.hero-right img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:68% center;
}

.hero-right::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,.96) 28%,
    rgba(255,255,255,.72) 43%,
    rgba(255,255,255,.25) 58%,
    rgba(255,255,255,0) 74%
  );
  pointer-events:none;
}

.hero-right::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    180deg,
    rgba(255,90,31,.45) 0%,
    rgba(255,90,31,.12) 22%,
    rgba(255,90,31,0) 42%
  );
  pointer-events:none;
}

.usp-bar{
  position:relative;
  z-index:3;
  width:min(var(--container), calc(100% - 56px));
  margin:18px auto 0;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.75);
  border-radius:22px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  padding:18px 28px;
}

.usp{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:600;
  color:#303746;
  min-height:34px;
}

.usp:not(:last-child){
  border-right:1px solid #e7e8ec;
}

.tick{
  color:var(--orange);
  font-size:22px;
  font-weight:900;
  line-height:1;
}

/* SECTIONS */

.section{ padding:32px 0; }

#enquiry,
#properties,
#process{
  scroll-margin-top:100px;
}

.section-card{
  background:#fff;
  border-radius:30px;
  box-shadow:0 18px 50px rgba(0,0,0,.06);
  padding:50px;
}

.why-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:54px;
  align-items:center;
}

h2{
  font-size:58px;
  line-height:1.02;
  letter-spacing:-2px;
  margin-bottom:28px;
}

.bullets{
  list-style:none;
  display:grid;
  gap:18px;
  font-size:24px;
  color:#394150;
}

.bullets li{
  display:flex;
  align-items:center;
  gap:14px;
}

.circle-check{
  width:30px;
  height:30px;
  border:2px solid #c1c7d0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#8b95a5;
  font-size:15px;
  flex:0 0 30px;
}

.offer-card{
  background:var(--orange);
  color:#fff;
  border-radius:24px;
  padding:36px 32px;
  box-shadow:0 20px 45px rgba(255,90,31,.22);
}

.offer-card h3{
  font-size:38px;
  line-height:1.1;
  margin-bottom:18px;
}

.offer-card p{
  font-size:23px;
  margin-bottom:8px;
}

.offer-btn{
  margin-top:26px;
  width:100%;
  min-height:66px;
  border-radius:18px;
  background:#fff;
  color:var(--orange-dark);
  font-size:23px;
  font-weight:800;
  text-decoration:none;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* PROPERTIES */

.properties-title{
  margin-bottom:30px;
}

.properties-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.property{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(0,0,0,.09);
  transition:.25s ease;
}

.property:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(0,0,0,.13);
}

.property img{
  width:100%;
  height:270px;
  object-fit:cover;
}

.property-body{
  padding:24px;
}

.property-location{
  display:inline-flex;
  margin-bottom:12px;
  padding:7px 12px;
  border-radius:999px;
  background:#f3f4f6;
  color:#5b6472;
  font-size:13px;
  font-weight:700;
}

.property h3{
  font-size:25px;
  line-height:1.1;
  margin-bottom:10px;
}

.property p{
  color:#5f6877;
  font-size:16px;
  line-height:1.35;
  margin-bottom:18px;
}

.price{
  color:var(--orange);
  font-size:28px;
  font-weight:900;
  margin-bottom:18px;
}

.property-button{
  width:100%;
  min-height:48px;
  border:none;
  border-radius:14px;
  background:var(--orange);
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(255,90,31,.22);

  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.property-button:hover{
  background:var(--orange-dark);
}

/* HOW */

.how-card{
  text-align:center;
  padding:50px 60px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:40px;
}

.step{
  background:#fbfbfc;
  border-radius:24px;
  padding:38px 32px;
  text-align:left;
  transition:.25s ease;
}

.step:hover{
  transform:translateY(-5px);
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.07);
}

.step-number{
  width:70px;
  height:70px;
  border-radius:18px;
  background:var(--orange);
  color:#fff;
  font-size:34px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
  box-shadow:0 14px 28px rgba(255,90,31,.22);
}

.step h3{
  font-size:28px;
  line-height:1.1;
  margin-bottom:14px;
}

.step p{
  font-size:18px;
  line-height:1.5;
  color:#5d6675;
}
/* LEAD FORM */

.form-section{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:center;
}

.form-copy p{
  font-size:24px;
  line-height:1.4;
  color:#5b6472;
}

.lead-form{
  display:grid;
  gap:16px;
}

.lead-form input,
.lead-form textarea{
  width:100%;
  border:1px solid #e1e4e8;
  border-radius:16px;
  padding:18px 20px;
  font-size:17px;
  font-family:inherit;
  outline:none;
  background:#fbfbfc;
}

.lead-form textarea{
  min-height:130px;
  resize:vertical;
}

.lead-form input:focus,
.lead-form textarea:focus{
  border-color:var(--orange);
  background:#fff;
}

.lead-form button{
  min-height:64px;
  border:none;
  border-radius:18px;
  background:var(--orange);
  color:#fff;
  font-size:21px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(255,90,31,.25);
}

.lead-form button:hover{
  background:var(--orange-dark);
}

@media(max-width:768px){
  .form-section{
    grid-template-columns:1fr;
    gap:28px;
  }

  .form-copy p{
    font-size:18px;
  }
}

/* FINAL CTA */

.final-cta{
  padding:40px 0 90px;
}

.cta-box{
  background:linear-gradient(135deg,#ff5a1f 0%,#ff6d3d 100%);
  border-radius:34px;
  padding:70px 90px;
  text-align:center;
  color:#fff;
  box-shadow:0 30px 80px rgba(255,90,31,.22);
  position:relative;
  overflow:hidden;
}

/* background circles */

.cta-box::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  top:-120px;
  right:-60px;
}

.cta-box::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  bottom:-120px;
  left:-80px;
}

.cta-box h2{
  position:relative;
  z-index:2;
  font-size:60px;
  line-height:.95;
  letter-spacing:-3px;
  margin-bottom:18px;
  color:#fff;
}

.cta-box p{
  position:relative;
  z-index:2;
  font-size:26px;
  color:rgba(255,255,255,.88);
  margin-bottom:34px;
}

.cta-buttons{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

/* BUTTONS */

.cta-main,
.cta-secondary{
  min-width:240px;
  height:64px;
  border-radius:18px;
  font-size:20px;
  font-weight:800;
  text-decoration:none;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:.25s ease;
}

/* WHATSAPP BUTTON */

.cta-main{
  background:#25D366;
  color:#fff;
  box-shadow:0 12px 28px rgba(37,211,102,.28);
}

.cta-main:hover{
  background:#1ebe5d;
  transform:translateY(-3px);
}

/* SECOND BUTTON */

.cta-secondary{
  border:2px solid rgba(255,255,255,.45);
  color:#fff;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
}

.cta-secondary:hover{
  background:rgba(255,255,255,.16);
  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:950px){

  .final-cta{
    padding:28px 0 70px;
  }

  .cta-box{
    padding:42px 24px;
    border-radius:26px;
  }

  .cta-box h2{
    font-size:42px;
    line-height:1;
    letter-spacing:-2px;
  }

  .cta-box p{
    font-size:19px;
    margin-bottom:26px;
  }

  .cta-buttons{
    flex-direction:column;
    align-items:center;
  }

  .cta-main,
  .cta-secondary{
    width:100%;
    max-width:320px;
  }
}
/* FOOTER */

.footer{
  padding:14px 0 38px;
}

.footer-inner{
  background:#fff;
  border:1px solid #ececec;
  border-radius:28px;
  padding:34px 38px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.footer-logo{
  font-size:28px;
  font-weight:900;
  letter-spacing:-1px;
  margin-bottom:8px;
}

.footer p{
  color:#5b6472;
  font-size:17px;
}

.footer-links{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#202635;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
}

.footer-links a:hover{
  color:var(--orange);
}

.footer-bottom{
  padding:18px 6px 0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#7a8290;
  font-size:13px;
}

@media(max-width:950px){

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:28px 24px;
  }

  .footer-bottom{
    flex-direction:column;
  }
}
/* HOVER EFFECTS */

/* NAV WHATSAPP BUTTON */

.nav-button{
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.nav-button:hover{
  background:#1ebe5d;
  transform:translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 28px rgba(37,211,102,.34),
    0 3px 8px rgba(0,0,0,.10);
}

/* HERO BUTTONS */

.btn-primary,
.btn-secondary{
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.btn-primary:hover{
  transform:translateY(-3px);
  background:var(--orange-dark);
  box-shadow:0 20px 36px rgba(255,90,31,.32);
}

.btn-secondary:hover{
  transform:translateY(-3px);
  border-color:#202635;
  background:#fafafa;
  box-shadow:0 16px 32px rgba(0,0,0,.08);
}

/* HERO IMAGE MOVEMENT */

.hero-right img{
  transition:transform 1.2s ease;
}

.hero-card:hover .hero-right img{
  transform:scale(1.03);
}

/* USP BAR */

.usp{
  transition:
    transform .2s ease,
    color .2s ease;
}

.usp:hover{
  transform:translateY(-2px);
  color:#202635;
}
/* WHY SECTION HOVERS */

.offer-card{
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

.offer-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(255,90,31,.28);
  background:#ff6128;
}

.offer-btn{
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.offer-btn:hover{
  transform:translateY(-3px);
  background:#fff7f3;
  box-shadow:0 18px 34px rgba(0,0,0,.12);
}

/* BULLETS */

.bullets li{
  transition:
    transform .2s ease,
    color .2s ease;
}

.bullets li:hover{
  transform:translateX(6px);
  color:#202635;
}

.circle-check{
  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.bullets li:hover .circle-check{
  background:var(--orange);
  border-color:var(--orange);
  color:#fff;
  transform:scale(1.08);
}

/* WHOLE CARD */

.why-grid{
  transition:.3s ease;
}

.section-card:hover{
  box-shadow:0 28px 70px rgba(0,0,0,.09);
}
/* MOBILE HERO */

@media(max-width:768px){

  .hero{
    padding-bottom:18px;
  }

  .hero-top{
    height:190px;
  }

  .hero-card{
    width:calc(100% - 32px);
    grid-template-columns:1fr;
    min-height:auto;
    border-radius:26px;

    box-shadow:0 18px 45px rgba(0,0,0,.10);
  }

  .hero-left{
    padding:38px 26px 28px;
    align-items:flex-start;
  }

  .hero-copy h1{
    font-size:42px;
    line-height:1;
    letter-spacing:-2px;
    margin-bottom:18px;
  }

  .hero-copy p{
    font-size:19px;
    line-height:1.35;
    margin-bottom:26px;
    max-width:260px;
  }

  .hero-actions{
    width:100%;
    gap:12px;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    min-height:58px;
    font-size:18px;
    border-radius:16px;
  }

  .btn-primary{
    transition:.25s ease;
  }

  .btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(255,90,31,.28);
  }

  .btn-secondary{
    transition:.25s ease;
  }

  .btn-secondary:hover{
    background:#f8f8f8;
  }

  .hero-right{
    min-height:auto;
  }

.hero-right img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:72% center;
}
.hero-left{
  width:100%;
  min-height:470px;
}

 .hero-right::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.82) 34%,
    rgba(255,255,255,.42) 62%,
    rgba(255,255,255,.12) 100%
  );
}
.hero-copy p{
  max-width:230px;
  color:#202635;
  font-weight:500;
}

  .usp-bar{
    width:calc(100% - 32px);
    grid-template-columns:1fr;
    padding:10px 18px;
    border-radius:20px;
  }

  .usp{
    justify-content:flex-start;
    min-height:52px;
    font-size:16px;
  }

  .usp:not(:last-child){
    border-right:none;
    border-bottom:1px solid #ececec;
  }

  .nav{
    padding:20px 0 18px;
  }

  .nav .container{
    width:calc(100% - 32px);
  }

  .logo{
    font-size:26px;
  }

  .nav-button{
    height:44px;
    padding:0 16px;
    font-size:14px;
  }
}
@media(max-width:768px){

  .why-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .offer-card{
    padding:28px 24px;
  }

  .offer-card h3{
    font-size:34px;
  }

  .offer-card p{
    font-size:20px;
  }

  .properties-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .property img{
    height:240px;
  }

  .steps{
    grid-template-columns:1fr;
    gap:18px;
  }

  .how-card{
    padding:34px 24px;
  }

  .step{
    padding:28px 24px;
  }

  .step h3{
    font-size:26px;
  }

  .step p{
    font-size:17px;
  }

  .cta-box{
    padding:40px 24px;
  }

  .cta-box h2{
    font-size:42px;
    line-height:1;
  }

  .cta-box p{
    font-size:18px;
  }

  .cta-buttons{
    flex-direction:column;
  }

  .cta-main,
  .cta-secondary{
    width:100%;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .footer-links{
    gap:18px;
  }

 .footer-bottom{
  flex-direction:column;
  gap:8px;
  font-size:12px;
}
}

.floating-wa{
  position:fixed;
  bottom:28px;
  right:18px;
  width:62px;
  height:62px;
  border-radius:50%;
  background:#62e943;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 10px 30px rgba(0,0,0,.22);
  backdrop-filter:blur(10px);
}

.floating-wa img{
  width:30px;
  height:30px;
}
/* SCROLL REVEAL */

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}
.property{
  display:flex;
  flex-direction:column;
}

.property-body{
  flex:1;
  display:flex;
  flex-direction:column;
}

.property p{
  min-height:44px;
}

.price{
  margin-top:auto;
}

.property-button{
  margin-top:18px;
}
.property img{
  transition:transform .5s ease;
}

.property:hover img{
  transform:scale(1.05);
}
@media(max-width:768px){

  .nav-button{
    display:none;
  }

}
/* TRUST SECTION */

.trust-section{
  text-align:center;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:24px;
}

.trust-box{
  background:#fbfbfc;
  border-radius:24px;
  padding:34px 28px;
  transition:.25s ease;
}

.trust-box:hover{
  transform:translateY(-5px);
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.07);
}

.trust-icon{
  width:64px;
  height:64px;
  margin:0 auto 22px;

  border-radius:18px;
  background:var(--orange);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:30px;
  font-weight:900;

  box-shadow:0 14px 28px rgba(255,90,31,.22);
}

.trust-box h3{
  font-size:28px;
  line-height:1.1;
  margin-bottom:14px;
}

.trust-box p{
  font-size:18px;
  line-height:1.5;
  color:#5d6675;
}

/* MOBILE */

@media(max-width:768px){

  .trust-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .trust-box{
    padding:28px 24px;
  }

  .trust-box h3{
    font-size:24px;
  }

  .trust-box p{
    font-size:16px;
  }

}
.opportunities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  margin-top:40px;
}

.opportunity{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  border:1px solid #f0f0f0;
}

.tag{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:18px;
  letter-spacing:.5px;
}

.opportunity h3{
  font-size:26px;
  margin-bottom:12px;
}

.opportunity p{
  color:#666;
  line-height:1.6;
}
.opportunity{
  transition:all .25s ease;
  cursor:pointer;
}

.opportunity:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.tag{
  transition:all .25s ease;
}

.opportunity:hover .tag{
  transform:scale(1.05);
}
/* LATEST OPPORTUNITIES */

.opportunities-section{
  text-align:center;
}

.opportunities-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:34px;
}

.opportunity{
  background:#fff;
  border-radius:24px;
  padding:32px 28px;
  box-shadow:0 14px 35px rgba(0,0,0,.06);
  border:1px solid #f0f0f0;
  text-decoration:none;
  color:inherit;
  transition:all .25s ease;
  cursor:pointer;
  text-align:left;
}

.opportunity:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 55px rgba(0,0,0,.10);
}

.tag{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  font-size:12px;
  font-weight:900;
  padding:7px 13px;
  border-radius:999px;
  margin-bottom:18px;
  letter-spacing:.6px;
  transition:all .25s ease;
}

.opportunity:hover .tag{
  transform:scale(1.05);
}

.opportunity h3{
  font-size:27px;
  line-height:1.1;
  margin-bottom:12px;
}

.opportunity p{
  color:#5f6877;
  font-size:17px;
  line-height:1.5;
}

.latest-cta{
  margin-top:34px;
  text-align:center;
}

.latest-cta a{
  color:var(--orange);
  font-weight:900;
  text-decoration:none;
  font-size:20px;
}

.latest-cta a:hover{
  color:var(--orange-dark);
}

/* MOBILE */

@media(max-width:768px){

  .opportunities-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .opportunity{
    padding:28px 24px;
  }

  .opportunity h3{
    font-size:24px;
  }

  .opportunity p{
    font-size:16px;
  }

  .latest-cta a{
    font-size:18px;
  }

}
/* MOBILE CTA BAR */

.mobile-cta-bar{
  display:none;
}

@media(max-width:768px){

  .mobile-cta-bar{
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;
    z-index:99999;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(14px);
    padding:10px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.18);
  }

  .mobile-cta-bar a{
    min-height:48px;
    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:15px;
    font-weight:900;
  }

  .mobile-cta-bar a:first-child{
    background:#25D366;
    color:#fff;
  }

  .mobile-cta-bar a:last-child{
    background:var(--orange);
    color:#fff;
  }

  .floating-wa{
    display:none;
  }

  body{
    padding-bottom:84px;
  }
}
/* BUYERS SECTION */

.buyers-section{
  text-align:center;
}

.buyers-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:30px;
}

.buyer-box{
  background:#fbfbfc;
  border-radius:24px;
  padding:34px 28px;
  transition:.25s ease;
}

.buyer-box:hover{
  transform:translateY(-5px);
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.07);
}

.buyer-box h3{
  font-size:28px;
  line-height:1.1;
  margin-bottom:14px;
}

.buyer-box p{
  font-size:18px;
  line-height:1.5;
  color:#5d6675;
}

@media(max-width:768px){

  .buyers-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .buyer-box{
    padding:28px 24px;
  }

  .buyer-box h3{
    font-size:24px;
  }

  .buyer-box p{
    font-size:16px;
  }

}

.nav-right{
  color:rgba(255,255,255,.9);
  font-size:14px;
  font-weight:600;
}
@media(max-width:768px){
  .nav-right{
    display:none;
  }
}