:root{
  --primary:#081a33;
  --secondary:#102a52;
  --accent:#10c7c9;
  --accent2:#3b82f6;
  --light:#f5f8fc;
  --light2:#edf3fa;
  --white:#ffffff;
  --text:#1f2937;
  --muted:#667085;
  --border:#d9e2ec;
  --success:#0f9d58;
  --shadow:0 12px 35px rgba(8,26,51,.10);
  --shadow-soft:0 8px 24px rgba(8,26,51,.06);
  --radius:20px;
  --max:1280px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(92%, var(--max));
  margin:0 auto;
}

.section{
  padding:90px 0;
}

.section-sm{
  padding:60px 0;
}

.bg-light{
  background:var(--light);
}

.bg-gradient{
  background:
    radial-gradient(circle at top left, rgba(16,199,201,.08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(59,130,246,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.eyebrow{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--primary);
  border:1px solid #d9e8ff;
  font-size:.85rem;
  font-weight:600;
}

.section-title{
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.1;
  margin:18px 0 14px;
  color:var(--primary);
}

.section-subtitle{
  color:var(--muted);
  max-width:800px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  transition:.3s ease;
  border:2px solid transparent;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-dark{
  background:var(--primary);
  color:#fff;
}

.btn-dark:hover{
  background:var(--secondary);
}

.btn-light{
  background:#fff;
  color:var(--primary);
  border-color:var(--border);
}

.btn-outline{
  border-color:rgba(255,255,255,.28);
  color:#fff;
  background:rgba(255,255,255,.05);
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}

.topbar{
  background:var(--primary);
  color:rgba(255,255,255,.86);
  font-size:.92rem;
  padding:10px 0;
}

.topbar-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(217,226,236,.75);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-img{
  height:48px;
  width:auto;
  display:block;
  object-fit:contain;
}


.logo-text strong{
  display:block;
  color:var(--primary);
  font-size:1.05rem;
}

.logo-text span{
  display:block;
  color:var(--muted);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:1px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav-links a{
  color:var(--primary);
  font-weight:600;
}

.nav-cta{
  display:flex;
  gap:12px;
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:1.6rem;
  color:var(--primary);
  cursor:pointer;
}

.hero{
  background:
    linear-gradient(135deg, rgba(8,26,51,.97), rgba(16,42,82,.92)),
    radial-gradient(circle at 15% 20%, rgba(16,199,201,.16), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(59,130,246,.18), transparent 24%);
  color:#fff;
  padding:110px 0 95px;
}

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

.hero h1{
  font-size:clamp(2.6rem, 5vw, 4.4rem);
  line-height:1.03;
  margin:20px 0 16px;
}

.hero p{
  color:rgba(255,255,255,.84);
  font-size:1.06rem;
  margin-bottom:28px;
  max-width:720px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero-panel{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.hero-panel h3{
  margin-bottom:12px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:20px;
}

.hero-stat{
  background:rgba(255,255,255,.07);
  border-radius:16px;
  padding:18px;
}

.hero-stat strong{
  display:block;
  margin-bottom:6px;
  font-size:1.2rem;
}

.page-hero{
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  color:#fff;
  padding:90px 0 70px;
}

.page-hero h1{
  font-size:clamp(2.3rem, 4vw, 3.8rem);
  margin:16px 0 14px;
}

.page-hero p{
  color:rgba(255,255,255,.85);
  max-width:780px;
}

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

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

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.content-card{
  padding:28px;
}

.content-card h3{
  color:var(--primary);
  margin-bottom:10px;
}

.content-card p{
  color:var(--muted);
}

.check-list{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.check-list li{
  list-style:none;
  position:relative;
  padding-left:28px;
}

.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--success);
  font-weight:800;
}

.service-card{
  padding:28px;
}

.service-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(16,199,201,.18), rgba(59,130,246,.18));
  color:var(--primary);
  font-weight:800;
  margin-bottom:18px;
}

.service-card h3{
  color:var(--primary);
  margin-bottom:10px;
}

.service-card p{
  color:var(--muted);
  margin-bottom:14px;
}

.service-card ul{
  padding-left:18px;
  display:grid;
  gap:10px;
}

.metric{
  padding:28px 22px;
  text-align:center;
}

.metric strong{
  display:block;
  font-size:2rem;
  color:var(--primary);
  margin-bottom:6px;
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
}

.contact-card,
.form-card{
  padding:30px;
}

.contact-item{
  padding:16px 0;
  border-bottom:1px solid var(--border);
}

.contact-item:last-child{
  border-bottom:none;
}

.contact-item h4{
  color:var(--primary);
  margin-bottom:6px;
}

form{
  display:grid;
  gap:16px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

input, select, textarea{
  width:100%;
  padding:15px 16px;
  border:1px solid var(--border);
  border-radius:14px;
  outline:none;
  font-size:.98rem;
}

textarea{
  min-height:150px;
  resize:vertical;
}

input:focus, select:focus, textarea:focus{
  border-color:var(--accent2);
  box-shadow:0 0 0 4px rgba(59,130,246,.10);
}

footer{
  background:#071221;
  color:rgba(255,255,255,.78);
  padding:70px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .9fr;
  gap:28px;
  margin-bottom:28px;
}

.footer-grid h4{
  color:#fff;
  margin-bottom:16px;
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.58);
  font-size:.92rem;
}

.faq-item{
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  margin-bottom:16px;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:22px 24px;
  cursor:pointer;
  font-weight:700;
  color:var(--primary);
}

.faq-answer{
  display:none;
  padding:0 24px 22px;
  color:var(--muted);
}

.faq-item.active .faq-answer{
  display:block;
}

@media (max-width:1100px){
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:780px){
  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:82px;
    right:4%;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    border-radius:18px;
    padding:18px;
    min-width:240px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-links.show{
    display:flex;
  }

  .nav-cta{
    display:none;
  }

  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .hero-stats,
  .contact-grid,
  .footer-grid,
  .form-row{
    grid-template-columns:1fr;
  }

  .section{
    padding:72px 0;
  }

  .hero{
    padding:92px 0 72px;
  }
}
