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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #161616);
  color: #f2f2f2;
  line-height: 1.6;
}

header {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.9)),
    url("https://images.unsplash.com/photo-1520975922215-1a1d66c95f49?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 15px;
}

header p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #ddd;
}

.cta {
  margin-top: 30px;
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(90deg, #ff2e63, #ff7a18);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,.5);
}

section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 30px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 18px;
  transition: transform .2s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

.card p {
  color: #ccc;
  font-size: .95rem;
}

.disclosure {
  margin-top: 50px;
  background: #111;
  border-left: 4px solid #ff2e63;
  padding: 20px;
  font-size: .85rem;
  color: #bbb;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: .8rem;
  color: #777;
  background: #0b0b0b;
}