:root {
  --lavender:   #e8dcf5;
  --lavender2:  #d8c8ef;
  --purple:     #4a1878;
  --purple2:    #3d1265;
  --purple3:    #2e0d50;
  --accent:     #7c3aed;
  --teal:       #22d3ee;
  --teal-dark:  #0891b2;
  --text-dark:  #2d1052;
  --text-light: #ede0ff;
  --muted-l:    #8b6aaa;
  --muted-d:    #c4a8e8;
  --border-l:   rgba(74,24,120,0.12);
  --border-d:   rgba(255,255,255,0.08);
  --header-h:   68px;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow-l:   0 4px 24px rgba(74,24,120,.14);
  --shadow-d:   0 8px 40px rgba(0,0,0,.45);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--lavender);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(232,220,245,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-l);
  z-index: 900;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
  font-family: system-ui, sans-serif;
}

.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b5de5, #4a1878);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav-links a,
.nav-links button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.75;
  border-radius: 20px;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: inherit;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a.active {
  opacity: 1;
  background: rgba(74,24,120,0.08);
}

.nav-links a.active { font-weight: 600; opacity: 1; }

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(232,220,245,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-l);
  min-width: 210px;
  padding: 0.5rem;
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.8;
  border-radius: 8px;
  transition: background 0.15s, opacity 0.15s;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(74,24,120,0.1);
  opacity: 1;
}

.nav-dropdown-arrow {
  width: 13px; height: 13px;
  transition: transform 0.2s;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-cta { flex-shrink: 0; }

.burger {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border-radius: 50%;
}

.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(232,220,245,0.97);
  backdrop-filter: blur(16px);
  z-index: 800;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  border-top: 1px solid var(--border-l);
}

.mobile-overlay.open { display: block; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: background 0.15s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(74,24,120,0.1);
}

.mobile-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted-l);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem 0.25rem;
}

.mobile-nav-group { margin-left: 0.5rem; }

.mobile-nav-divider {
  height: 1px;
  background: var(--border-l);
  margin: 0.5rem 0;
}

.mobile-cta-wrap {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

main { padding-top: var(--header-h); }

.btn-primary,
.btn-outline,
.btn-dark,
.btn-teal,
.btn-ghost-d,
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.75rem;
  border-radius: 30px;
  border: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, background 0.2s, border-color 0.2s;
  min-height: 44px;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #5b21b6, #3d1265);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(91,33,182,.35);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--purple);
}

.btn-outline:hover {
  background: rgba(74,24,120,0.08);
  color: var(--text-dark);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--purple3);
  color: #ffffff;
  border-color: var(--purple3);
}

.btn-dark:hover {
  background: var(--purple2);
  border-color: var(--purple2);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--teal);
  color: #0c1a2e;
  border-color: var(--teal);
  font-weight: 700;
}

.btn-teal:hover {
  background: #06b6d4;
  border-color: #06b6d4;
  color: #0c1a2e;
  transform: translateY(-2px);
}

.btn-ghost-d {
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  border-color: rgba(255,255,255,0.18);
}

.btn-ghost-d:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.btn-pill {
  background: linear-gradient(135deg, #6d28d9, #4a1878);
  color: #fff;
  border-color: transparent;
}

.btn-pill:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}

.hero {
  background: linear-gradient(180deg, #f0e8ff 0%, #e0cff5 60%, #c9b0e8 100%);
  padding: calc(var(--header-h) + 3.5rem) 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  font-family: system-ui, sans-serif;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  line-height: 1.15;
}

.hero-title span { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted-l);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-family: system-ui, sans-serif;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-img-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 60px rgba(74,24,120,.2), 0 20px 60px rgba(0,0,0,.25);
  position: relative;
  z-index: 2;
}

.hero-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.wave-divider {
  display: block;
  width: 100%;
  height: 56px;
  background: var(--purple3);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,35 C200,60 400,10 600,35 C800,60 1000,10 1200,35 L1200,56 L0,56 Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,35 C200,60 400,10 600,35 C800,60 1000,10 1200,35 L1200,56 L0,56 Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
}

.dark-body { background: var(--purple3); color: var(--text-light); }

.section-dark { padding: 4.5rem 0; }

.section-eyebrow-d {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  font-family: system-ui, sans-serif;
}

.section-title-d {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-lead-d {
  font-size: 1rem;
  color: var(--muted-d);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-family: system-ui, sans-serif;
}

.features-wrap { max-width: 900px; margin: 0 auto; }

.feat-row {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 4rem 1.5rem;
  border-bottom: 1px solid var(--border-d);
}

.feat-row:last-child { border-bottom: none; }
.feat-row.rev { flex-direction: row-reverse; }

.feat-img-side {
  flex-shrink: 0;
  width: 240px;
  position: relative;
}

.feat-img-stack {
  position: relative;
  height: 180px;
}

.feat-img-back {
  width: 175px;
  height: 130px;
  position: absolute;
  top: 0; left: 0;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.7;
  box-shadow: var(--shadow-d);
  z-index: 1;
}

.feat-img-front {
  width: 175px;
  height: 130px;
  position: absolute;
  bottom: 0; right: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-d);
  z-index: 2;
}

.feat-img-back img,
.feat-img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-text-d { flex: 1; }

.feat-text-d h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-light);
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}

.feat-text-d p {
  color: var(--muted-d);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.85rem;
  font-family: system-ui, sans-serif;
}

.feat-text-d .feat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  font-family: system-ui, sans-serif;
  transition: gap 0.2s;
}

.feat-text-d .feat-link:hover { gap: 0.65rem; }

.feat-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.feat-check-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--muted-d);
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}

.feat-check-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.feat-check-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-section-d { padding: 4.5rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.service-card-d {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-d);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.service-card-d:hover {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-3px);
}

.service-card-icon-d {
  width: 44px; height: 44px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal);
}

.service-card-icon-d svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-d h3 {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-card-d p {
  font-size: 0.85rem;
  color: var(--muted-d);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  font-family: system-ui, sans-serif;
}

.service-card-link-d {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  font-family: system-ui, sans-serif;
  transition: gap 0.2s;
}

.service-card-link-d:hover { gap: 0.6rem; }

.info-strip-d {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  padding: 2.5rem 0;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.info-strip-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: Georgia, serif;
}

.info-strip-label {
  font-size: 0.82rem;
  color: var(--muted-d);
  font-family: system-ui, sans-serif;
}

.cta-band-d {
  background: var(--purple2);
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  padding: 4rem 0;
  text-align: center;
}

.cta-band-d h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.cta-band-d p {
  color: var(--muted-d);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-family: system-ui, sans-serif;
}

.cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-section-d { padding: 4.5rem 0; }

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.social-card-d {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-d);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-card-d:hover {
  background: rgba(124,58,237,0.18);
  transform: translateY(-2px);
}

.social-card-icon-d {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.social-card-icon-d svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card-text h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.social-card-text p {
  font-size: 0.85rem;
  color: var(--muted-d);
  line-height: 1.55;
  font-family: system-ui, sans-serif;
}

.contact-section-d { padding: 4.5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-d h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-info-d p {
  color: var(--muted-d);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-family: system-ui, sans-serif;
  font-size: 0.9375rem;
}

.contact-detail-d {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-d);
  color: var(--muted-d);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: system-ui, sans-serif;
  transition: color 0.2s;
}

.contact-detail-d:hover { color: var(--teal); }

.contact-detail-d svg {
  width: 17px; height: 17px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.location-box-d {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(34,211,238,.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}

.location-box-label-d {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.35rem;
  font-family: system-ui, sans-serif;
}

.location-box-d p {
  font-size: 0.875rem;
  color: var(--muted-d);
  margin: 0;
  font-family: system-ui, sans-serif;
}

.contact-form-wrap-d {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-d);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-card-title-d {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}

.form-row { margin-bottom: 1rem; }

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-d);
  margin-bottom: 0.4rem;
  font-family: system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: system-ui, sans-serif;
  color: var(--text-light);
  background: rgba(255,255,255,0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(124,58,237,0.6);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #5b21b6, #3d1265);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  min-height: 48px;
  box-shadow: 0 6px 20px rgba(91,33,182,.4);
  letter-spacing: 0.02em;
}

.form-submit-d:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.form-note-d {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
  text-align: center;
  font-family: system-ui, sans-serif;
}

.form-honey { display: none !important; }

.msg-ok {
  background: rgba(34,197,94,0.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: system-ui, sans-serif;
}

.msg-err {
  background: rgba(239,68,68,0.12);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: system-ui, sans-serif;
}

.page-header {
  background: linear-gradient(180deg, #f0e8ff 0%, #dac8f0 100%);
  padding: 3.5rem 0 3rem;
}

.page-header-inner { max-width: 740px; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted-l);
  margin-bottom: 1.1rem;
  font-family: system-ui, sans-serif;
}

.page-breadcrumb a { color: var(--muted-l); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--text-dark); }

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.page-header h1 span { color: var(--accent); }

.page-lead {
  font-size: 1.05rem;
  color: var(--muted-l);
  line-height: 1.7;
  max-width: 620px;
  font-family: system-ui, sans-serif;
}

.article-section-wrap {
  background: var(--purple3);
  color: var(--text-light);
  padding: 4.5rem 0;
}

.article-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.article-wrap h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--text-light);
  margin: 2.5rem 0 0.9rem;
  letter-spacing: -0.015em;
}

.article-wrap h2:first-child { margin-top: 0; }

.article-wrap h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 1.75rem 0 0.55rem;
}

.article-wrap p {
  color: var(--muted-d);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-family: system-ui, sans-serif;
  font-size: 0.9375rem;
}

.article-wrap ul {
  margin: 0.75rem 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-wrap ul li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted-d);
  line-height: 1.65;
  font-family: system-ui, sans-serif;
}

.article-wrap ul li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 0.55em;
}

.article-wrap ul li strong { color: var(--text-light); }

.article-highlight-d {
  background: rgba(124,58,237,0.18);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.article-highlight-d p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9375rem;
}

.article-highlight-d a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-features-d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 2rem 0;
}

.feat-item-d {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-d);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.feat-icon-d { font-size: 1.7rem; margin-bottom: 0.65rem; }

.feat-title-d {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.45rem;
  font-family: system-ui, sans-serif;
}

.feat-text-p {
  font-size: 0.82rem;
  color: var(--muted-d);
  line-height: 1.6;
  font-family: system-ui, sans-serif;
}

.booking-note-d {
  background: var(--purple2);
  border: 1px solid var(--border-d);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.booking-note-icon { font-size: 1.7rem; flex-shrink: 0; }

.booking-note-text {
  font-size: 0.9375rem;
  color: var(--muted-d);
  line-height: 1.7;
  font-family: system-ui, sans-serif;
}

.booking-note-text a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.article-cta-link-d {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: center;
}

.wiki-box-d {
  background: rgba(34,211,238,0.07);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin: 2rem 0;
}

.wiki-box-d p {
  font-size: 0.9rem;
  color: var(--muted-d);
  margin: 0;
  line-height: 1.7;
  font-family: system-ui, sans-serif;
}

.wiki-box-d a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-teal {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-teal:hover { color: #06b6d4; }

.faq-wrap { max-width: 800px; margin: 0 auto; padding-top: 1.5rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-d); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  text-align: left;
  font-family: Georgia, serif;
  gap: 1rem;
}

.faq-q-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-q-icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted-d);
  line-height: 1.75;
  font-family: system-ui, sans-serif;
}

footer {
  background: var(--purple2);
  border-top: 1px solid var(--border-d);
  padding: 4rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-family: system-ui, sans-serif;
}

.footer-logo-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b5de5, #4a1878);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.65rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.03em;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-family: system-ui, sans-serif;
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  font-family: system-ui, sans-serif;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-family: system-ui, sans-serif;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--text-light); }

.footer-bottom {
  border-top: 1px solid var(--border-d);
  padding: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-family: system-ui, sans-serif;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  font-family: system-ui, sans-serif;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover { color: var(--text-light); }

.r {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.r.in { opacity: 1; transform: none; }
.rd2 { transition-delay: 0.12s; }
.rd3 { transition-delay: 0.22s; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-row, .feat-row.rev { flex-direction: column; gap: 2rem; padding: 3rem 1.5rem; }
  .feat-img-side { width: 100%; }
  .feat-img-stack { height: 160px; max-width: 340px; margin: 0 auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-features-d { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-features-d { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .article-cta { flex-direction: column; }
  .hero-img-wrap img { height: 220px; }
}
