@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #7D3C98;
  --secondary-color: #5E1675;
  --accent-color: #AB47BC;
  --light-color: #F5EBF9;
  --dark-color: #2C0845;
  --gradient-primary: linear-gradient(135deg, #9B59B6 0%, #7D3C98 100%);
  --hover-color: #6C2E85;
  --background-color: #FDFAFF;
  --text-color: #2C3E50;
  --border-color: rgba(171, 71, 188, 0.22);
  --divider-color: rgba(125, 60, 152, 0.12);
  --shadow-color: rgba(125, 60, 152, 0.15);
  --highlight-color: #FFC145;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.75;
}

h1, h2, h3, h4 {
  font-family: var(--main-font);
  letter-spacing: 0.01em;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-color);
  box-shadow: 0 3px 24px rgba(125,60,152,0.35);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }

.navigation ul { list-style: none; display: flex; gap: 1.6rem; }
.navigation ul li a {
  color: #e2c5f0;
  text-decoration: none;
  font-family: var(--main-font);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.navigation ul li a:hover { color: var(--highlight-color); border-bottom-color: var(--highlight-color); }

.hamburger-toggle { display: none; }
.hamburger-label { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger-label span { display: block; width: 26px; height: 2px; background: #e2c5f0; transition: all 0.3s; border-radius: 2px; }
.hamburger-toggle:checked ~ .navigation { display: flex; flex-direction: column; }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(2) { opacity: 0; }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* CONTAINER */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* HERO */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)), url('./img/bg.jpg') no-repeat center center / cover;
  min-height: 80vh;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(171,71,188,0.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255,193,69,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 840px; padding: 2rem 1.5rem; }
.hero h1 {
  color: #ffffff;
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  line-height: 1.18;
  text-shadow: 0 3px 28px rgba(0,0,0,0.65);
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.hero p { color: #e2c5f0; font-size: clamp(1rem, 2.5vw, 1.25rem); max-width: 640px; margin: 0 auto 2rem; }
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
  color: #fff;
  font-family: var(--main-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1.4rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.95rem 2.5rem;
  border-radius: 50px;
  font-family: var(--main-font);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 22px rgba(125,60,152,0.5);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(125,60,152,0.6); }

/* SECTIONS */
section { padding-top: 10dvh; padding-bottom: 10dvh; }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--dark-color);
  margin-bottom: 0.7rem;
  font-weight: 800;
}
.section-title::after {
  content: '';
  display: block;
  width: 55px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
  margin-top: 0.6rem;
  border-radius: 2px;
}
.section-subtitle { color: #5c3570; font-size: 1.05rem; max-width: 580px; margin-bottom: 2.5rem; }

/* CONTENT 1 */
.content-grid-1 { display: flex; gap: 2.5rem; align-items: center; }
.content-grid-1 .img-col { flex: 0 0 40%; }
.content-grid-1 .text-col { flex: 1; }
.content-grid-1 img { width: 100%; border-radius: 24px; box-shadow: 10px 14px 48px var(--shadow-color); }

/* DIVIDER */
.section-divider { padding: 2rem 0; text-align: center; position: relative; }
.section-divider::before { content: ''; display: block; height: 1px; background: var(--border-color); position: absolute; top: 50%; left: 0; right: 0; }
.divider-text {
  position: relative;
  display: inline-block;
  background: var(--background-color);
  padding: 0.4rem 1.5rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* CTA */
.cta-parallax {
  background: linear-gradient(rgba(0,0,0,0.58),rgba(0,0,0,0.58)), url('./img/bg.jpg') no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.cta-parallax h2 { color: #fff; font-size: clamp(1.6rem,4vw,2.8rem); margin-bottom: 1rem; font-weight: 800; }
.cta-parallax p { color: #e2c5f0; max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* FEATURES */
.features-section { background: var(--light-color); }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 1rem; top: 0; bottom: 0; width: 3px; background: var(--gradient-primary); border-radius: 3px; }
.timeline-item {
  position: relative;
  margin-bottom: 1.8rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.6rem 1.6rem 1.6rem 2rem;
  box-shadow: 6px 6px 24px var(--shadow-color), -3px -3px 10px rgba(255,255,255,0.9);
  transition: transform 0.25s, box-shadow 0.25s;
}
.timeline-item:hover { transform: translateX(8px) translateY(-3px); box-shadow: 12px 12px 36px var(--shadow-color); }
.timeline-item::before { content: ''; position: absolute; left: -1.9rem; top: 1.6rem; width: 16px; height: 16px; border-radius: 50%; background: var(--highlight-color); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--highlight-color); }
.timeline-item .item-icon { color: var(--primary-color); font-size: 1.6rem; margin-bottom: 0.6rem; }
.timeline-item h3 { font-size: 1.1rem; color: var(--dark-color); margin-bottom: 0.4rem; font-weight: 700; }
.timeline-item p { font-size: 0.95rem; color: #5c3570; }

/* CONTENT 2 */
.content-grid-2 { display: flex; gap: 2.5rem; align-items: center; flex-direction: row-reverse; }
.content-grid-2 .img-col { flex: 0 0 50%; }
.content-grid-2 .text-col { flex: 1; }
.content-grid-2 img { width: 100%; border-radius: 24px; box-shadow: 10px 14px 48px var(--shadow-color); }

/* TESTIMONIALS */
.testimonials-section { background: var(--background-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 6px 6px 24px var(--shadow-color), -3px -3px 10px rgba(255,255,255,0.95);
  position: relative;
  transition: transform 0.2s;
}
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-card::before { content: '\201C'; position: absolute; top: -0.5rem; left: 1.2rem; font-size: 5rem; color: var(--accent-color); opacity: 0.15; font-family: Georgia, serif; line-height: 1; }
.testimonial-text { font-size: 0.95rem; color: #5c3570; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { font-family: var(--main-font); font-size: 0.85rem; color: var(--primary-color); font-weight: 600; }
.testimonial-stars { color: var(--highlight-color); margin-bottom: 0.8rem; font-size: 0.85rem; }

/* FAQ */
.faq-section { background: var(--light-color); }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 5px 5px 18px var(--shadow-color), -2px -2px 8px rgba(255,255,255,0.85);
  transition: box-shadow 0.3s, transform 0.2s;
}
.faq-item:hover { box-shadow: 10px 10px 32px var(--shadow-color); transform: translateY(-2px); }
.faq-item h3 { font-size: 1.05rem; color: var(--dark-color); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.7rem; font-weight: 700; }
.faq-item h3 i { color: var(--accent-color); }
.faq-item p { font-size: 0.95rem; color: #5c3570; }

/* FOOTER */
footer { background: var(--dark-color); padding: 2.5rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
footer .logo img { height: 36px; filter: brightness(0) invert(1); }
footer nav ul { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer nav ul li a { color: #c4a0d5; text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
footer nav ul li a:hover { color: var(--highlight-color); }
.footer-credit { text-align: center; color: #8a5a9a; font-size: 0.78rem; padding-top: 1.2rem; border-top: 1px solid rgba(171,71,188,0.2); margin-top: 1.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-credit a { color: var(--highlight-color); text-decoration: none; }

.styled-list { list-style: none; padding: 0; }
.styled-list li { padding: 0.5rem 0; padding-left: 1.8rem; position: relative; color: #5c3570; font-size: 0.97rem; }
.styled-list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--accent-color); }

@media (max-width: 768px) {
  .hamburger-label { display: flex; }
  .navigation { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark-color); padding: 1.2rem 2rem; border-top: 1px solid rgba(171,71,188,0.2); }
  .navigation ul { flex-direction: column; gap: 1rem; }
  header { flex-wrap: wrap; }
  .content-grid-1, .content-grid-2 { flex-direction: column; }
  .content-grid-1 .img-col, .content-grid-2 .img-col { flex: none; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  footer nav ul { flex-direction: column; gap: 0.7rem; }
}