@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --accent-color: #8b5cf6;
  --accent-dark: #6d28d9;
  --text-main: #334155;
  --text-light: #581c87; /* Purple headings */
  --text-header: #ffffff;
  --nav-bg: #6d28d9; /* Purple nav */
  --glass-bg: #ffffff;
  --glass-border: #e2e8f0;
  --glass-glow: rgba(139, 92, 246, 0.2);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5 {
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--text-light), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

header {
  padding: 1.5rem 0;
  background: var(--nav-bg);
  border-bottom: 2px solid var(--accent-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-header);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: #e0e7ff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-header);
}

.nav-links a:hover {
  color: #e0e7ff;
}

main {
  flex-grow: 1;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  filter: blur(120px);
  opacity: 0.1;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero p.lead {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #ffffff;
  border: 1px solid var(--accent-color);
  color: var(--accent-dark);
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn:hover {
  background: #f8fafc;
  color: var(--accent-dark);
  box-shadow: 0 4px 12px var(--glass-glow);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--glass-glow);
}

/* Glass Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--glass-glow);
  border-color: var(--accent-color);
}

.glass-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glass-card ul {
  list-style: none;
}

.glass-card ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.glass-card ul li::before {
  content: '✓';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Reviews Section */
.reviews .glass-card {
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-author {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  border-top: 1px solid var(--glass-border);
}

/* Q&A Section */
.accordion {
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-light);
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #f8fafc;
}

.accordion-content {
  padding: 0 1.5rem;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
}

.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
  padding-bottom: 1.5rem;
}

.accordion-inner {
  overflow: hidden;
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Images & Media */
.responsive-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 2rem 0;
  border: 1px solid var(--glass-border);
}

iframe {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border: 1px solid var(--glass-border);
}

/* Footer Section */
footer {
  background: var(--nav-bg);
  color: var(--text-header);
  border-top: none;
  padding: 3rem 0 1rem 0;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--text-header);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #e0e7ff;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  .hero {
    padding: 3rem 0;
  }
  .nav-links {
    gap: 1rem;
    font-size: 0.95rem;
  }
}
