/* ===== SHARED PAGE STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #333; background: #fff; padding-top: 72px; }
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a0e27 0%, #0a114b 40%, #0d1f5c 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.2), transparent);
  top: -100px; right: -100px;
  border-radius: 50%;
  filter: blur(80px);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,0,255,0.15), transparent);
  bottom: -50px; left: -50px;
  border-radius: 50%;
  filter: blur(80px);
}
.page-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.page-hero-badge {
  display: inline-block;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.page-hero-wave svg { width: 100%; height: 60px; }

/* Content Sections */
.content-section {
  padding: 80px 0;
}
.content-section.alt-bg {
  background: #f8faff;
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,255,136,0.15));
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a114b;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.text-gradient {
  background: linear-gradient(135deg, #00d4ff, #478ac9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0a114b;
  margin-bottom: 16px;
}
.two-col-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 16px;
}
.two-col-text strong { color: #0a114b; }
.two-col-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.two-col-image img {
  width: 100%;
  display: block;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.2);
}
.feature-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,255,136,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a114b;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 60px 40px;
  background: linear-gradient(135deg, #0a114b, #0d1f5c);
  text-align: center;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}
.cta-banner .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #00d4ff, #00a0cc);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,212,255,0.3);
}
.cta-banner .hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,212,255,0.5);
}

/* Image Contain */
.img-contain {
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Full Width Image Section */
.full-image-section {
  padding: 60px 0;
  text-align: center;
}
.full-image-section img {
  max-width: 100%;
  height: auto;
}

/* Contact Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0a114b;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.contact-info strong { color: #0a114b; }
.contact-details {
  margin-top: 24px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
}
.contact-item svg { flex-shrink: 0; }

/* Modern Footer */
.modern-footer {
  position: relative;
  background: #0a0e27;
  color: rgba(255,255,255,0.7);
}
.footer-wave { position: relative; top: -1px; line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; }
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { width: 160px; margin-bottom: 16px; }
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}
.footer-links a:hover { color: #00d4ff; }
.footer-contact-links li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-links svg { flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.footer-contact-links span { font-size: 14px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.footer-bottom strong { color: white; }
.footer-install-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00d4ff, #00a0cc);
  color: white;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,212,255,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
  .section-header h2 { font-size: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
