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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8fbff;
  color: #1e293b;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

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

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5dade2, #2563eb, #1d4ed8);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

.brand-text h2 {
  font-size: 21px;
  color: #0f172a;
  margin-bottom: 2px;
}

.brand-text p {
  font-size: 12px;
  color: #64748b;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #2563eb;
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 32%),
    linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f0f9ff 100%);
}

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

.badge {
  display: inline-block;
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #dbeafe;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 18px;
  color: #475569;
  max-width: 680px;
}

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

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.20);
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
  border-color: #93c5fd;
  color: #2563eb;
}

.hero-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 22px;
}

.panel-header small {
  color: #64748b;
  font-size: 13px;
}

.panel-header h3 {
  font-size: 24px;
  color: #0f172a;
  margin-top: 3px;
}

.panel-tag {
  background: #eff6ff;
  color: #2563eb;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 18px;
}

.stat-card p {
  font-size: 14px;
  color: #64748b;
}

.stat-card h4 {
  font-size: 28px;
  color: #0f172a;
  margin: 8px 0 12px;
}

.progress {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  border-radius: 999px;
}

.panel-highlight {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #ffffff;
}

.panel-highlight p {
  font-size: 13px;
  color: #dbeafe;
  margin-bottom: 6px;
}

.panel-highlight h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.panel-highlight span {
  font-size: 14px;
  color: #e0f2fe;
}

.panel-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.panel-item {
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 16px;
}

.panel-item strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
}

.panel-item span {
  color: #64748b;
  font-size: 14px;
}

.section {
  padding: 85px 0;
}

.section-white {
  background: #ffffff;
}

.section-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.section h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 35px;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 26px;
  transition: 0.3s;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.coming-soon {
  border-radius: 30px;
  padding: 50px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}

.coming-soon span {
  font-size: 13px;
  letter-spacing: 2px;
  color: #bfdbfe;
  display: inline-block;
  margin-bottom: 12px;
}

.coming-soon h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.coming-soon p {
  color: #dbeafe;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  background: #ffffff;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

.full-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.site-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-inner p {
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-grid,
  .contact-grid,
  .services-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .section h2 {
    font-size: 30px;
  }

  .coming-soon,
  .contact-card,
  .hero-card {
    padding: 24px;
  }

  .brand-text h2 {
    font-size: 18px;
  }

  .brand-text p {
    font-size: 11px;
  }
}