body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(to bottom right, #f8fafc, #ffffff, #f8fafc);
  margin: 0;
  color: #1a1a1a;
}

.page-wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Background blur circles */
.background .blue-blur,
.background .red-blur {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.background .blue-blur {
  top: -100px;
  left: -100px;
  background: #3b82f6;
}

.background .red-blur {
  bottom: -100px;
  right: -100px;
  background: #ef4444;
}

/* Header */
.header {
  text-align: center;
  padding: 60px 20px 20px;
}

.logo {
  height: 80px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Main */
.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* Info card */
.info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 60px;
}

.info-card .tag {
  background: #eff6ff;
  color: #1d4ed8;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

.info-card h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-card .separator {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, white, #ef4444);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.info-card p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
}

.btn-main {
  background: linear-gradient(to right, #2563eb, #dc2626);
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
}

.btn-main:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #1e40af, #b91c1c);
}

/* Features */
.features h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.icon {
  font-size: 2rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 15px;
}

.icon.blue { background: linear-gradient(to bottom right, #3b82f6, #1e3a8a); }
.icon.red { background: linear-gradient(to bottom right, #dc2626, #7f1d1d); }

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card .link {
  color: #2563eb;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
}

.feature-card:hover .link {
  opacity: 1;
  transform: translateX(5px);
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  background: linear-gradient(to bottom right, #eff6ff, #fff1f2);
  border: 1px solid #f1f1f1;
  padding: 40px;
  border-radius: 16px;
  margin-top: 60px;
}

.cta-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.cta-link:hover {
  color: #dc2626;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  font-size: 0.9rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.blue { background: #2563eb; }
.dot.white { background: white; border: 2px solid #d1d5db; }
.dot.red { background: #dc2626; }
