:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #0f172a;
  --muted: #5b6477;
  --line: #dce5f1;
  --brand: #0d6f63;
  --brand-strong: #085247;
  --brand-soft: #d7f2ee;
  --gold: #c39a3c;
  --gold-soft: #f6edd8;
  --blue-soft: #e6f0ff;
  --shadow: 0 18px 40px rgba(8, 25, 48, 0.08);
  --shadow-soft: 0 8px 24px rgba(8, 25, 48, 0.06);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 56px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-strong);
  background: rgba(13, 111, 99, 0.1);
  padding: 8px 12px;
  border-radius: 999px;
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-header h1,
.section-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.08;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.88);
  border-bottom: 1px solid rgba(220, 229, 241, 0.85);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.brand span {
  font-size: 1.05rem;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-nav {
  position: fixed;
  inset: 72px 16px auto 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(220, 229, 241, 0.95);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
}

.main-nav.open {
  display: block;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.main-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a.active,
.main-nav a:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.nav-actions {
  display: none;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 10px 20px rgba(13, 111, 99, 0.22);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost {
  color: var(--brand-strong);
  background: rgba(13, 111, 99, 0.08);
}

.hero {
  padding: 34px 0 54px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.25rem, 9vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.hero-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

.badge-soft {
  background: rgba(13, 111, 99, 0.1);
  color: var(--brand-strong);
}

.badge-gold {
  background: var(--gold-soft);
  color: #87631e;
}

.badge-blue {
  background: var(--blue-soft);
  color: #244a95;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,250,255,0.96) 100%);
  border: 1px solid rgba(220, 229, 241, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-top {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}

.kpi strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.kpi span {
  font-size: 0.88rem;
  color: var(--muted);
}

.search-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.form-grid,
.grid,
.filters,
.action-row,
.page-shell {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.legend {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px 15px;
  color: var(--text);
  min-height: 50px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(13, 111, 99, 0.14);
  border-color: rgba(13, 111, 99, 0.42);
}

.inline-fields,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.92rem;
}

.tiny {
  font-size: 0.82rem;
}

.card,
.offer-card,
.agency-card,
.plan-card,
.info-card,
.feature-card,
.quote-card,
.faq-card {
  background: var(--surface);
  border: 1px solid rgba(220, 229, 241, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.card-pad,
.info-card,
.feature-card,
.quote-card,
.faq-card {
  padding: 18px;
}

.offer-card {
  overflow: hidden;
  display: grid;
}

.offer-head {
  padding: 18px 18px 14px;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(13, 111, 99, 0.06) 0%, rgba(255,255,255,0) 100%);
}

.offer-meta,
.agency-meta,
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--surface-soft);
  border: 1px solid rgba(220, 229, 241, 0.9);
}

.offer-body {
  padding: 0 18px 18px;
  display: grid;
  gap: 14px;
}

.offer-title,
.agency-top h3,
.plan-title h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.price {
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.subprice {
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-list,
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.95rem;
}

.detail-list li span:first-child {
  color: var(--muted);
}

.agency-card,
.plan-card {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.agency-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.agency-avatar {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13,111,99,0.14), rgba(195,154,60,0.18));
  border: 1px solid rgba(13,111,99,0.14);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand-strong);
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.filter-toolbar {
  background: var(--surface);
  border: 1px solid rgba(220, 229, 241, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.filter-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-pills::-webkit-scrollbar {
  display: none;
}

.pill-btn {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
}

.pill-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  border-color: transparent;
}

.plan-card.featured {
  border-color: rgba(13,111,99,0.34);
  box-shadow: 0 18px 42px rgba(13,111,99,0.14);
  position: relative;
}

.plan-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.plan-title {
  display: grid;
  gap: 8px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.list-check li {
  position: relative;
  padding-left: 28px;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.cta-banner {
  background: linear-gradient(135deg, #0d6f63 0%, #094f45 100%);
  color: #fff;
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 18px;
  box-shadow: 0 20px 46px rgba(7, 62, 55, 0.26);
}

.cta-banner .muted {
  color: rgba(255,255,255,0.76);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--surface-soft);
  margin-bottom: 16px;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.02rem;
}

.quote-card footer {
  margin-top: 14px;
  color: var(--muted);
}

.page-hero {
  padding: 24px 0 20px;
}

.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: #fff9ed;
  border: 1px solid #f0dfba;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.step-number {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.kicker {
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(220, 229, 241, 0.9);
}

.table-wrap th {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-item {
  border: 1px solid rgba(220,229,241,0.95);
  border-radius: 18px;
  background: var(--surface);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
}

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

.faq-item .faq-content {
  padding: 0 18px 18px;
  color: var(--muted);
}

.footer {
  padding: 40px 0 120px;
  border-top: 1px solid rgba(220,229,241,0.9);
  background: rgba(255,255,255,0.55);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(220,229,241,0.9);
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.mobile-quickbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(220,229,241,0.95);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.status-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13,111,99,0.08), rgba(195,154,60,0.08));
  border: 1px solid rgba(220,229,241,0.95);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 29, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 16px;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  width: min(100%, 520px);
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid rgba(220,229,241,0.95);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.success-box {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--brand-soft);
  border: 1px solid rgba(13,111,99,0.18);
  color: var(--brand-strong);
}

.empty-state {
  padding: 22px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed rgba(13,111,99,0.22);
  border-radius: 22px;
}

.desktop-only {
  display: none;
}

@media (min-width: 760px) {
  .hero {
    padding: 44px 0 74px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .inline-fields,
  .grid-2,
  .page-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-grid > :first-child {
    grid-column: span 1;
  }

  .desktop-only {
    display: block;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    inset: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: block;
  }

  .main-nav ul {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .nav-actions {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-card-top {
    padding: 22px;
  }

  .filter-toolbar {
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    align-items: end;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .mobile-quickbar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Islamic luxe redesign overrides --- */
:root {
  --bg: #f6f0e3;
  --surface: #fffdf8;
  --surface-soft: #fbf4e6;
  --text: #132620;
  --muted: #647268;
  --line: rgba(183, 140, 61, 0.22);
  --brand: #0f6a5c;
  --brand-strong: #08483d;
  --brand-soft: #deeee7;
  --gold: #b88a2f;
  --gold-soft: #f7e9cb;
  --blue-soft: #edf4ff;
  --shadow: 0 24px 60px rgba(17, 31, 27, 0.12);
  --shadow-soft: 0 12px 30px rgba(17, 31, 27, 0.08);
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(15, 106, 92, 0.10), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(184, 138, 47, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.96) 0%, rgba(246, 240, 227, 0.98) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180' fill='none'%3E%3Cg opacity='.6'%3E%3Cpath d='M90 18L100 38L122 40L106 56L110 78L90 68L70 78L74 56L58 40L80 38L90 18Z' stroke='%23b88a2f' stroke-opacity='.14' stroke-width='2'/%3E%3Cpath d='M30 110C42 110 51 101 51 89C51 101 60 110 72 110C60 110 51 119 51 131C51 119 42 110 30 110Z' stroke='%230f6a5c' stroke-opacity='.12' stroke-width='2'/%3E%3Cpath d='M108 124C120 124 129 115 129 103C129 115 138 124 150 124C138 124 129 133 129 145C129 133 120 124 108 124Z' stroke='%230f6a5c' stroke-opacity='.10' stroke-width='2'/%3E%3Cpath d='M20 60H48M34 46V74' stroke='%23b88a2f' stroke-opacity='.10' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M132 34H160M146 20V48' stroke='%23b88a2f' stroke-opacity='.10' stroke-width='2' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, auto, 180px 180px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.72), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(255,249,233,0.68), transparent 22%);
}

body::after {
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(246,240,227,0), rgba(228,216,188,0.24));
}

.topbar {
  position: sticky;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 64, 55, 0.96) 0%, rgba(8, 52, 45, 0.94) 100%);
  border-bottom: 1px solid rgba(184, 138, 47, 0.32);
  box-shadow: 0 10px 28px rgba(10, 36, 31, 0.18);
}

.topbar::before,
.footer::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='120' viewBox='0 0 220 120' fill='none'%3E%3Cpath d='M20 100C20 74 41 53 67 53C81 53 92 60 100 71C108 60 119 53 133 53C159 53 180 74 180 100' stroke='%23f0d69f' stroke-opacity='.18' stroke-width='2'/%3E%3Cpath d='M60 100C60 86 71 75 85 75C91 75 96 77 100 81C104 77 109 75 115 75C129 75 140 86 140 100' stroke='%23f0d69f' stroke-opacity='.14' stroke-width='2'/%3E%3Ccircle cx='100' cy='27' r='4' fill='%23f0d69f' fill-opacity='.28'/%3E%3Ccircle cx='44' cy='27' r='2' fill='%23f0d69f' fill-opacity='.20'/%3E%3Ccircle cx='156' cy='27' r='2' fill='%23f0d69f' fill-opacity='.20'/%3E%3C/svg%3E");
  background-size: 220px 120px;
  opacity: 0.9;
}

.topbar-inner,
.cta-banner > *,
.footer > * {
  position: relative;
  z-index: 1;
}

.brand span,
.hero-copy h1,
.section-header h1,
.section-header h2,
.offer-title,
.agency-top h3,
.plan-title h3,
.quote-card blockquote,
.faq-item summary,
.cta-banner h2,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.brand span {
  color: #fff;
  font-size: 1.12rem;
}

.brand-mark {
  border: 1px solid rgba(240, 214, 159, 0.38);
  background: rgba(255,255,255,0.06);
}

.nav-toggle {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.main-nav {
  background: rgba(8, 52, 45, 0.97);
  border-color: rgba(184, 138, 47, 0.24);
}

.main-nav a {
  color: rgba(255,255,255,0.78);
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.btn {
  border-radius: 16px;
}

.btn-primary {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #0f6a5c 0%, #0a584b 56%, #b88a2f 100%);
  box-shadow: 0 12px 24px rgba(10, 60, 51, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(10, 60, 51, 0.30);
}

.btn-secondary {
  color: var(--text);
  background: linear-gradient(180deg, #fffef9 0%, #f9efdc 100%);
  border-color: rgba(184, 138, 47, 0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.btn-ghost {
  color: var(--brand-strong);
  background: rgba(15, 106, 92, 0.10);
  border: 1px solid rgba(15, 106, 92, 0.12);
}

.hero {
  position: relative;
  padding-top: 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 430px;
  background:
    radial-gradient(circle at 16% 10%, rgba(184,138,47,0.18), transparent 18%),
    linear-gradient(180deg, rgba(11,80,68,0.07), rgba(11,80,68,0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
}

.hero-copy::after,
.section-header::after {
  content: "";
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184,138,47,0), rgba(184,138,47,0.82), rgba(15,106,92,0.22));
}

.eyebrow {
  width: fit-content;
  color: var(--brand-strong);
  border: 1px solid rgba(184, 138, 47, 0.22);
  background: linear-gradient(180deg, rgba(248, 233, 203, 0.88) 0%, rgba(222, 238, 231, 0.88) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.eyebrow::before {
  content: "☾";
  color: var(--gold);
  font-size: 0.9rem;
}

.hero-copy h1,
.section-header h1,
.section-header h2 {
  color: #10221c;
  text-wrap: balance;
}

.hero-copy p,
.section-header p {
  max-width: 64ch;
}

.badge {
  border: 1px solid transparent;
}

.badge-soft {
  background: rgba(15, 106, 92, 0.10);
  color: var(--brand-strong);
  border-color: rgba(15, 106, 92, 0.14);
}

.badge-gold {
  background: linear-gradient(180deg, rgba(247,233,203,1) 0%, rgba(255,248,233,1) 100%);
  color: #815a12;
  border-color: rgba(184, 138, 47, 0.22);
}

.badge-blue {
  border-color: rgba(54, 100, 173, 0.12);
}

.hero-card,
.card,
.offer-card,
.agency-card,
.plan-card,
.info-card,
.feature-card,
.quote-card,
.faq-card,
.table-wrap,
.filter-toolbar,
.modal {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,254,249,0.98) 0%, rgba(255,255,255,0.98) 100%);
  border: 1px solid rgba(184, 138, 47, 0.24);
  box-shadow: var(--shadow-soft);
}

.hero-card::before,
.card::before,
.offer-card::before,
.agency-card::before,
.plan-card::before,
.info-card::before,
.feature-card::before,
.quote-card::before,
.faq-card::before,
.table-wrap::before,
.filter-toolbar::before,
.modal::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15,106,92,0.14), rgba(184,138,47,0.86), rgba(15,106,92,0.14));
}

.hero-card::after,
.card::after,
.offer-card::after,
.agency-card::after,
.plan-card::after,
.info-card::after,
.feature-card::after,
.quote-card::after,
.modal::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -92px;
  top: -92px;
  background: radial-gradient(circle, rgba(184,138,47,0.16), rgba(184,138,47,0) 70%);
  pointer-events: none;
}

.hero-card {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  position: relative;
  z-index: 1;
}

.search-card {
  position: relative;
  background: linear-gradient(180deg, #fffefb 0%, #fff7e8 100%);
  border-color: rgba(184, 138, 47, 0.30);
  border-radius: 28px 28px 18px 18px / 68px 68px 18px 18px;
}

.search-card::before {
  content: "";
  position: absolute;
  inset: 14px 16px auto 16px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184,138,47,0), rgba(184,138,47,0.85), rgba(184,138,47,0));
}

.kpi,
.stat-pill,
.chip,
.notice,
.status-banner {
  border-color: rgba(184, 138, 47, 0.24);
}

.kpi {
  background: linear-gradient(180deg, #fffefb 0%, #fbf3e5 100%);
}

.kpi strong,
.price,
.plan-price {
  color: var(--brand-strong);
}

.field input,
.field select,
.field textarea {
  background: linear-gradient(180deg, #fffefb 0%, #fffaf0 100%);
  border-color: rgba(184, 138, 47, 0.22);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(184, 138, 47, 0.14);
  border-color: rgba(15, 106, 92, 0.36);
  box-shadow: 0 0 0 4px rgba(15, 106, 92, 0.08);
}

.offer-head {
  background: linear-gradient(180deg, rgba(15,106,92,0.14) 0%, rgba(184,138,47,0.09) 54%, rgba(255,255,255,0) 100%);
}

.offer-title,
.agency-top h3,
.plan-title h3 {
  color: #163028;
}

.detail-list li {
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(184, 138, 47, 0.16);
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.agency-avatar {
  border-radius: 22px 22px 12px 12px / 34px 34px 12px 12px;
  background: linear-gradient(135deg, rgba(15,106,92,0.20), rgba(184,138,47,0.24));
  border-color: rgba(184, 138, 47, 0.18);
}

.filter-toolbar,
.table-wrap,
.notice,
.status-banner,
.modal {
  box-shadow: var(--shadow-soft);
}

.pill-btn {
  border-color: rgba(184, 138, 47, 0.22);
  background: linear-gradient(180deg, #fffefb, #fbf2e2);
}

.pill-btn.active {
  background: linear-gradient(135deg, #0f6a5c 0%, #0a584b 55%, #b88a2f 100%);
}

.plan-card.featured {
  border-color: rgba(184, 138, 47, 0.40);
  background: linear-gradient(180deg, rgba(255,252,245,1) 0%, rgba(252,243,223,0.92) 100%);
  box-shadow: 0 18px 42px rgba(126, 92, 22, 0.14);
}

.plan-tag {
  border: 1px solid rgba(184,138,47,0.18);
  background: linear-gradient(180deg, rgba(247,233,203,1), rgba(255,250,241,1));
  color: #77540d;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 214, 159, 0.18);
  background: linear-gradient(135deg, #0d5a4d 0%, #083c35 100%);
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(240,214,159,0.18), rgba(240,214,159,0) 70%);
}

.feature-icon {
  background: linear-gradient(180deg, rgba(247,233,203,0.92), rgba(222,238,231,0.92));
  border: 1px solid rgba(184,138,47,0.18);
  color: var(--brand-strong);
}

.page-hero {
  position: relative;
  padding-top: 34px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,106,92,0.05), rgba(15,106,92,0));
  pointer-events: none;
}

.step {
  background: linear-gradient(180deg, rgba(255,254,249,1), rgba(250,243,230,0.9));
  border-color: rgba(184, 138, 47, 0.20);
}

.step-number {
  background: linear-gradient(180deg, rgba(247,233,203,1), rgba(222,238,231,1));
  border: 1px solid rgba(184,138,47,0.18);
  color: var(--brand-strong);
}

.table-wrap th {
  color: #7b6945;
}

.faq-item summary {
  color: #173028;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 138, 47, 0.24);
  background: linear-gradient(180deg, rgba(9, 52, 45, 0.98) 0%, rgba(6, 38, 33, 0.98) 100%);
}

.footer,
.footer .brand span,
.footer strong {
  color: #fff;
}

.footer .muted,
.footer-links a,
.footer-bottom {
  color: rgba(255,255,255,0.74);
}

.mobile-quickbar {
  background: rgba(9, 52, 45, 0.94);
  border-color: rgba(184, 138, 47, 0.24);
}

.mobile-quickbar .btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.modal {
  background: linear-gradient(180deg, rgba(255,254,249,1) 0%, rgba(255,249,236,1) 100%);
}

.icon-btn {
  border-color: rgba(184, 138, 47, 0.20);
  background: linear-gradient(180deg, #fffef9, #fbf1de);
}

.success-box {
  background: linear-gradient(180deg, rgba(222,238,231,1), rgba(247,233,203,0.55));
  border-color: rgba(15,106,92,0.14);
}

.empty-state {
  background: linear-gradient(180deg, rgba(255,254,249,1), rgba(251,243,230,0.74));
  border-color: rgba(184,138,47,0.24);
}

@media (min-width: 960px) {
  .main-nav {
    background: transparent;
    border: 0;
  }

  .main-nav a {
    border: 1px solid transparent;
  }

  .main-nav a.active,
  .main-nav a:hover {
    border-color: rgba(255,255,255,0.12);
  }

  .hero-card {
    border-radius: 42px;
  }

  .search-card {
    border-radius: 32px 32px 20px 20px / 86px 86px 20px 20px;
  }
}

/* --- Professional auth/dashboard refinement --- */
.auth-layout,
.dashboard-layout {
  display: grid;
  gap: 18px;
}

.auth-hero-panel,
.auth-form-panel,
.panel-shell,
.dashboard-card,
.helper-card,
.mini-metric,
.section-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 47, 0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,252,0.98) 0%, rgba(255,249,239,0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.auth-hero-panel::before,
.auth-form-panel::before,
.panel-shell::before,
.dashboard-card::before,
.helper-card::before,
.mini-metric::before,
.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(184,138,47,0.16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(15,106,92,0.10), transparent 24%);
}

.auth-hero-panel > *,
.auth-form-panel > *,
.panel-shell > *,
.dashboard-card > *,
.helper-card > *,
.mini-metric > *,
.section-shell > * {
  position: relative;
  z-index: 1;
}

.auth-hero-panel {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(9,65,56,0.98) 0%, rgba(8,52,45,0.98) 100%);
  color: #fff;
}

.auth-hero-panel .eyebrow {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(240,214,159,0.18);
}

.auth-hero-panel .eyebrow::before {
  color: #f1d597;
}

.auth-hero-panel h1,
.auth-hero-panel h2,
.auth-hero-panel h3 {
  color: #fff;
  margin: 0;
}

.auth-hero-panel p,
.auth-hero-panel .muted {
  color: rgba(255,255,255,0.78);
}

.auth-hero-top {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.auth-stat-grid,
.panel-metric-grid,
.dashboard-kpi-grid {
  display: grid;
  gap: 12px;
}

.auth-stat,
.panel-metric,
.dashboard-kpi,
.mini-metric {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(184, 138, 47, 0.20);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,240,221,0.9));
}

.auth-hero-panel .auth-stat,
.auth-hero-panel .mini-metric {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.auth-stat strong,
.panel-metric strong,
.dashboard-kpi strong,
.mini-metric strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: inherit;
}

.auth-feature-list,
.signal-list,
.info-list,
.helper-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.auth-feature-list li,
.signal-list li,
.info-list li,
.helper-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon-bullet {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 0.95rem;
  background: linear-gradient(180deg, rgba(247,233,203,1), rgba(222,238,231,1));
  border: 1px solid rgba(184,138,47,0.18);
  color: var(--brand-strong);
}

.auth-hero-panel .icon-bullet {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

.auth-form-panel,
.panel-shell,
.dashboard-card,
.helper-card,
.section-shell {
  padding: 24px;
}

.panel-topbar,
.dashboard-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-title-stack {
  display: grid;
  gap: 10px;
}

.panel-title-stack h1,
.panel-title-stack h2,
.panel-title-stack h3 {
  margin: 0;
}

.panel-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(15,106,92,0.08);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-caption::before {
  content: "✦";
  color: var(--gold);
}

.form-section-block {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(184,138,47,0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(252,246,234,0.82));
}

.form-section-head {
  display: grid;
  gap: 8px;
}

.form-section-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.form-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.field-note {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.input-prefix {
  position: relative;
}

.input-prefix span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 700;
}

.input-prefix input {
  padding-left: 62px;
}

.auth-footer-row,
.panel-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.trust-pill-row,
.data-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.data-chip,
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(184,138,47,0.20);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(249,240,221,0.88));
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.dashboard-banner {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(184,138,47,0.22);
  background: linear-gradient(135deg, rgba(9,65,56,0.98) 0%, rgba(8,52,45,0.98) 100%);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.dashboard-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(241,213,151,0.22), transparent 20%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='120' viewBox='0 0 240 120' fill='none'%3E%3Cpath d='M26 102C26 72 50 48 80 48C96 48 110 55 120 68C130 55 144 48 160 48C190 48 214 72 214 102' stroke='%23f0d69f' stroke-opacity='.18' stroke-width='2.2'/%3E%3Cpath d='M72 102C72 86 85 73 101 73C109 73 116 76 120 81C124 76 131 73 139 73C155 73 168 86 168 102' stroke='%23f0d69f' stroke-opacity='.14' stroke-width='2'/%3E%3Ccircle cx='120' cy='24' r='4' fill='%23f0d69f' fill-opacity='.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right top, center top;
  pointer-events: none;
}

.dashboard-banner > * {
  position: relative;
  z-index: 1;
}

.dashboard-banner h1,
.dashboard-banner h2,
.dashboard-banner h3,
.dashboard-banner .muted {
  color: #fff;
}

.dashboard-banner .muted {
  color: rgba(255,255,255,0.76);
}

.dashboard-flex,
.helper-flex {
  display: grid;
  gap: 16px;
}

.dashboard-card h3,
.helper-card h3,
.section-shell h3,
.auth-form-panel h3 {
  margin-top: 0;
}

.panel-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(184,138,47,0), rgba(184,138,47,0.28), rgba(184,138,47,0));
  margin: 6px 0;
}

.profile-list {
  display: grid;
  gap: 10px;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(184,138,47,0.18);
}

.profile-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.profile-row span {
  color: var(--muted);
}

.profile-row strong {
  text-align: right;
  font-weight: 700;
}

.offer-builder-grid {
  display: grid;
  gap: 16px;
}

.offer-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.ghost-note {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(184,138,47,0.28);
  background: rgba(255,255,255,0.55);
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-kpi-row {
  display: grid;
  gap: 12px;
}

.offer-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.soft-code {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 10px;
  background: rgba(8,52,45,0.06);
  color: var(--brand-strong);
  border: 1px solid rgba(15,106,92,0.10);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
}

.auth-hero-quote {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.auth-hero-quote p {
  margin: 0;
  font-size: 0.98rem;
}

.auth-hero-quote footer {
  margin-top: 12px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.68);
}

@media (min-width: 760px) {
  .auth-layout,
  .dashboard-layout {
    grid-template-columns: 1.02fr 0.98fr;
    align-items: start;
  }

  .auth-stat-grid,
  .panel-metric-grid,
  .dashboard-kpi-grid,
  .quick-kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .dashboard-layout {
    grid-template-columns: 1.14fr 0.86fr;
  }

  .dashboard-flex {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

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

.dashboard-inline-actions .btn {
  width: 100%;
}

.panel-shell.grid,
.dashboard-card.grid,
.helper-card.grid {
  gap: 18px;
}

#dashboard-user:empty::before,
#my-offers:empty::before {
  content: "";
  display: block;
  min-height: 6px;
}

@media (min-width: 760px) {
  .dashboard-inline-actions {
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
  }

  .dashboard-inline-actions .btn {
    width: auto;
  }
}

.text-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(184, 138, 47, 0.5);
  text-underline-offset: 4px;
}

.agency-mini-logo,
.detail-logo,
.dashboard-media-thumb {
  object-fit: cover;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(249,240,221,0.9));
  border: 1px solid rgba(184,138,47,0.18);
}

.agency-mini-logo {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  flex: 0 0 54px;
}

.detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(184,138,47,0.22);
  background: linear-gradient(135deg, rgba(9,65,56,0.98) 0%, rgba(8,52,45,0.98) 100%);
  color: #fff;
  box-shadow: var(--shadow);
  min-height: 300px;
}

.detail-hero.has-banner {
  background: #0d5a4d;
}

.detail-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,32,28,0.18), rgba(7,32,28,0.74));
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.detail-brand-row {
  display: grid;
  gap: 16px;
  align-items: start;
}

.detail-logo {
  width: 96px;
  height: 96px;
  border-radius: 26px;
}

.detail-logo-fallback,
.dashboard-media-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand-strong);
}

.detail-logo-fallback {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(247,233,203,1), rgba(255,255,255,0.94));
}

.detail-hero h1,
.detail-hero .muted {
  color: #fff;
}

.detail-hero .muted {
  color: rgba(255,255,255,0.8);
}

.detail-mini-card {
  padding: 18px;
}

.dashboard-media-grid {
  display: grid;
  gap: 14px;
}

.dashboard-banner-thumb,
.dashboard-media-thumb {
  width: 100%;
  height: 118px;
  border-radius: 20px;
}

.dashboard-media-thumb {
  max-width: 118px;
  height: 118px;
}

.dashboard-banner-thumb {
  object-fit: cover;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 760px) {
  .detail-grid {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: start;
  }

  .detail-brand-row {
    grid-template-columns: auto 1fr;
  }

  .dashboard-media-grid {
    grid-template-columns: auto 1fr;
    align-items: end;
  }
}

/* --- Minimal ultra-premium redesign --- */
:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #f4efe7;
  --text: #161514;
  --muted: #6b665f;
  --line: rgba(17, 15, 12, 0.08);
  --brand: #171412;
  --brand-strong: #0d0b09;
  --brand-soft: #f1ebe2;
  --gold: #b38a4a;
  --gold-soft: #f5ead7;
  --blue-soft: #ece8e1;
  --shadow: 0 30px 80px rgba(20, 18, 16, 0.10);
  --shadow-soft: 0 14px 36px rgba(20, 18, 16, 0.08);
}

body {
  background: linear-gradient(180deg, #fbf9f5 0%, var(--bg) 100%);
  color: var(--text);
}

body::before,
body::after,
.topbar::before,
.footer::before,
.cta-banner::before,
.hero-copy::after,
.section-header::after,
.hero-card::after,
.card::after,
.offer-card::after,
.agency-card::after,
.plan-card::after,
.info-card::after,
.feature-card::after,
.quote-card::after,
.modal::after {
  display: none !important;
}

.brand span,
.hero-copy h1,
.section-header h1,
.section-header h2,
.offer-title,
.agency-top h3,
.plan-title h3,
.quote-card blockquote,
.faq-item summary,
.cta-banner h2,
h1,
h2,
h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.topbar,
.topbar-clean {
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(20,18,16,0.04);
  backdrop-filter: blur(18px);
}

.brand span,
.main-nav a,
.topbar .btn-ghost {
  color: var(--text);
}

.nav-toggle {
  color: var(--text);
  background: rgba(255,255,255,0.9);
  border-color: var(--line);
}

.main-nav {
  background: rgba(255,255,255,0.98);
  border-color: var(--line);
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(17,15,12,0.05);
  color: var(--text);
}

.btn {
  min-height: 50px;
  border-radius: 14px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(180deg, #1b1815 0%, #0f0d0c 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15,13,12,0.14);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.eyebrow,
.panel-caption,
.data-chip,
.trust-pill,
.micro-proof {
  background: rgba(179,138,74,0.10);
  color: #6f5327;
  border: 1px solid rgba(179,138,74,0.16);
  box-shadow: none;
}

.eyebrow::before,
.panel-caption::before {
  color: var(--gold);
}

.hero,
.section-condensed {
  padding: 48px 0;
}

.home-minimal .section:last-of-type {
  padding-bottom: 72px;
}

.hero-luxury {
  padding-top: 42px;
}

.hero-grid-clean {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.hero-copy-clean {
  gap: 16px;
}

.hero-copy-clean h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 10.5ch;
}

.hero-copy-clean p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-panel-side,
.search-card-clean,
.luxury-shell,
.footer-prelude,
.register-shell,
.hidden-pricing-page .section-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,246,240,0.98) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-panel-side,
.footer-prelude,
.hidden-pricing-page .section-shell,
.register-shell {
  padding: 22px;
}

.search-card-clean {
  padding: 20px;
  border-radius: 22px;
}

.minimal-kpi-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.minimal-kpi-strip div {
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.minimal-kpi-strip strong {
  display: block;
  font-size: 1.2rem;
}

.minimal-kpi-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.micro-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.micro-proof {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
}

.agency-entry-link {
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--muted);
}

.agency-entry-link a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-header-tight {
  gap: 10px;
  margin-bottom: 22px;
}

.section-header-tight h2,
.section-header-tight h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.kpi-grid,
.status-banner,
.feature-card,
.quote-card,
.info-card .btn-ghost,
.cta-banner,
.plan-tag,
.auth-hero-panel {
  display: none !important;
}

.offer-card,
.agency-card,
.card,
.info-card,
.feature-card,
.quote-card,
.faq-card,
.table-wrap,
.filter-toolbar,
.modal,
.panel-shell,
.dashboard-card,
.helper-card,
.section-shell,
.auth-form-panel,
.form-section-block,
.search-card,
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.offer-card,
.agency-card,
.panel-shell,
.dashboard-card,
.helper-card,
.section-shell,
.auth-form-panel,
.form-section-block,
.search-card,
.hero-card {
  border-radius: 22px;
}

.offer-head,
.search-card {
  background: transparent;
}

.card::before,
.offer-card::before,
.agency-card::before,
.plan-card::before,
.info-card::before,
.feature-card::before,
.quote-card::before,
.faq-card::before,
.table-wrap::before,
.filter-toolbar::before,
.modal::before,
.search-card::before,
.hero-card::before,
.section-shell::before,
.panel-shell::before,
.dashboard-card::before,
.helper-card::before,
.auth-form-panel::before,
.auth-hero-panel::before,
.form-section-block::before,
.mini-metric::before {
  display: none !important;
}

.offer-title a,
.agency-top h3 a {
  color: inherit;
}

.offer-title {
  font-size: 1.1rem;
}

.price,
.plan-price,
.kpi strong,
.panel-metric strong,
.auth-stat strong,
.mini-metric strong {
  color: var(--brand);
}

.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid rgba(17,15,12,0.10);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(179,138,74,0.12);
  border-color: rgba(179,138,74,0.38);
  box-shadow: 0 0 0 4px rgba(179,138,74,0.08);
}

.footer,
.footer-clean {
  background: #111111;
  border-top: 0;
}

.footer-grid-simple {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.footer,
.footer .brand span,
.footer strong {
  color: #fff;
}

.footer .muted,
.footer-links a,
.footer-bottom {
  color: rgba(255,255,255,0.72);
}

.mobile-quickbar-clean {
  background: rgba(255,255,255,0.95);
  border-color: var(--line);
}

.register-shell {
  max-width: 920px;
}

.register-simple-form {
  display: grid;
  gap: 18px;
}

.registration-plan-grid {
  display: grid;
  gap: 14px;
}

.plan-choice {
  position: relative;
  display: block;
  cursor: pointer;
}

.plan-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-choice-body {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.2s ease;
}

.plan-choice.featured .plan-choice-body {
  background: linear-gradient(180deg, #fffdf9 0%, #f6efe4 100%);
}

.plan-choice input:checked + .plan-choice-body {
  border-color: rgba(179,138,74,0.5);
  box-shadow: 0 0 0 4px rgba(179,138,74,0.10);
}

.plan-choice-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
}

.plan-choice-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.hidden-pricing-page {
  max-width: 780px;
}

.footer-prelude {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-prelude-copy {
  display: grid;
  gap: 10px;
}

.footer-prelude-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

.hero-card-top,
.auth-form-panel,
.panel-shell,
.dashboard-card,
.helper-card,
.section-shell,
.card-pad {
  padding: 20px;
}

@media (max-width: 959px) {
  .hero-grid-clean,
  .footer-prelude,
  .footer-grid-simple {
    grid-template-columns: 1fr;
  }

  .footer-prelude {
    align-items: flex-start;
  }
}

@media (max-width: 759px) {
  .hero-copy-clean h1 {
    max-width: none;
  }

  .minimal-kpi-strip,
  .registration-plan-grid {
    grid-template-columns: 1fr;
  }

  .micro-proof-row {
    gap: 8px;
  }
}

/* --- Apple glass final theme override --- */
:root {
  --bg: #f2f5fb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-soft: rgba(255, 255, 255, 0.56);
  --text: #0f172a;
  --muted: #5f6b7d;
  --line: rgba(148, 163, 184, 0.22);
  --brand: #111827;
  --brand-strong: #020617;
  --brand-soft: rgba(255, 255, 255, 0.62);
  --gold: #0a84ff;
  --gold-soft: rgba(10, 132, 255, 0.10);
  --blue-soft: rgba(148, 163, 184, 0.10);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.10);
}

body {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.55) 20%, transparent 42%),
    radial-gradient(circle at top right, rgba(191,219,254,0.55) 0%, transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(221,214,254,0.28) 0%, transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 52%, #f7f9fc 100%);
  color: var(--text);
}

body::before {
  display: none;
}

body::after {
  display: none;
}

.topbar,
.topbar-clean {
  background: rgba(255, 255, 255, 0.64) !important;
  border-bottom: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.brand span,
.main-nav a,
.topbar .btn-ghost,
.nav-toggle {
  color: var(--text) !important;
}

.nav-toggle {
  background: rgba(255,255,255,0.52);
  border-color: rgba(148,163,184,0.20);
  backdrop-filter: blur(20px);
}

.main-nav {
  background: rgba(255,255,255,0.78) !important;
  border: 1px solid rgba(255,255,255,0.38) !important;
  box-shadow: 0 20px 50px rgba(15,23,42,0.10) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(15,23,42,0.06) !important;
  color: var(--text) !important;
}

.menu-logout-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  padding: 12px 14px;
  width: 100%;
  text-align: left;
  border-radius: 14px;
}

.menu-logout-btn:hover {
  background: rgba(15,23,42,0.06);
}

.btn {
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(17,24,39,0.92) 0%, rgba(2,6,23,0.98) 100%) !important;
  color: #fff !important;
  border-color: rgba(15,23,42,0.06);
  box-shadow: 0 14px 34px rgba(15,23,42,0.18) !important;
}

.btn-secondary,
.btn-ghost {
  background: rgba(255,255,255,0.56) !important;
  color: var(--text) !important;
  border-color: rgba(255,255,255,0.30) !important;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06) !important;
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-panel-side,
.search-card-clean,
.luxury-shell,
.footer-prelude,
.register-shell,
.hidden-pricing-page .section-shell,
.offer-card,
.agency-card,
.card,
.info-card,
.faq-card,
.table-wrap,
.filter-toolbar,
.modal,
.panel-shell,
.dashboard-card,
.helper-card,
.section-shell,
.auth-form-panel,
.form-section-block,
.search-card,
.hero-card,
.auth-hero-panel,
.detail-hero,
.minimal-kpi-strip div,
.plan-choice-body,
.auth-stat,
.panel-metric,
.dashboard-kpi,
.mini-metric,
.status-banner,
.notice,
.stat-pill,
.data-chip,
.trust-pill,
.micro-proof,
.ghost-note,
.success-box,
.empty-state {
  background: rgba(255, 255, 255, 0.58) !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.hero-panel-side,
.footer-prelude,
.hidden-pricing-page .section-shell,
.register-shell,
.auth-form-panel,
.panel-shell,
.dashboard-card,
.helper-card,
.section-shell,
.hero-card,
.detail-hero {
  border-radius: 30px !important;
}

.offer-card,
.agency-card,
.form-section-block,
.search-card,
.auth-stat,
.panel-metric,
.mini-metric,
.plan-choice-body,
.status-banner,
.notice {
  border-radius: 24px !important;
}

.hero-copy-clean h1,
.section-header-tight h2,
.section-header-tight h1,
.detail-hero h1,
.panel-title-stack h1,
.panel-title-stack h2,
.panel-title-stack h3,
.offer-title,
.agency-top h3,
.footer-prelude-copy h2 {
  letter-spacing: -0.05em;
  font-weight: 700;
}

.hero-copy-clean h1 {
  max-width: 12ch;
}

.eyebrow,
.panel-caption,
.data-chip,
.trust-pill,
.micro-proof,
.badge {
  background: rgba(255,255,255,0.5) !important;
  color: #344256 !important;
  border: 1px solid rgba(255,255,255,0.34) !important;
}

.badge-gold {
  background: rgba(10, 132, 255, 0.12) !important;
  color: #0a5dcd !important;
}

.badge-soft,
.badge-blue {
  background: rgba(15,23,42,0.05) !important;
  color: #334155 !important;
}

.badge-verified {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 122, 255, 0.12) !important;
  color: #0a60d3 !important;
  border: 1px solid rgba(0, 122, 255, 0.18) !important;
}

.badge-verified::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.96) 0 22%, transparent 24%),
    linear-gradient(180deg, #3aa0ff 0%, #0a74ff 100%);
  box-shadow: 0 4px 10px rgba(10, 116, 255, 0.22);
  position: relative;
  clip-path: circle(50% at 50% 50%);
}

.badge-verified::after {
  content: "✓";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 0.62rem;
  font-weight: 900;
  color: #fff;
}

.search-card,
.offer-head,
.detail-hero,
.dashboard-banner,
.auth-hero-panel {
  background: rgba(255,255,255,0.38) !important;
}

.dashboard-banner,
.auth-hero-panel,
.detail-hero {
  color: var(--text) !important;
}

.dashboard-banner h1,
.dashboard-banner h2,
.dashboard-banner h3,
.dashboard-banner .muted,
.auth-hero-panel h1,
.auth-hero-panel h2,
.auth-hero-panel h3,
.auth-hero-panel p,
.auth-hero-panel .muted,
.detail-hero h1,
.detail-hero .muted {
  color: var(--text) !important;
}

.detail-hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.44)) !important;
}

.detail-banner-image {
  opacity: 0.55;
}

.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.62) !important;
  border: 1px solid rgba(255,255,255,0.34) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(10,132,255,0.14) !important;
  border-color: rgba(10,132,255,0.24) !important;
  box-shadow: 0 0 0 4px rgba(10,132,255,0.08) !important;
}

.price,
.plan-price,
.kpi strong,
.panel-metric strong,
.auth-stat strong,
.mini-metric strong {
  color: #0f172a !important;
}

.footer,
.footer-clean {
  background: rgba(17,24,39,0.72) !important;
  border-top: 1px solid rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.footer,
.footer .brand span,
.footer strong,
.footer .muted,
.footer-links a,
.footer-bottom {
  color: rgba(255,255,255,0.88) !important;
}

.mobile-quickbar,
.mobile-quickbar-clean {
  background: rgba(255,255,255,0.62) !important;
  border: 1px solid rgba(255,255,255,0.34) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.offer-title a:hover,
.agency-top h3 a:hover,
.text-link:hover,
.agency-entry-link a:hover {
  opacity: 0.72;
}

@media (max-width: 959px) {
  .hero-grid-clean {
    grid-template-columns: 1fr !important;
  }
}

.auth-hero-panel,
.status-banner {
  display: grid !important;
}

.dashboard-banner {
  display: grid !important;
}

.utility-bar {
  position: relative;
  z-index: 40;
  padding: 8px 0 0;
}

.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.44);
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.utility-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.utility-bar-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.utility-bar-links a,
.utility-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0;
  text-decoration: none;
}

.utility-bar-links a:hover,
.utility-link-button:hover {
  opacity: 0.62;
}

.brand-mark,
.agency-mini-logo,
.detail-logo,
.dashboard-media-thumb,
.dashboard-banner-thumb,
.hero-panel-side,
.search-card-clean,
.offer-card,
.agency-card,
.filter-toolbar,
.section-shell,
.panel-shell,
.dashboard-card,
.helper-card,
.auth-form-panel,
.form-section-block,
.detail-hero,
.footer-prelude,
.register-shell,
.hidden-pricing-page .section-shell,
.auth-stat,
.panel-metric,
.mini-metric,
.success-box,
.empty-state,
.status-banner,
.notice,
.stat-pill,
.data-chip,
.trust-pill,
.micro-proof,
.ghost-note {
  border-color: rgba(255,255,255,0.42) !important;
}

.brand-mark,
.agency-mini-logo,
.detail-logo,
.dashboard-media-thumb,
.dashboard-banner-thumb {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.hero-panel-side,
.search-card-clean,
.offer-card,
.agency-card,
.filter-toolbar,
.section-shell,
.panel-shell,
.dashboard-card,
.helper-card,
.auth-form-panel,
.form-section-block,
.detail-hero,
.footer-prelude,
.register-shell,
.hidden-pricing-page .section-shell,
.auth-stat,
.panel-metric,
.mini-metric {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08) !important;
}

.offer-card:hover,
.agency-card:hover,
.panel-shell:hover,
.dashboard-card:hover,
.helper-card:hover,
.section-shell:hover {
  transform: translateY(-2px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.10) !important;
}

.topbar .brand-mark {
  background: rgba(255,255,255,0.82);
}

.main-nav a,
.nav-actions a,
.nav-actions button,
.footer-links a,
.offer-title a,
.agency-top h3 a,
.text-link,
.agency-entry-link a {
  transition: opacity 0.18s ease;
}

.main-nav a:hover,
.nav-actions a:hover,
.nav-actions button:hover,
.footer-links a:hover {
  opacity: 0.7;
}

@media (max-width: 759px) {
  .utility-bar-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* --- Booking-style Apple auth/workspace refinement --- */
.apple-auth-page,
.workspace-page {
  padding-bottom: 48px;
}

.apple-auth-shell,
.apple-register-shell,
.workspace-shell {
  display: grid;
  gap: 22px;
}

.glass-panel-light,
.glass-panel-dark,
.workspace-card,
.workspace-hero,
.booking-preview-card {
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(255,255,255,0.36);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.glass-panel-light,
.glass-panel-dark,
.workspace-card,
.workspace-hero {
  border-radius: 32px;
  padding: 24px;
}

.glass-panel-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.44) 0%, rgba(241,245,249,0.34) 100%);
}

.apple-auth-copy {
  display: grid;
  gap: 14px;
}

.apple-auth-copy h1,
.apple-auth-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.booking-preview-card {
  border-radius: 28px;
  overflow: hidden;
}

.booking-preview-card-soft {
  background: rgba(255,255,255,0.46);
}

.booking-preview-head {
  display: flex;
  gap: 8px;
  padding: 14px 18px 0;
}

.booking-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,0.16);
}

.booking-preview-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.booking-preview-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-preview-grid.one-col {
  grid-template-columns: 1fr;
}

.booking-preview-stat {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(255,255,255,0.34);
}

.booking-preview-stat strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.booking-preview-stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.apple-form-panel {
  border-radius: 32px;
  padding: 24px;
}

.workspace-hero {
  display: grid;
  gap: 18px;
}

.workspace-hero-copy {
  display: grid;
  gap: 12px;
}

.workspace-hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.workspace-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.workspace-stat {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(255,255,255,0.34);
}

.workspace-stat strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.workspace-stat span {
  font-size: 0.86rem;
  color: var(--muted);
}

.workspace-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.workspace-column-main,
.workspace-column-side {
  display: grid;
  gap: 22px;
}

.register-main-panel,
.register-side-panel {
  padding: 24px;
  border-radius: 32px;
}

.auth-footer-row-column {
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .apple-auth-shell {
    grid-template-columns: 1fr 0.94fr;
    align-items: stretch;
  }

  .apple-register-shell {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: start;
  }
}

@media (max-width: 899px) {
  .workspace-grid,
  .workspace-hero-stats,
  .booking-preview-grid {
    grid-template-columns: 1fr;
  }
}
