:root{
  --bg:#f4f4f4;
  --white:#ffffff;
  --text:#0b0b0b;
  --muted:#6b7280;
  --muted2:#9ca3af;
  --line:#e5e7eb;
  --blue:#3B82F6; /* close to your Framer accent */
  --radius:22px;
  --radiusLg:32px;
  --shadow: 0 16px 40px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1180px, calc(100% - 80px));
  margin:0 auto;
}

@media (max-width: 900px){
  .container{ width:min(1180px, calc(100% - 32px)); }
}

/* Header */
.header{
  background: rgba(244,244,244,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top:0;
  z-index:50;
}

.header-inner{
  height:72px;
  display:grid;
  grid-template-columns: 160px 1fr 160px;
  align-items:center;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.02em;
}
.brand img{ height:28px; width:auto; display:block; }

.nav{
  display:flex;
  justify-content:center;
  gap:34px;
  font-weight:500;
  color:#111827;
}

.nav a{
  padding:10px 8px;
  border-radius:12px;
}

.header-cta{
  display:flex;
  justify-content:flex-end;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  cursor:pointer;
  font-weight:700;
  border-radius: 999px;
  padding: 12px 18px;
}

.btn-primary{
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 25px rgba(59,130,246,.25);
}

.btn-primary:hover{ filter:brightness(1.03); text-decoration:none; }

.btn-dark{
  background:#111111;
  color:#fff;
  padding: 12px 22px;
}

.btn-dark:hover{ text-decoration:none; filter:brightness(1.05); }

.btn .arrow{
  font-size:18px;
  line-height: 1;
}

/* Mobile nav */
.nav-toggle{ display:none; }
@media (max-width: 900px){
  .header-inner{ grid-template-columns: 1fr auto; height:auto; padding:14px 0; }
  .header-cta{ display:none; }
  .nav-toggle{
    display:inline-flex;
    border:1px solid var(--line);
    background:#fff;
    border-radius: 14px;
    padding:10px 12px;
    cursor:pointer;
  }
  .hamburger{ width:22px; height:2px; background:#111; position:relative; display:block; }
  .hamburger::before,.hamburger::after{
    content:""; position:absolute; left:0; width:22px; height:2px; background:#111;
  }
  .hamburger::before{ top:-7px; }
  .hamburger::after{ top:7px; }
  .nav{
    display:none;
    flex-direction:column;
    gap:10px;
    padding:12px 0 18px;
  }
  .nav.open{ display:flex; }
  .nav a{ padding:10px 0; }
}

/* Page sections */
.section{
  padding: 64px 0;
}

.card{
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* HERO (Home) */
.hero{
  padding: 34px 0 28px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items:center;
}

@media (max-width: 1000px){
  .hero-grid{ grid-template-columns: 1fr; gap:22px; }
}

.hero-title{
  font-size: 56px;
  line-height: 1.05;
  margin: 10px 0 18px;
  letter-spacing: -.02em;
}

@media (max-width: 600px){
  .hero-title{ font-size: 40px; }
}

.hero-title .blue{ color: var(--blue); }

.hero-sub{
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 18px;
  max-width: 54ch;
}

.trust-row{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top: 10px;
}

.avatars{
  display:flex;
  align-items:center;
}
.avatars img{
  width:40px; height:40px;
  border-radius:999px;
  border:3px solid var(--bg);
  margin-left:-10px;
  object-fit:cover;
}
.avatars img:first-child{ margin-left:0; }

.trust-text{
  display:flex;
  align-items:center;
  gap:12px;
  color:#111827;
  font-size: 18px;
}
.trust-text .pipe{
  color: var(--muted2);
  font-weight:400;
}

.hero-right{
  background: #eaf1ff;
  border-radius: var(--radiusLg);
  padding: px;
}
.hero-right img{
  width:50%;
  height:auto;
  display:block;
  border-radius: 26px;
  object-fit: cover;
}

/* Big centered heading section */
.center-head{
  text-align:center;
  padding: 22px 0 40px;
}

.h2{
  font-size: 52px;
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing: -.02em;
}
@media (max-width: 700px){
  .h2{ font-size: 38px; }
}

.h2 .blue{ color: var(--blue); }

.center-head p{
  margin:0 auto;
  color: var(--muted);
  max-width: 70ch;
  font-size: 18px;
}

/* Two-column feature blocks */
.features-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:start;
}

@media (max-width: 900px){
  .features-2{ grid-template-columns: 1fr; gap:28px; }
}

.feature h3{
  font-size: 36px;
  margin: 0 0 14px;
}

.checklist{
  list-style:none;
  padding:0;
  margin: 0;
  display:grid;
  gap: 16px;
}

.checklist li{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items:start;
  color: #111827;
  font-size: 18px;
  line-height:1.5;
}

.check{
  width:22px; height:22px;
  border-radius: 999px;
  border: 2px solid #111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size: 14px;
}

/* Who We Serve */
.serve-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 10px;
}

@media (max-width: 1000px){
  .serve-grid{ grid-template-columns: 1fr; gap:22px; }
}

.serve-card{
  text-align:center;
}
.serve-card img{
  width:100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display:block;
  background:#eee;
}
.serve-card h3{
  font-size: 34px;
  margin: 18px 0 0;
  line-height:1.15;
}
.video-wrapper video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Who we are split */
.split{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items:center;
}

@media (max-width: 1000px){
  .split{ grid-template-columns: 1fr; gap:22px; }
}

.kicker{
  font-size: 22px;
  color:#111827;
  margin-bottom: 10px;
}

.who-title{
  font-size: 54px;
  margin:0 0 18px;
  letter-spacing: -.02em;
}
.who-title .blue{ color: var(--blue); }

.who-text{
  color:#111827;
  font-size: 22px;
  line-height:1.6;
}
.who-text p{ margin: 0 0 20px; }

/* Why choose us */
.why-title{
  font-size: 54px;
  margin:0 0 10px;
  letter-spacing: -.02em;
}
.why-title .blue{ color: var(--blue); }

.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin-top: 30px;
}

@media (max-width: 1000px){
  .why-grid{ grid-template-columns: 1fr; gap:22px; }
}

.why-item .icon{
  width:56px; height:56px;
  border-radius: 999px;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-bottom: 18px;
}
.why-item h3{
  font-size: 34px;
  margin: 0 0 10px;
}
.why-item p{
  margin:0;
  color: var(--muted);
  font-size: 18px;
  line-height:1.6;
}

/* Simple page header for other pages */
.page-hero{
  padding: 46px 0 10px;
}
.page-hero h1{
  font-size: 54px;
  margin:0;
  letter-spacing:-.02em;
}
.page-hero p{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 70ch;
}

/* Footer */
.footer{
  padding: 40px 0;
  color: var(--muted);
  text-align:center;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.hero--clients { padding-top: 70px; } /* gives same spacing as your screenshot */
    .clients-title{
      font-size: 68px;
      line-height: 1;
      margin: 0 0 18px;
      letter-spacing: -0.03em;
      font-weight: 800;
    }
    .clients-pill{
      padding: 14px 28px;
      border-radius: 999px;
      font-size: 18px;
    }
    .hero-right{
  display:flex;
  align-items:center;
  justify-content:center;
}
/* ===== Clients: Testimonials slider ===== */
.testimonials-section{
  background:#fff;
  padding: 80px 0 90px;
}

.testimonials-title{
  text-align:center;
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 44px;
  letter-spacing: -0.02em;
}

.testimonial-stage{
  display:flex;
  justify-content:center;
}

.testimonial-grid{
  width: min(1000px, 100%);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 900px){
  .testimonial-grid{
    grid-template-columns: 1fr;
    width: min(560px, 100%);
  }
}

.test-card{
  background: linear-gradient(180deg, #121418, #0b0c0f);
  border-radius: 28px;
  padding: 34px 34px 28px;
  color: #fff;
  min-height: 360px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
  position: relative;
}

.quote-mark{
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: #b7ff45; /* green quote */
  margin-bottom: 14px;
}

.test-text{
  color: rgba(255,255,255,.88);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.stars{
  color: #f5b301; /* gold stars */
  letter-spacing: 2px;
  font-size: 18px;
  margin: 10px 0 18px;
}

.test-footer{
  margin-top: auto;
}

.test-name{
  font-weight: 800;
  margin: 0 0 6px;
}

.test-role{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.testimonial-controls{
  display:flex;
  justify-content:center;
  gap: 14px;
  margin-top: 26px;
}

.circle-btn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.circle-btn:hover{
  filter: brightness(1.08);
}
/* ===== Join Our Team: section under hero ===== */
.join-section{
  background:#fff;
  padding: 40px 0 80px;
}

.join-intro{
  text-align:center;
  color:#111827;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 auto 18px;
  max-width: 760px;
}

.join-intro p{
  margin: 0;
}

/* Full width blue button */
.join-wide-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  background: #0b79e6;
  color:#fff;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid #0a5fb3;
  text-decoration:none;
  margin: 18px 0 50px;
}

.join-wide-btn:hover{
  filter: brightness(1.03);
  text-decoration:none;
}

/* Jobs grid */
.jobs-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

@media (max-width: 980px){
  .jobs-grid{
    grid-template-columns: 1fr;
  }
}

.job-card{
  display:flex;
  flex-direction:column;
  min-height: 520px;
}

.job-head{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items:center;
  margin-bottom: 14px;
}

.job-logo{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #d1d5db;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color:#111827;
}

.job-title{
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.job-subtitle{
  margin: 6px 0 0;
  color:#374151;
  font-size: 14px;
}

.job-desc{
  margin: 14px 0 18px;
  color:#111827;
  font-size: 14.5px;
  line-height: 1.75;
}

.job-meta p{
  margin: 0 0 10px;
  color:#111827;
  font-size: 14.5px;
  line-height: 1.55;
}

.job-meta strong{
  font-weight: 800;
}

.job-apply{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: #0b79e6;
  color:#fff;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration:none;
  border: 2px solid #0a5fb3;
  box-shadow: 0 10px 20px rgba(11,121,230,.25);
  margin-top: 8px;
}

.job-apply:hover{
  filter: brightness(1.03);
  text-decoration:none;
}

.job-tip{ margin-top: auto; }
/* ===== Contact Page ===== */
.hero--contact{ padding-top: 70px; padding-bottom: 40px; }

.page-title{
  font-size: 50px;
  line-height: 1.5;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.reach{ padding: 35px 0 45px; background: #fff; }
.reach-card{
  max-width: 600px;
  margin: 0 auto;
  padding: 15px 0;
}
.reach-title{
  font-size: 35px;
  margin: 0 0 7px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.reach-sub{
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 18px;
}

.reach-form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.field label{
  display:block;
  font-weight: 700;
  margin: 0 0 10px;
  color:#111;
}

.field input,
.field textarea{
  width:100%;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px 16px;
  font-size: 16px;
  outline: none;
  background:#fff;
}

.field textarea{
  resize: vertical;
  min-height: 180px;
}

.field input:focus,
.field textarea:focus{
  border-color: #c7d2fe;
  box-shadow: 0 0 0 8px rgba(99,102,241,.15);
}

.field-full{ grid-column: 1 / -1; }

.send-btn{
  grid-column: 1 / -1;
  width: 100%;
  padding: 18px 18px;
  border-radius: 999px;
  border: none;
  background: #111;
  color:#fff;
  font-weight: 900;
  font-size: 18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.send-btn:hover{ filter: brightness(1.05); }
.send-arrow{ font-size: 20px; }

/* Strip card */
.contact-strip{ padding: 40px 0 20px; background:#fff; }
.strip-card{
  background:#fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 22px;
  display:grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  gap: 0;
  align-items: center;
}

.strip-item{
  text-align:center;
  padding: 6px 14px;
}

.icon-box{
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 12px;
  color:#111;
  font-size: 20px;
  background:#fff;
}

.strip-item h3{
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 900;
}

.strip-item .muted{
  margin: 0 0 14px;
  color:#6b7280;
}

.strip-value{
  margin: 0;
  color:#111;
  font-weight: 600;
}

.strip-divider{
  height: 120px;
  width: 1px;
  background: #e5e7eb;
  justify-self:center;
}

.map-wrap{ padding: 0 0 80px; background:#fff; }
.map-card{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid #e5e7eb;
}

.map-card iframe{
  width:100%;
  height: 430px;
  border:0;
}

/* Responsive */
@media (max-width: 900px){
  .page-title{ font-size: 44px; }
  .reach-title{ font-size: 40px; }
  .reach-form{ grid-template-columns: 1fr; }
  .strip-card{ grid-template-columns: 1fr; gap: 18px; }
  .strip-divider{ display:none; }
}
/* Modal Background */
.policy-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.7);
  padding: 40px 15px;
}

/* Modal Content */
.policy-content {
  background: #fff;
  margin: auto;
  padding: 30px;
  max-width: 800px;
  border-radius: 8px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.policy-content h2 {
  margin-bottom: 20px;
}

.policy-content h3 {
  margin-top: 20px;
}

.policy-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Close Button */
.close-policy {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}







