:root{
  --primary:#061a3a;
  --secondary:#1457ff;
  --accent:#10b981;
  --orange:#ff8a00;
  --bg:#f6f8fc;
  --white:#ffffff;
  --text:#111827;
  --muted:#64748b;
  --dark:#020b1f;
  --border:#e5e7eb;
  --shadow:0 20px 60px rgba(6,26,58,.12);
  --radius:22px;
  --transition:.35s ease;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}

body.dark{
  --bg:#020b1f;
  --white:#07142d;
  --text:#f8fafc;
  --muted:#cbd5e1;
  --border:#1e293b;
  --shadow:0 20px 60px rgba(0,0,0,.35);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  width:100%;
  display:block;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

.section{
  padding:95px 0;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 55px;
}

.section-tag,
.badge{
  display:inline-block;
  padding:9px 18px;
  border-radius:50px;
  background:rgba(20,87,255,.1);
  color:var(--secondary);
  font-weight:700;
  font-size:14px;
  margin-bottom:15px;
}

.section-heading h2,
.about-content h2,
.cta h2{
  font-size:42px;
  line-height:1.15;
  color:var(--primary);
}

body.dark .section-heading h2,
body.dark .about-content h2,
body.dark .cta h2{
  color:#fff;
}

.section-heading p{
  color:var(--muted);
  margin-top:15px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:50px;
  font-weight:800;
  border:1px solid transparent;
  transition:var(--transition);
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  color:#fff;
  box-shadow:0 12px 30px rgba(20,87,255,.25);
}

.btn-primary:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(20,87,255,.35);
}

.btn-outline{
  border-color:var(--border);
  background:var(--white);
  color:var(--primary);
}

.btn-outline:hover{
  background:var(--primary);
  color:#fff;
}

/* Scroll Progress */
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  height:4px;
  width:0;
  background:linear-gradient(90deg,var(--secondary),var(--accent),var(--orange));
  z-index:9999;
}

/* Header */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:18px 0;
  transition:var(--transition);
}

.header.scrolled{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:12px 0;
}

body.dark .header.scrolled{
  background:rgba(2,11,31,.9);
}

.nav-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.logo{
  font-size:26px;
  font-weight:900;
  color:var(--primary);
}

.logo span{
  color:var(--secondary);
}

body.dark .logo{
  color:#fff;
}

.navbar{
  display:flex;
  align-items:center;
  gap:24px;
}

.navbar a{
  font-weight:700;
  font-size:15px;
  color:var(--text);
  transition:var(--transition);
}

.navbar a:hover,
.navbar a.active{
  color:var(--secondary);
}

.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:130%;
  left:0;
  width:230px;
  background:var(--white);
  padding:16px;
  border-radius:18px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:var(--transition);
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
}

.dropdown-menu a:hover{
  background:rgba(20,87,255,.08);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.theme-toggle,
.menu-btn{
  border:0;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--white);
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  cursor:pointer;
  font-size:18px;
}

.menu-btn{
  display:none;
}

/* Hero */
.hero{
  min-height:100vh;
  padding:150px 0 90px;
  background:
    radial-gradient(circle at top left,rgba(20,87,255,.18),transparent 30%),
    radial-gradient(circle at bottom right,rgba(16,185,129,.18),transparent 30%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:55px;
}

.hero-content h1{
  font-size:62px;
  line-height:1.05;
  color:var(--primary);
  margin-bottom:22px;
  letter-spacing:-2px;
}

body.dark .hero-content h1{
  color:#fff;
}

.hero-content p{
  font-size:18px;
  color:var(--muted);
  max-width:650px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:32px 0;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.hero-stats div{
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(18px);
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
  box-shadow:0 16px 40px rgba(0,0,0,.06);
}

body.dark .hero-stats div{
  background:rgba(255,255,255,.06);
}

.hero-stats h3{
  font-size:30px;
  color:var(--secondary);
}

.hero-stats p{
  font-size:14px;
}

.hero-image{
  position:relative;
}

.hero-image img{
  height:560px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow);
}

.floating-card{
  position:absolute;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(18px);
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px 22px;
  box-shadow:var(--shadow);
}

body.dark .floating-card{
  background:rgba(7,20,45,.9);
}

.floating-card strong{
  display:block;
  font-size:14px;
}

.floating-card span{
  font-size:28px;
  font-weight:900;
  color:var(--accent);
}

.card-one{
  top:45px;
  left:-35px;
}

.card-two{
  right:-30px;
  bottom:80px;
}

/* Trusted */
.trusted{
  padding:36px 0;
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.trusted p{
  text-align:center;
  color:var(--muted);
  margin-bottom:22px;
  font-weight:700;
}

.logo-strip{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}

.logo-strip span{
  font-size:22px;
  font-weight:900;
  color:#94a3b8;
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

.about-image img{
  height:520px;
  object-fit:cover;
  border-radius:32px;
  box-shadow:var(--shadow);
}

.about-content p{
  color:var(--muted);
  margin:20px 0;
}

.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:25px 0 32px;
}

.feature-list div{
  background:var(--white);
  padding:15px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:700;
}

/* Services */
.services{
  background:linear-gradient(180deg,var(--bg),var(--white));
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.service-card{
  background:var(--white);
  padding:34px 28px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  transition:var(--transition);
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow);
  border-color:rgba(20,87,255,.25);
}

.service-card .icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(20,87,255,.12),rgba(16,185,129,.12));
  font-size:30px;
  margin-bottom:22px;
}

.service-card h3{
  font-size:22px;
  color:var(--primary);
  margin-bottom:12px;
}

body.dark .service-card h3{
  color:#fff;
}

.service-card p{
  color:var(--muted);
  margin-bottom:20px;
}

.service-card a{
  color:var(--secondary);
  font-weight:900;
}

/* Why */
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.why-box{
  padding:30px;
  background:var(--primary);
  color:#fff;
  border-radius:var(--radius);
  position:relative;
  overflow:hidden;
}

.why-box::before{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
  top:-50px;
  right:-50px;
}

.why-box h3{
  font-size:22px;
  margin-bottom:12px;
}

.why-box p{
  color:#cbd5e1;
}

/* Industries */
.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.industry-grid div{
  background:var(--white);
  padding:25px;
  text-align:center;
  border-radius:18px;
  border:1px solid var(--border);
  font-weight:900;
  color:var(--primary);
  transition:var(--transition);
}

body.dark .industry-grid div{
  color:#fff;
}

.industry-grid div:hover{
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  color:#fff;
  transform:translateY(-6px);
}

/* Process */
.process{
  background:var(--white);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.process-grid div{
  padding:32px;
  border-radius:var(--radius);
  background:var(--bg);
  border:1px solid var(--border);
  transition:var(--transition);
}

.process-grid div:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
}

.process-grid span{
  display:inline-grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--secondary);
  color:#fff;
  font-weight:900;
  margin-bottom:18px;
}

.process-grid h3{
  font-size:22px;
  color:var(--primary);
  margin-bottom:10px;
}

body.dark .process-grid h3{
  color:#fff;
}

.process-grid p{
  color:var(--muted);
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.price-card{
  background:var(--white);
  padding:38px;
  border-radius:28px;
  border:1px solid var(--border);
  box-shadow:0 14px 35px rgba(0,0,0,.05);
  position:relative;
  transition:var(--transition);
}

.price-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow);
}

.price-card.featured{
  border:2px solid var(--secondary);
  transform:scale(1.04);
}

.popular{
  position:absolute;
  top:20px;
  right:20px;
  background:var(--orange);
  color:#fff;
  padding:6px 14px;
  border-radius:50px;
  font-weight:900;
  font-size:12px;
}

.price-card h3{
  font-size:24px;
  color:var(--primary);
}

body.dark .price-card h3{
  color:#fff;
}

.price-card h2{
  font-size:42px;
  margin:16px 0;
  color:var(--secondary);
}

.price-card p{
  color:var(--muted);
}

.price-card ul{
  list-style:none;
  margin:26px 0;
}

.price-card li{
  padding:10px 0;
  color:var(--muted);
  border-bottom:1px solid var(--border);
}

.price-card li::before{
  content:"✔ ";
  color:var(--accent);
  font-weight:900;
}

/* Testimonials */
.testimonials{
  background:linear-gradient(135deg,var(--primary),var(--dark));
  color:#fff;
}

.testimonials .section-heading h2{
  color:#fff;
}

.testimonial-card{
  max-width:850px;
  margin:auto;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  padding:45px;
  text-align:center;
}

.testimonial-card p{
  font-size:22px;
  color:#e2e8f0;
}

.client{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  margin-top:30px;
}

.client img{
  width:70px;
  height:70px;
  object-fit:cover;
  border-radius:50%;
}

.client h4{
  font-size:18px;
}

.client span{
  color:#cbd5e1;
}

/* FAQ */
.faq-wrapper{
  max-width:850px;
  margin:auto;
}

.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:18px;
  margin-bottom:16px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:22px;
  border:0;
  background:transparent;
  text-align:left;
  font-size:18px;
  font-weight:900;
  color:var(--primary);
  cursor:pointer;
}

body.dark .faq-question{
  color:#fff;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:var(--transition);
}

.faq-answer p{
  padding:0 22px 22px;
  color:var(--muted);
}

.faq-item.active .faq-answer{
  max-height:180px;
}

/* CTA */
.cta{
  padding:90px 0;
}

.cta-box{
  text-align:center;
  background:
    linear-gradient(135deg,rgba(20,87,255,.95),rgba(16,185,129,.95)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80") center/cover;
  padding:70px 30px;
  border-radius:34px;
  color:#fff;
  box-shadow:var(--shadow);
}

.cta-box h2{
  color:#fff;
  font-size:44px;
}

.cta-box p{
  margin:15px 0 28px;
  color:#e0f2fe;
}

/* Footer */
.footer{
  background:
    linear-gradient(135deg,rgba(2,11,31,.98),rgba(6,26,58,.96)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80") center/cover;
  color:#fff;
  padding:75px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:35px;
}

.footer-grid > div{
  min-width:0;
}

.footer h3{
  font-size:26px;
  margin-bottom:15px;
}

.footer h4{
  font-size:18px;
  margin-bottom:18px;
}

.footer p,
.footer a{
  color:#cbd5e1;
  display:block;
  margin-bottom:10px;
}

.footer a{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
  gap:9px;
  transition:var(--transition);
}

.footer a::before{
  content:"\2192";
  width:22px;
  height:22px;
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  flex:0 0 auto;
  background:rgba(255,255,255,.1);
  color:var(--accent);
  font-size:13px;
  font-weight:900;
}

.footer .contact-link::before{
  content:attr(data-icon);
  font-size:12px;
}

.footer a:hover{
  color:#fff;
  transform:translateX(4px);
}

.footer p{
  max-width:330px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:45px;
  padding:22px 4%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}

.footer-bottom div{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* Floating Buttons */
.whatsapp,
.call-shortcut,
.back-top{
  position:fixed;
  right:22px;
  width:54px;
  height:54px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:0;
  z-index:99;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.whatsapp{
  bottom:90px;
  background:#25d366;
  color:#fff;
  font-size:24px;
}

.call-shortcut{
  bottom:156px;
  background:var(--orange);
  color:#fff;
  font-size:22px;
}

.whatsapp:hover,
.call-shortcut:hover{
  transform:translateY(-4px);
}

.back-top{
  bottom:24px;
  background:var(--primary);
  color:#fff;
  font-size:22px;
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
}

.back-top.show{
  opacity:1;
  visibility:visible;
}

/* Forms Common */
.form-box{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:28px;
  padding:35px;
  box-shadow:var(--shadow);
}

.form-group{
  margin-bottom:18px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  font-weight:800;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:15px 18px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--bg);
  color:var(--text);
  outline:none;
  font-family:inherit;
}

.form-group textarea{
  min-height:130px;
  resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--secondary);
}

/* Inner Pages */
.page-hero{
  padding:160px 0 90px;
  background:
    linear-gradient(135deg,rgba(6,26,58,.92),rgba(20,87,255,.78)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80") center/cover;
  color:#fff;
  text-align:center;
}

.page-hero h1{
  font-size:54px;
  margin-bottom:15px;
}

.page-hero p{
  max-width:720px;
  margin:auto;
  color:#e2e8f0;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.info-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  transition:var(--transition);
}

.info-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
}

.info-card h3{
  color:var(--primary);
  font-size:22px;
  margin-bottom:12px;
}

body.dark .info-card h3{
  color:#fff;
}

.info-card p{
  color:var(--muted);
}

.blog-card img,
.case-card img,
.team-card img{
  height:240px;
  object-fit:cover;
  border-radius:20px;
  margin-bottom:20px;
}
