:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --accent: #06b6d4;
  --dark: #0f172a;
  --gray-900: #0f172a;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --light: #f8fafc;
  --white: #fff;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, .14);
  --radius: 14px;
  --transition: all .25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-700); line-height: 1.7; background: #fff; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section-soft { background: var(--light); }
.section-title { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 800; color: var(--gray-900); text-align: center; margin-bottom: 8px; }
.section-subtitle { text-align: center; color: var(--gray-500); margin-bottom: 42px; }
.section-title::after { content: ''; display: block; width: 70px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); margin: 12px auto 0; border-radius: 999px; }
.lead { color: var(--gray-500); margin-bottom: 12px; }
.text-primary { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
}
.btn-primary { background: linear-gradient(90deg, var(--primary), #8b5cf6); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { color: #fff; border-color: rgba(255, 255, 255, .6); background: transparent; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-soft { border-color: var(--gray-300); color: var(--primary-dark); background: #fff; }
.btn.full { width: 100%; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, .2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 14px; }
.navbar-brand img { height: 100px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-700);
  font-weight: 700;
}
.nav-links a:hover, .nav-links a.active { background: #ede9fe; color: var(--primary-dark); }
.admin-link {
  border: 1px solid #c4b5fd;
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .86rem;
  font-weight: 700;
}
.hamburger { display: none; background: none; border: 0; cursor: pointer; }
.hamburger span { display: block; width: 23px; height: 2px; background: var(--gray-900); margin: 4px 0; }

.hero { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; background: var(--dark); }
.hero-slider, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(135deg, rgba(15, 23, 42, .82), rgba(91, 33, 182, .55)); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 16px; max-width: 860px; }
.kicker { display: inline-block; margin-bottom: 16px; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .34); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.hero-content h1 { font-family: var(--font-heading); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.06; margin-bottom: 8px; font-weight: 800; }
.hero-content p { font-size: 1.1rem; opacity: .92; margin-bottom: 24px; }
.hero-content .btn { margin: 6px; }
.hero-dots { position: absolute; z-index: 3; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .35); cursor: pointer; }
.hero-dots span.active { background: #fff; transform: scale(1.22); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.service-card .icon i { color: #fff; font-size: 24px; }
.service-card h3 { font-family: var(--font-heading); color: var(--gray-900); font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { color: var(--gray-500); font-size: .95rem; line-height: 1.65; }
.learn-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 700; }

.about-section { background: #f8fafc; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: start; }
.about-text h2 { font-family: var(--font-heading); color: var(--gray-900); margin-bottom: 12px; font-size: 2rem; }
.rich-content p { margin: 0 0 12px; }
.rich-content ul, .rich-content ol { margin: 10px 0 12px 18px; }
.rich-content li { margin: 6px 0; }
.rich-content a { text-decoration: underline; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 20px; text-align: center; box-shadow: var(--shadow); }
.stat-number { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); font-weight: 800; }
.stat-label { color: var(--gray-500); font-size: .86rem; margin-top: 4px; }

.cta-section { background: linear-gradient(120deg, #5b21b6, #7c3aed); color: #fff; text-align: center; padding: 68px 0; }
.cta-section h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 8px; }
.cta-section p { opacity: .92; margin-bottom: 20px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info-card { display: flex; gap: 14px; margin-bottom: 18px; }
.ci-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: #ede9fe; color: var(--primary); flex-shrink: 0; }
.contact-info-card h4 { font-family: var(--font-heading); color: var(--gray-900); margin-bottom: 2px; }
.contact-info-card p { color: var(--gray-500); }
.contact-form {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font: inherit;
  color: var(--gray-900);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.alert { margin-bottom: 14px; border-radius: 10px; padding: 10px 12px; border: 1px solid; }
.alert-success { background: #dcfce7; border-color: #86efac; color: #166534; }
.alert-error { background: #fee2e2; border-color: #fecaca; color: #991b1b; }

.footer { background: #0b1120; color: rgba(226, 232, 240, .8); padding: 54px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.footer-logo { height: 42px; margin-bottom: 12px; filter: brightness(10); }
.footer h4 { color: #fff; margin-bottom: 10px; font-family: var(--font-heading); }
.footer-links a { display: block; color: #cbd5e1; padding: 4px 0; font-size: .95rem; }
.footer-links a:hover { color: #c4b5fd; }
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(148, 163, 184, .2);
  color: #fff;
}
.social-links a:hover { background: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(148, 163, 184, .25); text-align: center; padding-top: 16px; font-size: .86rem; }

.page-hero {
  margin-top: 74px;
  padding: 78px 0 68px;
  background: radial-gradient(circle at 20% 20%, #8b5cf6, #312e81);
  color: #fff;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-family: var(--font-heading); margin-bottom: 8px; }
.page-content { padding: 70px 0; }
.page-content .narrow, .narrow { max-width: 840px; }
.page-content p { margin-bottom: 14px; }
.page-content ul { margin-top: 12px; }
.page-content li { position: relative; padding-left: 24px; margin: 8px 0; }
.page-content li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 1px; color: var(--primary); font-size: .8rem; }
.service-icon-wrap { text-align: center; margin-bottom: 24px; }
.service-icon-wrap .icon { width: 80px; height: 80px; border-radius: 18px; background: linear-gradient(135deg, var(--primary), var(--accent)); margin: 0 auto; display: grid; place-items: center; }
.service-icon-wrap i { font-size: 30px; color: #fff; }
.cta-inline { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.price-card { border: 1px solid var(--gray-200); border-radius: 14px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.price-card.featured { border-color: #a78bfa; box-shadow: var(--shadow-lg); }
.price-card-header { background: #0f172a; color: #fff; padding: 18px; text-align: center; position: relative; }
.price-card.featured .price-card-header { background: linear-gradient(135deg, #6d28d9, #7c3aed); }
.price-card-header h3 { text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; opacity: .95; margin-bottom: 6px; }
.price-card-header .price { font-size: 1.48rem; font-family: var(--font-heading); font-weight: 800; }
.price-card-header .period { font-size: .85rem; opacity: .85; font-weight: 500; }
.badge { position: absolute; top: 10px; right: 10px; background: #22c55e; color: #fff; font-size: .72rem; padding: 3px 8px; border-radius: 999px; font-weight: 700; }
.price-card-body { padding: 16px; }
.price-card-body li { padding: 8px 0; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); font-size: .92rem; }
.price-card-body li:last-child { border-bottom: 0; }
.price-card-footer { padding: 0 16px 18px; }

@media (max-width: 960px) {
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 14px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .admin-link { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
}
