:root {
  color-scheme: dark;
  --bg: #060712;
  --surface: #0f172a;
  --surface-strong: #111827;
  --surface-soft: rgba(15, 23, 42, 0.92);
  --text: #f8fafc;
  --text-muted: #cad4e0;
  --accent: #8b5cf6;
  --accent-strong: #7c3aed;
  --border: rgba(148, 163, 184, 0.12);
  --shadow: 0 26px 80px rgba(15, 23, 42, 0.28);
  --radius: 28px;
}

html[data-theme='light'] {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-strong: #f1f5f9;
  --surface-soft: rgba(255, 255, 255, 0.92);
  --text: #0f172a;
  --text-muted: #475569;
  --accent: #6366f1;
  --accent-strong: #4338ca;
  --border: rgba(148, 163, 184, 0.20);
  --shadow: 0 24px 70px rgba(148, 163, 184, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, rgba(139, 92, 246, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

body {
  line-height: 1.85;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem clamp(1.75rem, 3vw, 5.5rem);
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(18px);
  background: rgba(15, 23, 42, 0.90);
  border-bottom: 1px solid var(--border);
}

.site-brand a {
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: flex-end;
}

.nav-bar a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-bar a.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.22);
}

.nav-bar a:hover,
.nav-bar a:focus-visible {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.nav-bar a.nav-cta:hover,
.nav-bar a.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.content-box {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.form-status {
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.form-status.success {
  color: #34d399;
}

.form-status.error {
  color: #f87171;
}

.form-status.warning {
  color: #fbbf24;
}

.section-two-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: start;
}

@media (max-width: 960px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-two-col {
    grid-template-columns: 1fr;
  }
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

form {
  display: grid;
  gap: 1rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.content-box {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.18);
}

.button {
  padding: 1rem 1.75rem;
}

@media (max-width: 900px) {
  .content-box {
    padding: 1.5rem;
  }

  input,
  textarea,
  select {
    padding: 0.9rem 1rem;
  }
}

button {
  cursor: pointer;
}

html[data-theme='light'] .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.18);
}

html[data-theme='light'] .hero-card,
html[data-theme='light'] .accent-panel,
html[data-theme='light'] .feature-card,
html[data-theme='light'] .stat-card,
html[data-theme='light'] .package-card,
html[data-theme='light'] .info-box,
html[data-theme='light'] .contact-form {
  background: var(--surface-strong);
  border-color: var(--border);
}

html[data-theme='light'] .hero-visual::before {
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent 42%);
}

html[data-theme='light'] .hero-stat,
html[data-theme='light'] .hero-card-head,
html[data-theme='light'] .hero-card ul li,
html[data-theme='light'] .hero-pill-list--hero li,
html[data-theme='light'] .hero-illustration-wrap,
html[data-theme='light'] .footer,
html[data-theme='light'] .theme-toggle,
html[data-theme='light'] .theme-toggle button {
  background: var(--surface);
  border-color: var(--border);
}

html[data-theme='light'] .hero-card {
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

html[data-theme='light'] .hero-card-head h2,
html[data-theme='light'] .hero-card p,
html[data-theme='light'] .hero-card li {
  color: #334155;
}

html[data-theme='light'] .hero-card ul li {
  background: rgba(67, 56, 202, 0.06);
  border-color: rgba(67, 56, 202, 0.10);
}

html[data-theme='light'] .hero-stat {
  background: rgba(67, 56, 202, 0.08);
  border-color: rgba(67, 56, 202, 0.18);
}

html[data-theme='light'] .hero-visual::before {
  background: radial-gradient(circle at top right, rgba(67, 56, 202, 0.10), transparent 42%);
}

html[data-theme='light'] .section-stats {
  background: var(--surface-strong);
}

html[data-theme='light'] .section-stats .stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 245, 249, 0.96));
  border-color: rgba(148, 163, 184, 0.18);
}

html[data-theme='light'] .section-stats .eyebrow {
  color: var(--accent-strong);
}

html[data-theme='light'] .section-stats h2,
html[data-theme='light'] .section-stats .stat-card h3,
html[data-theme='light'] .section-stats .stat-card p {
  color: #0f172a;
}

html[data-theme='light'] .button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.35);
}

html[data-theme='light'] .nav-bar a:hover,
html[data-theme='light'] .nav-bar a:focus-visible {
  color: var(--accent-strong);
  background: rgba(67, 56, 202, 0.10);
}

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
  padding: 5.5rem clamp(1.5rem, 3vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(99, 102, 241, 0.14), transparent 26%),
    radial-gradient(circle at 85% 80%, rgba(6, 182, 212, 0.08), transparent 32%);
  pointer-events: none;
}

.hero-content {
  max-width: 630px;
  position: relative;
  z-index: 1;
}

.hero-content p {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.75rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

p {
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-pill-list--hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-pill-list--hero li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.9rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 22px 50px rgba(139, 92, 246, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
html[data-theme='light'] .button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.35);
}
html[data-theme='light'] .button-primary {
  background: linear-gradient(135deg, #4338ca, #2563eb);
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent 42%);
  pointer-events: none;
}

.hero-illustration-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--surface-soft);
  border-radius: 32px;
  border: 1px solid var(--border);
}

.hero-illustration {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: none;
}

.hero-illustration[data-hero="default"] {
  display: block;
}

body[data-hero="alt"] .hero-illustration[data-hero="default"] {
  display: none;
}

body[data-hero="alt"] .hero-illustration[data-hero="alt"] {
  display: block;
}

.hero-illustration:hover {
  transform: translateY(-6px) scale(1.01);
}

.hero-card,
.accent-panel {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.16);
  border-radius: 32px;
  padding: 2.5rem;
  position: relative;
  min-height: 320px;
}

.hero-card::before,
.accent-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%);
  pointer-events: none;
}

.hero-card h2,
.accent-panel h3 {
  margin-bottom: 1rem;
}

.hero-card {
  display: grid;
  gap: 1.5rem;
}

.hero-card p,
.hero-card li,
.accent-panel p {
  color: var(--text-muted);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-card li {
  position: relative;
  padding-left: 1.4rem;
}

.hero-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

html[data-theme='light'] .hero-card {
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

html[data-theme='light'] .hero-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 70%);
}

html[data-theme='light'] .hero-card h2,
html[data-theme='light'] .hero-card p,
html[data-theme='light'] .hero-card li {
  color: #334155;
}

html[data-theme='light'] .hero-card ul li {
  background: rgba(67, 56, 202, 0.06);
  border-color: rgba(67, 56, 202, 0.10);
}

.hero-card-head {
  margin-bottom: 1.25rem;
}

.hero-pill-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.hero-pill-list li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  color: var(--text);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-theme='light'] .hero-stat {
  background: rgba(67, 56, 202, 0.08);
  border-color: rgba(67, 56, 202, 0.18);
}

html[data-theme='light'] .hero-stat span,
html[data-theme='light'] .hero-stat p {
  color: #0f172a;
}

.hero-stat span {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
}

.hero-stat p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

.section {
  padding: 6rem clamp(1.5rem, 3vw, 6rem);
}

.section-alt {
  background: var(--surface);
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.grid-3,
.legal-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.grid-3,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.feature-card,
.stat-card,
.info-box,
.legal-grid article,
.contact-form,
.package-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
}
.section-stats {
  padding: 5rem clamp(1.5rem, 3vw, 6rem);
  background: rgba(15, 23, 42, 0.95);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.section-stats .stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 23, 42, 0.88));
  border-color: rgba(255,255,255,0.08);
  padding: 2.2rem;
  min-height: 260px;
}

.section-stats .eyebrow {
  color: rgba(255,255,255,0.7);
}

.section-stats h2 {
  color: #fff;
}

.section-stats .stat-card h3 {
  font-size: 2.6rem;
  margin: 1rem 0 0.75rem;
  color: #fff;
}

.section-stats .stat-card p {
  color: rgba(255,255,255,0.72);
}
.feature-card,
.package-card {
  display: grid;
  gap: 1.35rem;
  min-height: 280px;
}

.feature-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.18);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-block;
  object-fit: contain;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  padding: 8px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.12);
}

.feature-card h3 {
  margin-top: 0.25rem;
}

.package-grid,
.grid-3,
.legal-grid,
.contact-grid {
  display: grid;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.package-card {
  position: relative;
}

.package-card-highlight {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.16), rgba(15, 23, 42, 0.96));
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 36px 90px rgba(99, 102, 241, 0.18);
  transform: scale(1.02);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 38px 90px rgba(15, 23, 42, 0.24);
}

.package-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.package-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-muted);
}

.package-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.package-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 800;
}

.feature-card h3,
.stat-card h3,
.info-box h3,
.legal-grid h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.steps-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.25rem;
}

.info-box {
  align-self: start;
}

.stat-card p,
.feature-card p,
.legal-grid p,
.contact-copy p {
  margin: 0;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.contact-copy ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-copy li {
  margin-bottom: 0.75rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 1.1rem 1.1rem;
  margin-bottom: 1.15rem;
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  padding: 2rem clamp(1.5rem, 3vw, 5rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.theme-toggle {
  position: fixed;
   bottom: 1rem;
   right: 1rem;
   display: flex;
   align-items: center;
   gap: 0.75rem;
   background: rgba(15, 23, 42, 0.92);
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 0.75rem 0.95rem;
   z-index: 30;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
 }
 
 .theme-toggle button {
   border: 1px solid var(--border);
   background: rgba(255, 255, 255, 0.08);
   color: var(--text);
   border-radius: 999px;
   padding: 0.6rem 0.95rem;
 }

.admin-panel {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.admin-login,
.admin-dashboard {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
}

.admin-login input {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 1rem;
}

.admin-login button,
.admin-dashboard button {
  width: auto;
}

.admin-dashboard table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-dashboard th,
.admin-dashboard td {
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}

.admin-dashboard th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.admin-dashboard tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.admin-message-body {
  white-space: pre-wrap;
  color: var(--text-muted);
}

.hidden {
  display: none !important;
}

@media (max-width: 960px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-bar {
    justify-content: flex-start;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-pill-list--hero {
    flex-direction: column;
    gap: 0.85rem;
  }

  .hero-pill-list--hero li,
  .button,
  .button-secondary {
    width: 100%;
  }

  .contact-grid,
  .legal-grid,
  .grid-3,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .content-box,
  .feature-card,
  .stat-card,
  .info-box,
  .package-card,
  .contact-form {
    padding: 1.75rem;
  }

  .admin-dashboard table {
    display: block;
    overflow-x: auto;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .hero-section {
    padding: 3rem 1.25rem 4rem;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .content-box,
  .feature-card,
  .stat-card,
  .info-box,
  .package-card,
  .contact-form {
    padding: 1.25rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .site-header {
    padding: 1rem 1rem 0;
  }

  .site-brand a {
    font-size: 1rem;
  }

  .nav-bar a {
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
  }

  .hero-illustration-wrap {
    padding: 1rem;
  }

  .theme-toggle {
    bottom: 1rem;
    right: 1rem;
  }
}
