:root {
  --bg: #f7f3ff;
  --surface: #ffffff;
  --surface-2: #f4ebff;
  --primary: #7c2d12;
  --primary-deep: #4c1d95;
  --accent: #ff7f50;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5d9ff;
  --shadow: 0 18px 45px rgba(13, 8, 30, 0.15);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: relative;
  background: linear-gradient(120deg, rgba(0,0,0,0.9), rgba(0,0,0,0.35)), url("../images/header-bg.webp") center/cover no-repeat;
  color: #fff;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(76,29,149,0.72), rgba(15,23,42,0.2));
  pointer-events: none;
}
.header-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.logo .logo-top { color: #f8b4ff; font-size: 1.1rem; }
.logo .logo-bottom { color: #fff; font-size: 1.4rem; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ec4899);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: rgba(255,255,255,0.95);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
}
.nav-list a:hover,
.nav-list a.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.hamburger {
  display: none;
  border: 0;
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

.page-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #111827;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,24,39,0.92), rgba(17,24,39,0.2));
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 24px;
}
.hero-card {
  max-width: 620px;
  background: rgba(255,255,255,0.95);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.hero-card h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--primary-deep);
}
.hero-card p { margin: 0 0 16px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.hero-actions .primary { background: var(--primary); color: #fff; }
.hero-actions .secondary { background: #e0f2fe; color: var(--primary-deep); }

.tag-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.tag-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.tag-list a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--primary-deep);
  font-size: 0.95rem;
  font-weight: 600;
}
.tag-list a:hover { background: var(--accent); color: #fff; }

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.card h2, .card h3 { margin-top: 0; color: var(--primary-deep); }
.card p, .card li { color: var(--muted); }

.contact-list { display: grid; gap: 12px; }
.contact-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--surface-2);
}
.contact-item strong { color: var(--primary-deep); }

.form-grid { display: grid; gap: 14px; }
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.form-grid button {
  border: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.info-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #fff, var(--surface-2));
}
.info-box h3 { margin-bottom: 8px; font-size: 1.05rem; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, #fff, var(--surface-2));
}
.price-card .price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin: 8px 0;
}
.price-card ul { padding-left: 18px; color: var(--muted); }

.price-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}
.price-table th,
.price-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.price-table th {
  background: var(--primary-deep);
  color: #fff;
}
.price-table tr:nth-child(even) {
  background: #f8f5ff;
}
.price-table .price-tag {
  font-weight: 700;
  color: var(--primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.step {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface-2);
}
.step strong { color: var(--primary-deep); }

.site-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 28px 24px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: #f9fafb; }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .info-grid, .price-grid, .steps { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; }
  .header-actions { margin-left: 0; }
  .nav { width: 100%; }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: rgba(17,24,39,0.96);
    margin-top: 10px;
  }
  .nav-list.open { display: flex; }
  .hamburger { display: inline-block; }
  .hero-content { padding: 24px 16px; }
  .hero-card { padding: 22px; }
  .page-shell { padding: 24px 16px 36px; }
  .card { padding: 20px; }
  .tag-inner { padding: 14px 16px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 14px 16px; }
  .call-btn { padding: 8px 12px; font-size: 0.9rem; }
  .hero-card h1 { font-size: 1.6rem; }
  .hero-actions a { width: 100%; }
  .site-footer { padding: 24px 16px 28px; }
}

body.menu-open { overflow: hidden; }
