* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  color: #0f172a;
  line-height: 1.6;
  background: #ffffff;
}

/* HERO */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, #0f766e, transparent 60%),
    radial-gradient(circle at bottom right, #1e40af, transparent 55%),
    #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.glass {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 60px;
  max-width: 820px;
  text-align: center;
  color: white;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.glass h1 {
  font-size: 3.6rem;
  margin-bottom: 18px;
}

.glass p {
  font-size: 1.15rem;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 13px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary {
  background: linear-gradient(135deg, #14b8a6, #22d3ee);
  color: #020617;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 90px 20px;
  max-width: 1150px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 22px;
}

.section-desc {
  max-width: 820px;
  margin: auto;
  text-align: center;
  font-size: 1.05rem;
  color: #475569;
}

.soft-bg {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 45px;
}

.card {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

.icon-circle {
  width: 56px;
  height: 56px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.card h3 {
  margin: 18px 0 10px;
  color: #0f766e;
}

/* TRUST */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 35px;
  text-align: center;
  font-weight: 500;
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact-form {
  max-width: 520px;
  margin: 45px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
}

.contact-form button {
  background: linear-gradient(135deg, #14b8a6, #22d3ee);
  color: #020617;
  padding: 15px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.contact-note {
  margin-top: 15px;
  color: #475569;
  font-size: 0.9rem;
}

/* FOOTER */
footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
}
