/* ============================================
   VARIANT: MODERN
   Clean, minimal, gradient accents, glassmorphism
   ============================================ */

/* Typography — lighter weight, more spacing */
body {
  letter-spacing: 0.01em;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

/* Hero — gradient overlay instead of solid dark */
.hero {
  min-height: 80vh;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
}

.hero h1 {
  font-weight: 700;
}

/* Service cards — glassmorphism effect */
.service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Rounded buttons */
.btn {
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn-outline {
  border-width: 1.5px;
}

/* Section spacing — more breathing room */
.section {
  padding: 5rem 0;
}

.section-title {
  font-weight: 600;
  font-size: 2.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About section image — rounded corners */
.about-image img {
  border-radius: 16px;
}

/* Stats — pill style */
.stat {
  background: var(--color-bg-alt);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

/* Testimonial cards — subtle gradient border */
.testimonial-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

/* CTA section — gradient background */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 0;
}

/* Contact CTA cards — modern style */
.cta-card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Footer — cleaner */
.site-footer {
  background: #0f172a;
}

/* Nav — transparent background with blur */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Cookie banner — rounded */
.cookie-banner {
  border-radius: 12px 12px 0 0;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .section {
    padding: 3rem 0;
  }
}
