:root{
  --navy:#071f55;
  --blue:#0d3d91;
  --cyan:#18b7e6;
  --green:#3f8f22;
  --red:#ee3d4d;
  --ink:#12213a;
  --muted:#667085;
  --light:#f5f8ff;
  --white:#ffffff;
  --line:#e5eaf4;
  --shadow:0 22px 70px rgba(7,31,85,.14);
  --radius:28px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  color:var(--ink);
  background:linear-gradient(135deg,#f8fbff 0%,#fff 45%,#eef8ff 100%);
  overflow-x:hidden;
}

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

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* Header */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(7,31,85,.08);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
}

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

.brand-logo,
.footer-brand img{
  width:76px;
  height:auto;
}

.brand strong{
  display:block;
  color:var(--navy);
  font-size:1.15rem;
}

.brand small{
  color:var(--green);
  font-weight:700;
}

.nav-menu{
  display:flex;
  gap:6px;
  align-items:center;
}

.nav-menu a{
  font-weight:700;
  font-size:.88rem;
  padding:10px 12px;
  border-radius:999px;
  color:#263958;
  transition:.3s;
}

.nav-menu a:hover,
.nav-menu a.active{
  background:var(--navy);
  color:white;
  transform:translateY(-2px);
}

.menu-toggle{
  display:none;
  background:var(--navy);
  border:0;
  border-radius:12px;
  padding:10px;
}

.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:white;
  margin:5px;
}

/* Hero */

.hero{
  position:relative;
  padding:96px 0 70px;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:-35% -10% auto auto;
  width:760px;
  height:760px;
  background:radial-gradient(circle,var(--cyan),transparent 62%);
  opacity:.18;
  animation:float 8s infinite alternate;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:50px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  gap:9px;
  align-items:center;
  color:var(--green);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
}

.eyebrow:before{
  content:"";
  width:42px;
  height:3px;
  background:var(--green);
  border-radius:999px;
}

.hero h1,
.page-hero h1{
  font-size:clamp(2.7rem,6vw,5.8rem);
  line-height:.95;
  margin:16px 0;
  color:var(--navy);
  letter-spacing:-.06em;
}

.gradient-text{
  background:linear-gradient(90deg,var(--green),var(--cyan),var(--navy));
  -webkit-background-clip:text;
  color:transparent;
}

.lead{
  font-size:1.12rem;
  line-height:1.8;
  color:#475467;
  max-width:760px;
}

.hero p{
  line-height:1.8;
  color:#475467;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 22px;
  border-radius:999px;
  font-weight:900;
  transition:.32s;
  border:1px solid transparent;
}

.btn.primary{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:white;
  box-shadow:0 18px 35px rgba(7,31,85,.22);
}

.btn.secondary{
  background:white;
  border-color:var(--line);
  color:var(--navy);
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.hero-card{
  position:relative;
  background:linear-gradient(145deg,#061b4a,#0a3b89);
  border-radius:36px;
  padding:28px;
  color:white;
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:520px;
}

.hero-card:before{
  content:"";
  position:absolute;
  inset:-80px -120px auto auto;
  width:330px;
  height:330px;
  border-radius:50%;
  background:rgba(24,183,230,.35);
}

.orbit{
  position:absolute;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  animation:spin 18s linear infinite;
}

.orbit.o1{
  width:330px;
  height:330px;
  right:45px;
  top:55px;
}

.orbit.o2{
  width:235px;
  height:235px;
  right:92px;
  top:103px;
  animation-duration:12s;
}

.orbit span{
  position:absolute;
  width:62px;
  height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.13);
  backdrop-filter:blur(12px);
  font-size:28px;
}

.orbit span:nth-child(1){top:-24px;left:95px}
.orbit span:nth-child(2){right:-20px;top:120px}
.orbit span:nth-child(3){bottom:0;left:35px}

.hero-stat{
  position:absolute;
  left:28px;
  bottom:28px;
  right:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.stat,
.glass{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.17);
  backdrop-filter:blur(14px);
  border-radius:22px;
  padding:18px;
}

.stat b{
  font-size:2rem;
  display:block;
}

.stat small{
  color:#eaf3ff;
}

/* Sections */

.section{
  padding:82px 0;
}

.section-title{
  max-width:760px;
  margin-bottom:36px;
}

.section-title h2{
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1.05;
  margin:10px 0;
  color:var(--navy);
  letter-spacing:-.04em;
}

.grid{
  display:grid;
  gap:22px;
}

.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

/* General Cards - Improved Visibility */

.card{
  background:#ffffff;
  border:1px solid #dbe4f3;
  border-radius:var(--radius);
  padding:30px;
  box-shadow:0 15px 40px rgba(7,31,85,.12);
  transition:.35s;
  position:relative;
  overflow:hidden;
}

.card:after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:5px;
  height:0;
  background:linear-gradient(var(--cyan),var(--green));
  transition:.35s;
}

.card:hover{
  transform:translateY(-9px);
  box-shadow:var(--shadow);
}

.card:hover:after{
  height:100%;
}

.icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--navy),var(--cyan));
  color:white;
  font-size:27px;
  margin-bottom:18px;
  box-shadow:0 14px 28px rgba(13,61,145,.18);
}

.card h3{
  margin:0 0 14px;
  color:var(--navy);
  font-size:1.35rem;
  font-weight:800;
}

.card p,
.card li{
  color:#334155;
  line-height:1.8;
  font-size:15px;
}

.card ul{
  padding-left:18px;
  margin:12px 0 0;
}

/* Dark Sections */

.dark-band{
  background:linear-gradient(135deg,#071f55,#0d3d91);
  color:white;
  position:relative;
  overflow:hidden;
}

.dark-band .section-title h2{
  color:white;
}

.dark-band .section-title p,
.dark-band .lead{
  color:#d7e7ff;
}

.dark-band .card{
  background:#ffffff;
  color:#12213a;
  border-top:5px solid var(--green);
}

.dark-band .card h3{
  color:var(--navy);
}

.dark-band .card p,
.dark-band .card li{
  color:#475467;
}

.dark-band .card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(0,0,0,.22);
}

.dark-band .icon{
  background:linear-gradient(135deg,#071f55,#18b7e6);
}

/* Pills */

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  padding:11px 16px;
  border-radius:999px;
  background:#eef6ff;
  color:var(--navy);
  font-weight:800;
  border:1px solid var(--line);
}

/* Timeline */

.timeline{
  position:relative;
}

.step{
  display:grid;
  grid-template-columns:88px 1fr;
  gap:18px;
  align-items:start;
  margin-bottom:18px;
}

.step-num{
  width:72px;
  height:72px;
  border-radius:24px;
  background:linear-gradient(135deg,var(--green),var(--cyan));
  color:white;
  display:grid;
  place-items:center;
  font-size:1.5rem;
  font-weight:900;
  box-shadow:0 15px 35px rgba(63,143,34,.22);
}

/* Page Hero */

.page-hero{
  padding:78px 0 48px;
  background:linear-gradient(135deg,#eef8ff,#fff);
  border-bottom:1px solid var(--line);
}

/* Contact */

.contact-box{
  background:var(--navy);
  color:white;
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}

.form input,
.form textarea,
.form select{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  font:inherit;
  margin-bottom:14px;
  background:white;
}

.form textarea{
  min-height:140px;
}

/* FAQ */

.accordion{
  border:1px solid var(--line);
  border-radius:22px;
  background:white;
  overflow:hidden;
}

.faq-q{
  padding:22px;
  font-weight:900;
  color:var(--navy);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
}

.faq-a{
  display:none;
  padding:0 22px 22px;
  color:#5d6a7e;
  line-height:1.7;
}

.accordion.open .faq-a{
  display:block;
}

/* Industries Section */

.industry-section{
  background:#0b2e75;
  color:#ffffff;
  position:relative;
  overflow:hidden;
}

.industry-section::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(76,175,80,.18);
  border-radius:50%;
  top:-160px;
  right:-120px;
}

.industry-layout{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}

.industry-content .eyebrow{
  color:#4CAF50;
}

.industry-content h2{
  color:#ffffff;
  font-size:54px;
  line-height:1.15;
  margin-bottom:25px;
}

.industry-content .lead,
.industry-content p{
  color:#f1f5f9;
  font-size:18px;
  line-height:1.9;
  margin-bottom:22px;
}

.industry-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.industry-item{
  background:#ffffff;
  padding:24px;
  border-radius:22px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
  border-left:5px solid #4CAF50;
  transition:all .35s ease;
}

.industry-item:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.28);
}

.industry-icon{
  min-width:62px;
  height:62px;
  border-radius:16px;
  background:linear-gradient(135deg,#0b2e75,#00a9e0);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#ffffff;
}

.industry-item h3{
  color:#0b2e75;
  font-size:21px;
  margin-bottom:8px;
  line-height:1.3;
}

.industry-item p{
  color:#4b5563;
  font-size:15px;
  line-height:1.7;
  margin:0;
}

/* CTA */

.cta-section{
  background:linear-gradient(135deg,#eef8ff,#ffffff);
}

.cta-card{
  background:linear-gradient(135deg,#071f55,#0d3d91);
  color:white;
  border-radius:36px;
  padding:55px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.cta-card h2{
  color:white;
  font-size:clamp(2rem,4vw,3.6rem);
  line-height:1.05;
  margin:12px 0;
}

.cta-card p{
  color:#d7e7ff;
  line-height:1.8;
  max-width:850px;
}

.cta-card .btn.secondary{
  background:white;
  color:var(--navy);
}

/* Footer */

.site-footer{
  background:#061b4a;
  color:white;
  padding:60px 0 24px;
}

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

.site-footer a{
  display:block;
  color:#d8e7ff;
  margin:9px 0;
}

.site-footer p{
  color:#cbd8ee;
  line-height:1.7;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:34px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  color:#cbd8ee;
}

/* Animations */

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

.reveal.visible{
  opacity:1;
  transform:none;
}

.cursor-glow{
  position:fixed;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(24,183,230,.12),transparent 60%);
  pointer-events:none;
  z-index:0;
  transform:translate(-50%,-50%);
}

@keyframes spin{
  to{transform:rotate(360deg)}
}

@keyframes float{
  to{transform:translateY(40px) translateX(-30px)}
}

/* Responsive */

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

  .nav-menu{
    position:fixed;
    top:78px;
    left:4%;
    right:4%;
    display:none;
    flex-direction:column;
    background:white;
    border:1px solid var(--line);
    border-radius:24px;
    padding:18px;
    box-shadow:var(--shadow);
  }

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

  .nav-menu a{
    width:100%;
    text-align:center;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .industry-layout{
    grid-template-columns:1fr;
  }

  .hero-card{
    min-height:440px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
  }

  .hero-stat{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:56px;
  }

  .industry-content h2{
    font-size:42px;
  }
}

@media(max-width:650px){
  .industry-list{
    grid-template-columns:1fr;
  }

  .industry-content h2{
    font-size:34px;
  }

  .industry-item{
    padding:20px;
  }

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

@media(max-width:560px){
  .hero h1,
  .page-hero h1{
    font-size:2.6rem;
  }

  .section{
    padding:56px 0;
  }

  .card{
    padding:22px;
  }

  .step{
    grid-template-columns:1fr;
  }

  .orbit{
    opacity:.45;
  }

  .brand-logo{
    width:62px;
  }
}

.cert-icon{
    width:85px;
    height:85px;
    border-radius:20px;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    margin-bottom:20px;
}

.cert-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s;
}

.card:hover .cert-icon img{
    transform:scale(1.1);
}