:root {
  --bg: #0a0a0a;
  --bg-soft: #111;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: #b9b9b9;
  --accent: #ffffff;
  --danger: #d73c3c;
  --success: #257a4c;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background 0.28s ease,
    backdrop-filter 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 10vh;
  width: auto;
  display: block;
  opacity: 0.94;
  filter:
    brightness(1.04)
    drop-shadow(0 0 6px rgb(255, 255, 255));
  transition:
    opacity 0.24s ease,
    filter 0.24s ease,
    transform 0.24s ease;
}

.logo img:hover {
  opacity: 1;
  transform: scale(1.03);
}

.logo:hover img {
  opacity: 1;
  transform: translateY(-1px);
  filter:
    brightness(1.08)
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.14));
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.7)),
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  margin-bottom: 18px;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-text,
.section-head p {
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  appearance: none;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: #fff;
}

.btn-danger {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}

.section {
  padding: 90px 0;
}

.section-dark {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-head {
  margin-bottom: 34px;
}

.pricing-grid,
.reassurance-grid,
.admin-cards {
  display: grid;
  gap: 20px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reassurance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card,
.reassurance-card,
.admin-card,
.admin-login-card,
.contact-form,
.empty-state {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card,
.reassurance-card {
  padding: 24px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 8px 0 18px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-wrap {
  max-width: 920px;
}

.contact-form {
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.95rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0 22px;
  color: var(--muted);
}

.checkbox-line input {
  width: auto;
  margin-top: 3px;
}

.alert {
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.alert-success {
  background: rgba(37, 122, 76, 0.2);
  border-color: rgba(37, 122, 76, 0.45);
}

.alert-error {
  background: rgba(215, 60, 60, 0.14);
  border-color: rgba(215, 60, 60, 0.45);
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px;
  height: 1px;
}

.admin-body {
  min-height: 100vh;
  background: #080808;
}

.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(100%, 540px);
  padding: 28px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-user {
  color: var(--muted);
  margin-left: 12px;
}

.admin-dashboard {
  padding-top: 34px;
  padding-bottom: 50px;
}

.admin-card {
  padding: 22px;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.admin-card h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.admin-meta {
  color: var(--muted);
  margin: 4px 0;
}

.admin-message {
  white-space: pre-wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-new {
  background: rgba(255,255,255,0.12);
}

.status-read {
  background: rgba(255, 195, 0, 0.18);
}

.status-processed {
  background: rgba(37, 122, 76, 0.28);
}

.empty-state {
  padding: 26px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .pricing-grid,
  .reassurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .site-header .btn {
    width: auto;
    align-self: center;
  }

  .logo img {
    height: 112px;
    max-width: 110vw;
    }

  .pricing-grid,
  .reassurance-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar-inner,
  .admin-card-head,
  .admin-actions,
  .inline-form {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    max-width: none;
  }
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 34px;
  background: #080808;
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}