
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.container{
  width:90%;max-width:1200px;margin:auto
}
.hero{
  padding:120px 0;
  background:linear-gradient(6deg,#1E293B,#2563EB);
  color:#fff
}

.hero-grid,.two-col{
  display:grid;grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center
}
.hero h1{
  font-size:54px;
  line-height:1.1;
  margin-bottom:20px
}
.btn{
  display:inline-block;
  background:#2563EB;
  color:#fff;
  padding:14px 26px;
  border-radius:8px;
  text-decoration:none;
  margin-top:20px
}

:root{
  --bg:#ffffff;
  --bg-soft:#F8FAFC;
  --text:#1E293B;
  --muted:#64748B;
  --blue:#2563EB;
  --blue-dark:#1D4ED8;
  --border:#E2E8F0;
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --radius:18px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,92%);margin:auto}

header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(226,232,240,.7);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

header{
    height: 80px;
}

.nav{
    height: 100%;
}

.logo img{
    height: 180px;
    width: auto;
    display: block;
}

.nav{
    min-height: 90px;
}

.logo span{color:var(--blue)}
.nav-links{display:flex;gap:28px;align-items:center}
.nav-links a{
  color:var(--muted);
  font-weight:500;
  transition:.25s;
}
.nav-links a:hover,.nav-links a.active{color:var(--text)}
.nav-cta{
  padding:12px 18px;
  border-radius:12px;
  background:var(--blue);
  color:#fff;
  font-weight:600;
  box-shadow:0 10px 20px rgba(37,99,235,.22);
}
.menu-btn{display:none;background:none;border:none}

.hero{
  padding:70px 0 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:44px;
  align-items:center;
}
.hero h1{
  font-size:clamp(2.4rem,3.5vw,4.4rem);
  line-height:1.05;
  letter-spacing:-1.2px;
  margin-bottom:20px;
}
.hero p{
  color:var(--muted);
  font-size:1.08rem;
  margin-bottom:26px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:14px;
  font-weight:600;
  transition:.25s;
}
.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 10px 24px rgba(37,99,235,.24);
}
.btn-primary:hover{background:var(--blue-dark);transform:translateY(-1px)}
.btn-secondary{
  background:#fff;
  border:1px solid var(--border);
  color:var(--text);
}
.btn-secondary:hover{border-color:#CBD5E1;background:#F8FAFC}

.hero-card{
  background:linear-gradient(135deg,#2563EB);
  border:1px solid var(--border);
  border-radius:5px;
  padding:20px;
  box-shadow:var(--shadow);
}
.hero-card .preview{
  border-radius:20px;
  padding:22px;
  color:#fff;
  min-height:320px;
  position:relative;
  overflow:hidden;
}
.hero-card .preview::after{
  content:'';
  position:absolute;
  inset:auto -40px -40px auto;
  width:160px;height:160px;border-radius:50%;
  background:rgba(255,255,255,.08);
}
.preview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.preview-item{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  border-radius:5px;
  padding:16px;
}
.preview-item h4{font-size:1rem;margin-bottom:6px}
.preview-item p{font-size:.9rem;color:rgba(255,255,255,.78)}

.section{padding:50px 0}
.section-head{
  text-align:center;
  margin-bottom:48px;
}
.section-head .tag{
  display:inline-block;
  padding:8px 14px;
  background:#EFF6FF;
  color:var(--blue);
  border-radius:5px;
  font-weight:500;
  font-size:.70rem;
  margin-bottom:14px;
}
.section-head h2{
  font-size:clamp(2rem,3.5vw,2rem);
  line-height:1.1;
  margin-bottom:12px;
}
.section-head p{
  color:var(--muted);
  max-width:720px;
  margin:0 auto;
}

.trust{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:34px;
}
.trust-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  padding:22px;
  box-shadow:var(--shadow);
}
.trust-card .num{
  font-size:2rem;
  font-weight:800;
  color:var(--blue);
}
.trust-card p{color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:5px;
  padding:28px;
  box-shadow:var(--shadow);
  transition:transform .25s ease,border-color .25s ease;
}
.card:hover{
  transform:translateY(-4px);
  border-color:#BFDBFE;
}
.icon{
  width:54px;height:54px;border-radius:16px;
  background:#EFF6FF;color:var(--blue);
  display:grid;place-items:center;
  margin-bottom:18px;
}
.card h3{font-size:1.2rem;margin-bottom:10px}
.card p{color:var(--muted)}
.card ul{margin-top:16px;padding-left:18px;color:var(--muted)}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:38px;
  align-items:center;
}
.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:5px;
  padding:24px;
  box-shadow:var(--shadow);
}
.step .badge{
  width:44px;height:44px;border-radius:14px;
  background:var(--blue);color:#fff;
  display:grid;place-items:center;
  font-weight:700;
  margin-bottom:16px;
}

.showcase{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.project{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.project .thumb{
  aspect-ratio:16/10;
  padding:26px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.project:nth-child(1) .thumb{background:linear-gradient(3deg,#1E293B,#2563EB)}
.project:nth-child(2) .thumb{background:linear-gradient(3deg,#1E293B,#2563EB)}
.project:nth-child(3) .thumb{background:linear-gradient(3deg,#1E293B,#2563EB)}
.project .content{padding:24px}
.project .meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.pill{
  padding:6px 10px;
  border-radius:15px;
  background:#EFF6FF;
  color:var(--blue);
  font-size:.70rem;
  font-weight:600;
}
.project h3{margin-bottom:10px}
.project p{color:var(--muted)}
.faq{
  display:grid;
  gap:16px;
}
.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:20px 22px;
  box-shadow:var(--shadow);
}
.faq-item h4{margin-bottom:10px}
.faq-item p{color:var(--muted)}

.cta{
  padding:60px 0;
}
.cta-box{
  background:linear-gradient(135deg,#2563EB);
  border-radius:0px;
  padding:48px;
  color:#fff;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.cta-box p{color:rgba(255,255,255,.78)}
.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.btn-light{
  background:#fff;
  color:var(--text);
}
.btn-outline-light{
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
}

.page-hero{
  padding:72px 0 44px;
  background:
    radial-gradient(circle at top left,#2563EB, transparent 70%),
    var(--bg-soft);
}
.page-hero h1{
  font-size:clamp(2.4rem,4vw,3.8rem);
  margin-bottom:10px;
}
.page-hero p{
  color:var(--muted);
  max-width:760px;
}
.values{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.value{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-wrap{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}
.contact-item{
  display:flex;gap:14px;align-items:flex-start;
  margin-bottom:20px;
}
.contact-item .mini{
  width:44px;height:44px;border-radius:14px;
  background:#EFF6FF;color:var(--blue);
  display:grid;place-items:center;flex-shrink:0;
}
.contact-card h3{margin-bottom:18px}
.contact-card p{color:var(--muted)}
.form{
  display:grid;
  gap:16px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
input,textarea,select{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:14px;
  font:inherit;
  outline:none;
  transition:border-color .2s, box-shadow .2s;
}
input:focus,textarea:focus,select:focus{
  border-color:#93C5FD;
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}
textarea{min-height:140px;resize:vertical}

footer{
  background:#0F172A;
  color:#CBD5E1;
  padding:70px 0 26px;
  margin-top:20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .7fr .7fr 1fr;
  gap:26px;
}
.footer-brand p{color:#94A3B8;margin-top:12px}
.footer-title{
  color:#fff;
  font-weight:700;
  margin-bottom:14px;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{color:#CBD5E1}
.footer-bottom{
  border-top:1px solid rgba(148,163,184,.22);
  margin-top:28px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:#94A3B8;
}

@media (max-width:980px){
  .hero-grid,.split,.story,.contact-wrap,.cta-box{grid-template-columns:1fr}
  .grid,.showcase,.testimonials,.process,.values,.trust{grid-template-columns:repeat(2,1fr)}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:680px){
  .nav-links{
    position:fixed;
    top:76px;left:16px;right:16px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:16px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
    display:none;
  }
  .nav-links.open{display:flex}
  .nav-links .nav-cta{text-align:center}
  .menu-btn{display:block}
  .grid,.showcase,.testimonials,.process,.values,.trust,.footer-grid,.form-row{grid-template-columns:1fr}
  .hero{padding-top:70px}
  .hero-card{padding:18px}
  .cta-box{padding:32px}
}










