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

:root{
  --primary:#1e40af;
  --secondary:#0f172a;
  --accent:#3b82f6;
  --light:#f8fafc;
  --dark:#0f172a;
  --text:#334155;
  --muted:#64748b;
  --card:#ffffff;
  --border:rgba(15,23,42,0.10);
  --success:#10b981;
}

body{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height:1.6;
  color:var(--text);
  overflow-x:hidden;
  background: var(--light);
}

.container{ max-width:1200px; margin:0 auto; padding:0 20px; }

/* Navigation */
nav{
  background:rgba(15,23,42,0.95);
  backdrop-filter: blur(10px);
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 20px;
  max-width:1200px;
  margin:0 auto;
}

.logo{
  font-size:1.5rem;
  font-weight:800;
  color:white;
  text-decoration:none;
  letter-spacing:0.3px;
}
.logo span{ color:var(--accent); }

.nav-menu{
  display:flex;
  gap:2rem;
  list-style:none;
  align-items:center;
}
.nav-menu a{
  color:white;
  text-decoration:none;
  transition:color 0.25s;
  font-weight:600;
  font-size:0.95rem;
}
.nav-menu a:hover{ color:var(--accent); }

.mobile-toggle{
  display:none;
  background:none;
  border:none;
  color:white;
  font-size:1.5rem;
  cursor:pointer;
  transition: transform 0.3s;
}

/* Hero */
.hero{
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color:white;
  padding:160px 20px 90px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:url('data:image/svg+xml,<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="48" height="48" patternUnits="userSpaceOnUse"><path d="M 48 0 L 0 0 0 48" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="120" height="120" fill="url(%23grid)"/></svg>');
  opacity:0.35;
}
.hero-content{
  position:relative;
  z-index:1;
  max-width:920px;
  margin:0 auto;
}
.hero h1{
  font-size:3rem;
  margin-bottom:0.8rem;
  animation:fadeInUp 0.8s ease;
  letter-spacing:0.3px;
}
.tagline{
  font-style:italic;
  color:#93c5fd;
  margin-bottom:0.8rem;
  font-size:1.35rem;
  animation:fadeInUp 0.8s ease 0.15s both;
}
.hero p{
  font-size:1.15rem;
  margin:0.35rem auto 1.8rem;
  opacity:0.95;
  max-width:820px;
  animation:fadeInUp 0.8s ease 0.3s both;
}

.hero-bullets{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
  margin: 1.1rem 0 2.1rem;
  animation:fadeInUp 0.8s ease 0.45s both;
}
.pill{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight:700;
  font-size:0.92rem;
  color:#eaf2ff;
}

.cta-buttons{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
  animation:fadeInUp 0.8s ease 0.6s both;
}
.cta-button{
  display:inline-block;
  background:var(--accent);
  color:white;
  padding:1rem 2rem;
  text-decoration:none;
  border-radius:10px;
  font-weight:800;
  transition:all 0.25s;
  box-shadow:0 10px 25px rgba(0,0,0,0.18);
}
.cta-button:hover{
  background:white;
  color:var(--primary);
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,0.22);
}
.cta-button.secondary{
  background:transparent;
  border:2px solid rgba(255,255,255,0.9);
  box-shadow:none;
}
.cta-button.secondary:hover{
  background:white;
  color:var(--primary);
}

/* Trust Badges */
.trust-banner{
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 20px;
}
.trust-items{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}
.trust-icon{
  font-size: 1.8rem;
}

/* Sections */
section{ padding:80px 20px; }
.section-title{
  text-align:center;
  font-size:2.35rem;
  margin-bottom:0.8rem;
  color:var(--secondary);
  letter-spacing:0.2px;
}
.section-subtitle{
  text-align:center;
  font-size:1.06rem;
  color:var(--muted);
  margin:0 auto 3rem;
  max-width:780px;
}

/* Highlight Banner */
.highlight{
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.highlight-wrap{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:2.5rem;
  align-items:center;
}
.highlight-card{
  background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(30,64,175,0.08) 100%);
  border: 1px solid rgba(30,64,175,0.18);
  border-radius:14px;
  padding: 1.6rem;
}
.highlight h3{
  color: var(--secondary);
  font-size:1.6rem;
  margin-bottom:0.6rem;
}
.highlight p{ color: var(--text); margin-bottom:1rem; }
.highlight ul{ list-style:none; margin-top:0.5rem; }
.highlight ul li{
  padding:0.35rem 0;
  padding-left:1.5rem;
  position:relative;
  color: var(--text);
  font-weight:600;
}
.highlight ul li:before{
  content:"✓";
  position:absolute;
  left:0;
  color: var(--accent);
  font-weight:900;
}
.mini-note{
  font-size:0.92rem;
  color: var(--muted);
  margin-top:0.8rem;
}

/* How it works */
.steps{
  background: var(--light);
}
.steps-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.step-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
  transition: all 0.25s;
}
.step-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(2,6,23,0.10);
}
.step-no{
  width:42px; height:42px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background: rgba(59,130,246,0.14);
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.step-card h4{
  color: var(--secondary);
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}
.step-card p{ color: var(--muted); }

/* Plans */
.plans{
  background: white;
}
.plans-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2.6rem;
}
.plan{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 12px 26px rgba(2,6,23,0.07);
  transition: all 0.25s;
  position: relative;
  overflow:hidden;
}
.plan::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:5px;
  background: var(--accent);
  opacity:0.95;
}
.plan:hover{
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(2,6,23,0.12);
}
.badge{
  display:inline-block;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(59,130,246,0.14);
  border: 1px solid rgba(59,130,246,0.22);
  color: var(--primary);
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}
.plan h3{
  color: var(--secondary);
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}
.plan p{
  color: var(--muted);
  margin-bottom: 1rem;
}
.price-range{
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0.8rem 0 0.3rem;
}
.price-note{
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.plan ul{ list-style:none; margin-top: 0.8rem; }
.plan ul li{
  padding:0.36rem 0;
  padding-left: 1.5rem;
  position:relative;
  color: var(--text);
  font-weight: 600;
}
.plan ul li:before{
  content:"✓";
  position:absolute;
  left:0;
  color: var(--accent);
  font-weight:900;
}
.plan-cta{
  margin-top: 1.4rem;
  display:block;
  text-align:center;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: var(--accent);
  color:white;
  text-decoration:none;
  font-weight: 900;
  transition: all 0.25s;
}
.plan-cta:hover{
  background: var(--secondary);
  transform: translateY(-2px);
}

/* Testimonials */
.testimonials{
  background: var(--light);
}
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.6rem;
}
.testimonial-card{
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
  position: relative;
}
.quote-icon{
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.testimonial-text{
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.testimonial-author{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}
.author-info h4{
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.author-info p{
  color: var(--muted);
  font-size: 0.85rem;
}

/* FAQ */
.faq{
  background: white;
}
.faq-list{
  max-width: 800px;
  margin: 2.6rem auto 0;
}
.faq-item{
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.25s;
}
.faq-question{
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--secondary);
  user-select: none;
}
.faq-question:hover{
  background: rgba(59,130,246,0.05);
}
.faq-toggle{
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text);
}
.faq-answer-content{
  padding: 0 1.5rem 1.3rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer{
  max-height: 500px;
}
.faq-item.active .faq-toggle{
  transform: rotate(180deg);
}

/* Services */
.services{ background: var(--light); }
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:2rem;
}
.service-card{
  background:white;
  padding:2rem;
  border-radius:12px;
  box-shadow:0 10px 22px rgba(2,6,23,0.07);
  transition:all 0.25s;
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.service-card::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background: var(--accent);
}
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 38px rgba(2,6,23,0.12);
}
.service-icon{ font-size:2.7rem; margin-bottom:0.7rem; }
.service-card h3{
  color:var(--primary);
  margin-bottom:0.6rem;
  font-size:1.25rem;
}
.service-card p{ color: var(--muted); }
.service-card ul{ list-style:none; margin-top:0.9rem; }
.service-card ul li{
  padding:0.3rem 0;
  padding-left:1.5rem;
  position:relative;
  color: var(--text);
  font-weight: 600;
}
.service-card ul li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:900;
}

/* Vision & Mission */
.vision-mission{ background:white; }
.vm-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:2.2rem;
  margin-top:2.6rem;
}
.vm-card{
  padding:2.2rem;
  background:linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color:white;
  border-radius:16px;
  box-shadow:0 14px 34px rgba(2,6,23,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}
.vm-card h3{
  font-size:1.75rem;
  margin-bottom:1rem;
  color:#93c5fd;
}
.vm-card p{ font-size:1.05rem; line-height:1.85; opacity:0.95; }

/* Why Choose */
.why-choose{ background: var(--light); }
.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:1.6rem;
  margin-top:2.6rem;
}
.feature-item{
  text-align:center;
  padding:2rem;
  background:white;
  border-radius:12px;
  box-shadow:0 10px 22px rgba(2,6,23,0.07);
  transition:all 0.25s;
  border:1px solid var(--border);
}
.feature-item:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 36px rgba(2,6,23,0.12);
}
.feature-icon{ font-size:2.8rem; margin-bottom:0.8rem; }
.feature-item h3{ color:var(--primary); margin-bottom:0.4rem; }
.feature-item p{ color: var(--muted); }

/* Industries */
.industries{ background:white; }
.industries-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:1.1rem;
  margin-top:2.4rem;
}
.industry-tag{
  background: var(--light);
  padding:1.2rem;
  text-align:center;
  border-radius:10px;
  font-weight:800;
  color:var(--primary);
  border:1px solid var(--border);
  transition:all 0.25s;
}
.industry-tag:hover{
  border-color: rgba(59,130,246,0.55);
  background:white;
  box-shadow:0 10px 20px rgba(2,6,23,0.08);
  transform: translateY(-2px);
}

/* Contact */
.contact{
  background: var(--secondary);
  color:white;
}
.contact-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.6rem;
  margin-top:2.3rem;
}
.contact-info h3{
  margin-bottom:1.4rem;
  color:var(--accent);
  font-size:1.45rem;
}
.contact-item{
  margin-bottom:1.2rem;
  padding:1.25rem;
  background: rgba(255,255,255,0.06);
  border-radius:10px;
  border-left: 4px solid var(--accent);
}
.contact-item strong{
  color: var(--accent);
  display:block;
  margin-bottom:0.35rem;
  font-size:1.05rem;
}

.contact-form h3{
  margin-bottom:1.2rem;
  color: var(--accent);
  font-size:1.45rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  padding:1rem;
  margin-bottom:0.9rem;
  border-radius:10px;
  background: rgba(255,255,255,0.10);
  color:white;
  border: 1px solid rgba(255,255,255,0.22);
  outline: none;
}
.contact-form select option{
  background: var(--secondary);
  color: white;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: rgba(255,255,255,0.65); }

.contact-form button{
  background: var(--accent);
  color:white;
  padding:1rem 1.2rem;
  border:none;
  border-radius:10px;
  cursor:pointer;
  font-weight:900;
  width:100%;
  transition: all 0.25s;
}
.contact-form button:hover{
  background:white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Footer */
footer{
  background: var(--dark);
  color:white;
  padding:3rem 20px 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-content{
  max-width: 1200px;
  margin: 0 auto;
}
.footer-cta{
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 14px;
  margin-bottom: 2.5rem;
}
.footer-cta h3{
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: white;
}
.footer-info{
  text-align: center;
}
.footer-info p{ margin:0.4rem 0; opacity:0.88; }

/* Animations */
@keyframes fadeInUp{
  from{ opacity:0; transform:translateY(26px); }
  to{ opacity:1; transform:translateY(0); }
}

/* Responsive */
@media (max-width: 900px){
  .highlight-wrap{ grid-template-columns: 1fr; }
  .trust-items{ gap: 1.5rem; }
}
@media (max-width: 768px){
  .mobile-toggle{ display:block; }
  .nav-menu{
    position:absolute;
    top:100%;
    left:0; right:0;
    background: var(--secondary);
    flex-direction:column;
    padding:1.6rem;
    gap:1rem;
    display:none;
  }
  .nav-menu.active{ display:flex; }

  .hero h1{ font-size:2rem; }
  .hero p{ font-size:1.05rem; }
  .tagline{ font-size: 1.1rem; }
  .hero-bullets{ gap: 0.6rem; }
  .pill{ font-size: 0.8rem; padding: 0.45rem 0.75rem; }

  .contact-content{ grid-template-columns:1fr; }
  .cta-buttons{ flex-direction:column; }
  .services-grid, .features-grid, .industries-grid{ grid-template-columns:1fr; }
  .plans-grid, .testimonials-grid{ grid-template-columns: 1fr; }
  .vm-grid{ grid-template-columns: 1fr; }
}
