@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-solid-rounded/css/uicons-solid-rounded.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-solid-straight/css/uicons-solid-straight.css');

/* ---------- ROOT ---------- */

:root {
  --bg-dark: #0b0f1a;
  --bg-light: #f7f9fc;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --glass: rgba(255, 255, 255, 0.12);
  --border-glass: rgba(255, 255, 255, 0.25);
}

/* ---------- GLOBAL ---------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ---------- HERO ---------- */

.hero {
  min-height: 100vh;
  background: radial-gradient(circle at top right, #1e293b, #020617);
  color: white;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  /* display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0rem; */
}

.hero-text h1 {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-text span {
  color: var(--cta-bg);
}

.hero-text p {
  margin: 1.5rem 0 2.5rem;
  font-size: 1.2rem;
  max-width: 520px;
  color: #cbd5f5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */

.btn-primary {
  background: var(--cta-bg);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.btn-secondary {
  border: 2px solid var(--cta-bg);
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* ---------- HERO VISUAL ---------- */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card {
  width: 100%;
  min-width: 350px;
  max-width: 350px;
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );
  /* border: 1px solid var(--border-glass); */
  backdrop-filter: blur(14px);
  background: url("/images/pages/landing/landing-img.png");
  background-size: cover;
}


/* ---------- SERVICES ---------- */

.services {
  background: var(--bg-light);
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.service {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  transition: transform 0.35s ease;
}

.service:hover {
  transform: translateY(-10px);
}

.service i {
  font-size: 3rem;
  color: var(--cta-bg);
  margin-bottom: 1.2rem;
}

/* ---------- WHY ---------- */

.why {
  padding: 6rem 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.why-text ul {
  list-style: none;
  padding: 0;
}

.why-text li {
  margin-bottom: 1.2rem;
  padding-left: 1.6rem;
  position: relative;
}

.why-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--cta-bg);
}

.why-image img {
  width: 100%;
  min-width: 350px;
  max-width: 350px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

/* ---------- TESTIMONIALS ---------- */

.testimonials {
  background: #0f172a;
  color: white;
  padding: 6rem 0;
}

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

.testimonial {
  background: rgba(255,255,255,0.08);
  padding: 2.5rem;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #cbd5f5;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-text li {
    padding-left: 0;
  }

  .why-text li::before {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-actions {
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
  }
}
