.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,118,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,200,255,0.10) 0%, transparent 60%),
    var(--bg);
}
.hero-grid { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 20s linear infinite;
}
@keyframes gridPan { from { transform: translateY(0); } to { transform: translateY(60px); } }
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-badge {
  display: inline-block;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both;
}
.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 1.2rem;
  animation: fadeUp .8s .1s ease both;
}
.hero h1 .accent { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp .8s .2s ease both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}
.stats-bar {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .4s ease both;
}
.stat {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
#services, #pricing, #contact { background: var(--bg2); }
#about, #why { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--card);
  padding: 1.75rem 1.5rem;
  transition: background .25s;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card:nth-child(4n) { border-right: none; }
.service-card:nth-last-child(-n+4) { border-bottom: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { background: #1a2438; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 36px; height: 36px; margin-bottom: 0.9rem; color: var(--accent); }
.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .35rem;
}
.service-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; font-weight: 300; }
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual-inner {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg3);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-visual-inner::after {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,118,255,0.2), transparent 70%);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,200,255,0.15); }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(0,200,255,0.2); }
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
}
.plan-name { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.plan-price { font-family: 'Rajdhani', sans-serif; font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; margin: 1rem 0 .25rem; }
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-price sub { font-size: 0.9rem; color: var(--muted); }
.plan-desc { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.plan-features li { font-size: 0.85rem; color: var(--text); display: flex; gap: .6rem; align-items: center; }
.plan-features li::before { content: '—'; color: var(--accent); font-weight: 700; }
.plan-btn { display: block; text-align: center; text-decoration: none; padding: 12px; border-radius: 6px; font-weight: 600; font-size: 0.88rem; letter-spacing: .5px; transition: all .2s; }
.plan-btn-outline { border: 1px solid var(--border); color: var(--text); }
.plan-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.plan-btn-solid { background: var(--accent2); color: #fff; }
.plan-btn-solid:hover { background: var(--accent); color: #000; box-shadow: var(--glow); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg3);
  transition: border-color .25s, box-shadow .25s;
}
.why-card:hover { border-color: rgba(0,200,255,0.4); box-shadow: 0 0 30px rgba(0,200,255,0.1); }
.why-icon { font-size: 2rem; margin-bottom: .75rem; }
.why-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.why-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.contact-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-wrap::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0,118,255,0.15), transparent 70%);
  pointer-events: none;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.contact-info-item { display: flex; gap: .75rem; align-items: flex-start; }
.contact-info-icon {
  width: 38px; height: 38px;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h5 { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-info-item p { font-size: 0.88rem; color: var(--text); }
.form-full textarea { height: 100px; }
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(4n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(3n) { border-right: none; }
  .service-card:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .service-card:nth-last-child(-n+3) { border-bottom: none; }
}
@media (max-width: 900px) {
  #about { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 680px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .service-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 620px) {
  .stats-bar { flex-direction: column; align-items: center; gap: 1.2rem; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
  .stat:last-child { border-bottom: none; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
}
