:root{
  --navy:#2b4d6f;
  --navy-dark:#264361;
  --orange:#f2a53c;
  --teal:#159a9c;
  --teal-dark:#267e95;
  --blue:#3e6ff2;
  --red-orange:#e8622c;
  --purple:#a020c8;
  --section-bg:#e9f6f6;
  --section-bg2:#e3f0f0;
  --text-gray:#5b6b7a;
  --white:#ffffff;
  --header-height:82px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{
  scroll-behavior:smooth;
  scroll-padding-top:var(--header-height);
}
body{
  font-family:'Poppins','Segoe UI',Arial,sans-serif;
  color:var(--navy);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}

/* NAV */
header.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 40px;
  background:var(--white);
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 12px rgba(43,77,111,.06);
}
.logo img{height:46px;}
nav.menu ul{display:flex;align-items:center;gap:38px;}
nav.menu a{
  font-size:14px;font-weight:600;letter-spacing:.3px;color:var(--navy);
  cursor:pointer;
  transition:color .2s ease;
}
nav.menu a:hover{color:var(--orange);}
nav.menu li.active a{color:var(--orange);}
nav.menu .search-box{
  width:110px;height:34px;background:var(--section-bg2);border-radius:4px;
}

/* HERO */
.hero{
  position:relative;
  text-align:center;
  padding:70px 20px 90px;
  overflow:hidden;
  background:
    radial-gradient(ellipse 700px 500px at 15% 30%, #eef1f5 0%, rgba(238,241,245,0) 60%),
    radial-gradient(ellipse 700px 500px at 85% 70%, #eef1f5 0%, rgba(238,241,245,0) 60%),
    linear-gradient(180deg,#fbfcfd 0%, #eef1f6 100%);
}
.hero::before{
  content:"";
  position:absolute;inset:-10% -5%;
  background:
    radial-gradient(circle at 20% 20%, rgba(210,218,232,.55) 0%, rgba(210,218,232,0) 45%),
    radial-gradient(circle at 80% 15%, rgba(210,218,232,.5) 0%, rgba(210,218,232,0) 40%),
    radial-gradient(circle at 50% 90%, rgba(210,218,232,.6) 0%, rgba(210,218,232,0) 45%);
  pointer-events:none;
}
.hero-inner{position:relative;z-index:2;max-width:760px;margin:0 auto;}
.badge{
  display:inline-block;background:var(--section-bg2);color:var(--orange);
  font-size:14px;font-weight:600;padding:6px 20px;border-radius:3px;margin-bottom:18px;
}
.hero h1{
  font-size:34px;line-height:1.35;font-weight:700;color:var(--navy);
}
.btn-orange{
  display:inline-block;margin-top:34px;background:var(--orange);color:var(--navy-dark);
  font-weight:600;font-size:15px;padding:13px 34px;border-radius:24px;
  box-shadow:0 8px 18px rgba(242,165,60,.35);
  border:none;cursor:pointer;
}

/* HERO DASHBOARD IMAGE SECTION */
.hero-dashboard{
  background:linear-gradient(180deg,#eef2f7 0%,#eaf0f6 100%);
  padding:0;
}
.hero-dashboard img{width:100%;display:block;}

/* WHAT WE DO */
.what-we-do{
  background:var(--section-bg);
  text-align:center;
  padding:70px 20px 60px;
  scroll-margin-top:var(--header-height);
}
.eyebrow{
  color:var(--orange);font-size:13px;font-weight:700;letter-spacing:1px;text-transform:uppercase;
  margin-bottom:14px;display:block;
}
.what-we-do h2{
  max-width:760px;margin:0 auto 50px;font-size:30px;line-height:1.4;font-weight:700;color:var(--navy);
}
.wwd-icons{
  display:flex;justify-content:center;gap:110px;flex-wrap:wrap;
}
.wwd-icon{text-align:center;}
.wwd-icon img{width:88px;height:88px;border-radius:50%;margin:0 auto 16px;}
.wwd-icon span{font-size:18px;font-weight:600;color:var(--navy);}

/* OUR BRANDS INTRO */
.brands-intro{
  background:var(--section-bg2);
  text-align:center;
  padding:70px 20px 10px;
  scroll-margin-top:var(--header-height);
}
.brands-intro h2{font-size:30px;font-weight:700;color:var(--navy);}

/* FEATURE BLOCKS */
.feature{
  background:var(--section-bg2);
  padding:50px 20px 90px;
  scroll-margin-top:var(--header-height);
}
.feature .container{
  display:flex;align-items:center;gap:60px;
}
.feature.reverse .container{flex-direction:row-reverse;}
.feature-text{flex:1;min-width:280px;}
.feature-text .eyebrow{margin-bottom:8px;}
.feature-text h3{font-size:28px;font-weight:700;color:var(--navy);line-height:1.35;margin-bottom:20px;}
.feature-text ul li{
  display:flex;align-items:center;gap:12px;margin-bottom:14px;
  color:var(--teal);font-size:16px;font-weight:500;
}
.feature-text ul li .check{
  width:26px;height:26px;flex:none;border-radius:5px;background:var(--section-bg);
  display:flex;align-items:center;justify-content:center;color:var(--teal);font-size:13px;
}
.feature-media{flex:1;min-width:280px;}
.feature-media img{border-radius:8px;}

/* PARTNERS */
.partners{
  background:var(--section-bg);
  text-align:center;
  padding:60px 20px 80px;
  scroll-margin-top:var(--header-height);
}
.partners .eyebrow{
  background:var(--section-bg2);display:inline-block;padding:8px 26px;border-radius:4px;margin-bottom:30px;
}
.partners-strip{
  background:var(--white);
  max-width:1000px;margin:0 auto;padding:30px 40px;
  display:flex;align-items:center;justify-content:center;
}
.partners-strip img{max-width:100%;}

/* CTA */
.cta{
  background:var(--teal-dark);
  color:var(--white);
  text-align:center;
  padding:60px 20px;
  scroll-margin-top:var(--header-height);
}
.cta .eyebrow2{
  font-size:13px;font-weight:700;letter-spacing:1px;text-transform:uppercase;opacity:.9;display:block;margin-bottom:14px;
}
.cta h2{font-size:28px;font-weight:700;line-height:1.45;max-width:820px;margin:0 auto 30px;}
.cta .btn-orange{box-shadow:none;}

/* FOOTER */
footer{padding:60px 40px 20px;}
.footer-top{
  display:flex;flex-wrap:wrap;gap:40px;justify-content:space-between;padding-bottom:40px;
}
.footer-logo img{height:46px;}
.footer-col h4{
  display:inline-block;background:var(--section-bg2);color:var(--navy);
  font-size:16px;font-weight:700;padding:10px 26px;border-radius:4px;margin-bottom:18px;
}
.footer-col ul li{margin-bottom:12px;}
.footer-col ul li a{color:var(--teal-dark);font-size:15px;transition:color .2s ease;}
.footer-col ul li a:hover{color:var(--orange);}
.footer-contact h4{
  font-size:16px;font-weight:700;letter-spacing:2px;color:var(--navy);margin-bottom:18px;
}
.footer-contact p{color:var(--teal-dark);font-size:15px;line-height:1.6;}
.footer-bottom{
  display:flex;flex-wrap:wrap;gap:16px;align-items:center;justify-content:space-between;
  border-top:1px solid #eee;padding-top:22px;
}
.footer-bottom .copy{
  display:flex;align-items:center;gap:10px;color:var(--navy);font-size:14px;flex-wrap:wrap;
}
.footer-bottom .copy span.pill{
  background:var(--section-bg2);padding:6px 16px;border-radius:4px;font-size:13px;
}
.footer-social{display:flex;gap:10px;}
.footer-social a{
  width:38px;height:38px;background:var(--teal-dark);color:#fff;border-radius:4px;
  display:flex;align-items:center;justify-content:center;font-size:16px;
  transition:background .2s ease;
}
.footer-social a:hover{background:var(--orange);}

/* Back to top */
.back-to-top{
  position:fixed;right:24px;bottom:24px;
  width:44px;height:44px;border-radius:50%;
  background:var(--orange);color:var(--navy-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;box-shadow:0 8px 18px rgba(242,165,60,.4);
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index:99;
}
.back-to-top.show{opacity:1;visibility:visible;transform:translateY(0);}

@media (max-width:900px){
  nav.menu ul{gap:18px;}
  .feature .container, .feature.reverse .container{flex-direction:column;}
  .wwd-icons{gap:50px;}
}
