:root {
  --bg: #f8f5ff;
  --primary: #6d28d9;
  --primary-dark: #5b21b6;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #ffffff;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f4edff;
  border-bottom: 1px solid #ede9fe;
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; color: var(--primary-dark); }
.brand img { width: 36px; height: 36px; border-radius: 999px; }
.nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.nav a { font-weight: 600; color: #4b5563; }
.nav a:hover, .nav a.active { color: var(--primary-dark); }

.hero {
  background: linear-gradient(135deg, #f3e8ff 0%, #e0e7ff 100%);
  padding: 5rem 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .7rem; color: #4c1d95; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 0 0 .8rem; color: #4c1d95; }
.lead { color: var(--muted); font-size: 1.1rem; line-height: 1.6; }

.hero-card,.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: 0 12px 30px rgba(109, 40, 217, .08);
}
.hero-card {
  min-height: 240px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 20px 35px rgba(109, 40, 217, .13); }

.btn {
  display: inline-block;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  transition: .2s ease;
}
.btn-primary { color: #fff; background: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { border: 1px solid var(--primary); color: var(--primary); }
.btn-secondary:hover { background: #f5f3ff; }

.section { padding: 3.8rem 0; }
.grid-3 { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.grid-4 { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.card h3 { margin-top: 0; color: #5b21b6; }
.card .price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin: .4rem 0; }
.card ul { padding-left: 1rem; color: #4b5563; line-height: 1.65; }
.card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(109, 40, 217, .12);
  border-color: #ddd6fe;
}
.muted { color: var(--muted); }

.faq-item {
  margin-bottom: .8rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #4c1d95;
  cursor: pointer;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-item.open .faq-a { max-height: 180px; }
.faq-a p { margin: 0; padding: 0 1.1rem 1rem; }

.footer {
  background: #111827;
  color: #9ca3af;
  padding: 1.5rem 0;
  margin-top: 2rem;
  text-align: center;
}

.tools {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .7rem;
  font: inherit;
}
label { font-weight: 600; display: block; margin: .65rem 0 .35rem; }

.hero-slider-title { margin: .2rem 0 .3rem; color: #4c1d95; }
.hero-slider-text { margin: 0; color: #4b5563; }
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

.locations-hero {
  background: linear-gradient(145deg, #4c1d95, #6d28d9);
  color: #fff;
  padding: 4rem 0 3.5rem;
}
.locations-hero h1, .locations-hero h2 { color: #fff; }
.locations-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.location-flag {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: #f5f3ff;
  overflow: hidden;
}
.location-flag img { width: 100%; height: 100%; object-fit: cover; }
.legal-content h2 { margin-top: 1.2rem; }
.legal-content p, .legal-content li { line-height: 1.65; color: #374151; }

@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .tools, .locations-grid { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; padding: .6rem 0; }
  .nav { display: flex; width: 100%; gap: .6rem; font-size: .95rem; flex-wrap: wrap; }
}
