body {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  color: #1e293b;
  background: #f8fafc;
}
h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  margin-bottom: 1rem;
}
section {
  padding: 4rem 2rem;
}

/* HERO */
.hero {
  background: #f9fafb; /* fundal curat */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 3rem 1rem;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(40px);
  animation: float 12s ease-in-out infinite;
}

.hero-shape.blue {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-shape.cyan {
  width: 400px;
  height: 400px;
  background: #06b6d4;
  bottom: -120px;
  right: -120px;
  animation-delay: 3s;
}

.hero-shape.purple {
  width: 250px;
  height: 250px;
  background: #9333ea;
  top: 40%;
  left: 70%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(15px); }
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-family: 'Anton', sans-serif;
  color: #111827;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.btn, .btn-secondary {
  position: relative;
  z-index: 1;
}
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  margin: 0.5rem;
  background: #2563eb;
  color: white;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: #1d4ed8;
} 
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a148c; /* elegant purple */
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
  border-radius: 20px;
}

.btn-secondary::after {
  content: "↓";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-secondary:hover {
  color: #6a1b9a; /* deeper purple */
  border-bottom: 1px solid #6a1b9a;
}

.btn-secondary:hover::after {
  transform: translateY(3px);
}

/* WHY */
.why {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.why img {
  max-width: 400px;
}

/* STEPS */
.steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.step {
  max-width: 250px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.step .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* CTA */
.cta {
  background: url("assets/wave-shape.svg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.6);
}
.cta-content {
  position: relative;
  z-index: 1;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  background: #0f172a;
  color: #94a3b8;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 10;
  transition: all 0.3s ease;
}

.site-header .logo {
  max-height: 50px;
  width: auto;
  transition: max-height 0.3s ease;
}

.site-header.shrink {
  padding: 0.3rem 2rem;
  background: rgba(255,255,255,0.95);
}

.site-header.shrink .logo {
  max-height: 35px;
}
.logo-hero {
  max-height: 200px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}