:root {
  --bg: #f4efe5;
  --bg-deep: #081726;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 251, 245, 0.82);
  --ink: #13263d;
  --muted: #5d6c7f;
  --line: rgba(19, 38, 61, 0.12);
  --accent: #0f766e;
  --accent-strong: #0b5c5f;
  --accent-soft: rgba(15, 118, 110, 0.12);
  --warm: #b7791f;
  --warm-soft: rgba(183, 121, 31, 0.12);
  --hero-start: #08131f;
  --hero-end: #153e5f;
  --shadow-lg: 0 28px 80px rgba(8, 23, 38, 0.18);
  --shadow-md: 0 18px 45px rgba(8, 23, 38, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 34%),
    linear-gradient(180deg, #f8f5ef 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: #07111c;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.topbar-content p {
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.18), transparent 22%),
    radial-gradient(circle at 85% 25%, rgba(245, 158, 11, 0.16), transparent 20%),
    linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  background: rgba(255, 255, 255, 0.05);
  top: -180px;
  right: -120px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.04);
  bottom: -160px;
  left: -110px;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
}

.nav-cta {
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  font-weight: 700;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0 5rem;
}

.hero-copy,
.hero-stage {
  animation: rise-in 0.85s ease both;
}

.hero-stage {
  animation-delay: 0.12s;
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #9fe0d1;
}

.hero h1,
.section-heading h2,
.prep-card h2,
.floating-card h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  max-width: 12ch;
}

.hero-text {
  margin: 1.25rem 0 0;
  max-width: 60ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-price-card {
  display: inline-grid;
  gap: 0.2rem;
  margin-top: 1.45rem;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(5, 16, 28, 0.22);
  backdrop-filter: blur(16px);
  max-width: 25rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 48px rgba(5, 16, 28, 0.26);
}

.hero-price-label,
.hero-price-meta {
  color: rgba(255, 255, 255, 0.76);
}

.hero-price-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-price-card strong {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.hero-price-meta {
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.nav-cta:hover,
.secondary-btn:hover,
.action-btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #15907f 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 35px rgba(11, 92, 95, 0.28);
}

.btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.proof-item {
  padding: 1rem 1.05rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.proof-item strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
}

.proof-label,
.signal-kicker,
.floating-kicker,
.pricing-kicker,
.service-tag {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.proof-label {
  color: rgba(159, 224, 209, 0.88);
}

.floating-card {
  position: absolute;
  border-radius: var(--radius-lg);
  background: rgba(248, 244, 238, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
}

.floating-card-main {
  left: 0;
  bottom: 2rem;
  width: min(82%, 320px);
  padding: 1.45rem;
}

.floating-card-main h2 {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
}

.floating-card-main ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.floating-card-side {
  top: 0;
  right: 0;
  width: 220px;
  padding: 1.15rem;
}

.floating-card-side strong {
  display: block;
  margin-top: 0.45rem;
}

.visual-board {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(250px, 0.88fr);
  gap: 1rem;
  align-items: stretch;
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.visual-panel {
  border-radius: 1.9rem;
  background: rgba(248, 244, 238, 0.9);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.visual-panel-primary {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.18), transparent 28%),
    rgba(248, 244, 238, 0.92);
}

.visual-copy {
  display: grid;
  gap: 0.95rem;
}

.visual-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  max-width: 11ch;
}

.visual-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
}

.visual-bullets {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.visual-bullets li::marker {
  color: var(--accent-strong);
}

.scanner-illustration {
  position: relative;
  min-height: 230px;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at center, rgba(15, 118, 110, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(19, 38, 61, 0.96), rgba(8, 23, 38, 1));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.scanner-base {
  position: absolute;
  inset: auto 1.75rem 1.3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.fingerprint-svg {
  display: block;
  width: min(100%, 270px);
  margin: 0 auto;
  fill: none;
  stroke: #8af2d1;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 18px rgba(86, 236, 195, 0.22));
}

.scanner-chip {
  position: absolute;
  right: 1.25rem;
  bottom: 1.2rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-panel-secondary {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.35rem;
}

.mini-visual-head {
  display: grid;
  gap: 0.35rem;
}

.mini-visual-head strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.28;
  max-width: 14ch;
}

.document-svg,
.route-svg {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.document-svg rect,
.document-svg circle {
  fill: #ffffff;
  stroke: rgba(19, 38, 61, 0.12);
  stroke-width: 2;
}

.route-svg rect {
  fill: #ffffff;
  stroke: rgba(19, 38, 61, 0.12);
  stroke-width: 2;
}

.document-svg circle {
  fill: rgba(15, 118, 110, 0.16);
}

.document-svg rect:nth-of-type(2),
.document-svg rect:nth-of-type(3),
.document-svg rect:nth-of-type(4),
.document-svg rect:nth-of-type(7),
.route-svg rect:nth-of-type(2),
.route-svg rect:nth-of-type(3),
.route-svg rect:nth-of-type(4),
.route-svg rect:nth-of-type(5) {
  fill: rgba(15, 118, 110, 0.14);
  stroke: none;
}

.route-svg path {
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-svg path:first-of-type {
  fill: rgba(15, 118, 110, 0.14);
}

.mini-visual-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 26ch;
}

.signal-strip {
  position: relative;
  margin-top: -2rem;
  z-index: 3;
}

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

.signal-card {
  padding: 1.4rem 1.45rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.signal-card h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
}

.signal-kicker,
.pricing-kicker {
  color: var(--accent-strong);
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: end;
}

.section-heading h2,
.prep-card h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-lane,
.process-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 1.3rem;
}

.service-lane {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.service-card,
.step-card,
.prep-card,
.pricing-card,
.request-form,
.faq-item,
.admin-card,
.request-item,
.admin-panel {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-card {
  padding: 1.55rem;
}

.featured-card {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(183, 121, 31, 0.08)),
    var(--surface-strong);
}

.service-card h3,
.step-card h3,
.pricing-card h3 {
  margin: 0.1rem 0 0.55rem;
  font-size: 1.3rem;
}

.service-card p:last-child,
.step-card p,
.pricing-card ul,
.footer-copy {
  color: var(--muted);
}

.service-tag {
  color: var(--warm);
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0)),
    transparent;
}

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

.step-card {
  position: relative;
  padding: 1.45rem;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: auto -1.75rem -1.75rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: var(--accent-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #edf7f5;
  color: var(--accent-strong);
  font-weight: 800;
}

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

.prep-card {
  padding: 1.75rem;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(19, 38, 61, 0.98), rgba(15, 118, 110, 0.94)),
    var(--surface-strong);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.accent-card .eyebrow {
  color: #bcefe4;
}

.accent-card h2 {
  max-width: 12ch;
}

.accent-card p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.benefit-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.benefit-stack strong {
  display: block;
  margin-bottom: 0.25rem;
}

.alt-bg {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 28%),
    linear-gradient(180deg, #f0e8da 0%, #f5efe6 100%);
}

.request-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.request-copy p:not(.eyebrow) {
  color: var(--muted);
}

.info-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.info-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.info-card span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm);
}

.request-form {
  display: grid;
  gap: 0.95rem;
  padding: 1.55rem;
}

.request-form label,
.inline-form label {
  display: grid;
  gap: 0.38rem;
  font-weight: 700;
}

.request-form input,
.request-form select,
.request-form textarea,
.inline-form input {
  width: 100%;
  border: 1px solid rgba(19, 38, 61, 0.12);
  border-radius: 1rem;
  background: #fbfaf7;
  padding: 0.9rem 1rem;
  color: var(--ink);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus,
.inline-form input:focus,
.search-input:focus {
  outline: 2px solid rgba(15, 118, 110, 0.18);
  outline-offset: 0;
  border-color: rgba(15, 118, 110, 0.42);
}

.full-width {
  width: 100%;
}

.form-helper {
  margin: -0.05rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-response {
  min-height: 1.25rem;
  margin: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.form-response[data-tone='error'] {
  color: #b42318;
}

.form-response[data-tone='info'] {
  color: var(--muted);
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

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

.pricing-card {
  padding: 1.55rem;
}

.pricing-card.featured {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.09), rgba(255, 255, 255, 0.9)),
    var(--surface-strong);
  border-color: rgba(15, 118, 110, 0.26);
}

.price {
  margin: 0.1rem 0 1rem;
  font-size: 2.45rem;
  font-weight: 800;
}

.price span {
  margin-left: 0.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-card ul {
  padding-left: 1rem;
}

.pricing-note {
  margin: 1.15rem 0 0;
  color: var(--muted);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-top: 1.35rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(19, 38, 61, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.pricing-actions p {
  flex: 1 1 22rem;
  margin: 0;
  color: var(--muted);
}

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

.faq-item {
  padding: 1.15rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.footer {
  padding: 1.4rem 0 2.8rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-title {
  margin: 0;
  font-weight: 800;
}

.footer-copy {
  max-width: 42ch;
  margin: 0.45rem 0 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
  background: linear-gradient(180deg, #f5f1e9 0%, #eef4f7 100%);
}

.admin-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.5rem;
}

.admin-dashboard {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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

.admin-panel {
  padding: 1.25rem;
}

.panel-header {
  margin-bottom: 0.9rem;
}

.panel-header h3 {
  margin: 0 0 0.3rem;
}

.panel-header p {
  margin: 0;
  color: var(--muted);
}

.panel-divider {
  height: 1px;
  margin: 1.4rem 0;
  background: var(--line);
}

.panel-subsection {
  margin-bottom: 0.9rem;
}

.panel-subsection h3 {
  margin: 0 0 0.3rem;
}

.panel-subsection p {
  margin: 0;
  color: var(--muted);
}

.inline-form {
  display: grid;
  gap: 0.8rem;
}

.availability-form {
  display: grid;
  gap: 0.9rem;
}

.schedule-note {
  margin: 0;
  color: var(--muted);
}

.schedule-head,
.schedule-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) minmax(120px, 0.8fr) minmax(110px, 1fr) minmax(110px, 1fr) minmax(120px, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.schedule-head {
  padding: 0 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.availability-schedule {
  display: grid;
  gap: 0.75rem;
}

.schedule-row {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.schedule-day {
  font-size: 1rem;
}

.schedule-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.schedule-time {
  display: grid;
  gap: 0.35rem;
}

.schedule-time span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.schedule-time input {
  width: 100%;
}

.schedule-status {
  color: var(--muted);
  font-size: 0.95rem;
  justify-self: end;
  text-align: right;
}

.search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.request-list,
.availability-list {
  display: grid;
  gap: 1rem;
}

.availability-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.availability-preview-card {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.availability-preview-copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.request-item {
  padding: 1.25rem;
}

.request-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.status-badge.accepted {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}

.request-meta {
  margin: 0.35rem 0;
  color: var(--muted);
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.action-btn,
.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.action-btn {
  background: linear-gradient(135deg, #15907f 0%, var(--accent-strong) 100%);
  color: white;
}

.secondary-btn {
  background: #eef3f5;
  color: var(--ink);
}

.empty-state {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(19, 38, 61, 0.22);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
}

.hidden {
  display: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .signal-grid,
  .service-lane,
  .process-grid,
  .prep-grid,
  .request-panel,
  .split-heading,
  .visual-board {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .pricing-grid,
  .faq-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-copy h2,
  .mini-visual-head strong,
  .mini-visual-note,
  .visual-copy p {
    max-width: none;
  }

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

  .schedule-status {
    justify-self: start;
    text-align: left;
  }

  .pricing-actions {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .topbar-content,
  .nav,
  .footer-content,
  .admin-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid {
    padding-top: 1.5rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-price-card {
    max-width: 100%;
  }

  .hero-proof,
  .pricing-grid,
  .faq-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .schedule-head {
    display: none;
  }

  .schedule-row {
    grid-template-columns: 1fr;
  }

  .schedule-status {
    justify-self: stretch;
  }

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

  .admin-shell {
    padding: 1rem;
  }
}
