:root {
  --font: "Plus Jakarta Sans", "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  --display: "Plus Jakarta Sans", "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  --bg: #070817;
  --bg-soft: #101226;
  --surface: rgba(255, 255, 255, .075);
  --surface-strong: rgba(255, 255, 255, .12);
  --text: #f7f8ff;
  --heading: #ffffff;
  --muted: #b9c2d9;
  --line: rgba(255, 255, 255, .14);
  --violet: #7c16ff;
  --electric: #3527ff;
  --magenta: #f111a7;
  --gold: #ffb300;
  --cyan: #3f8cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .32);
  --radius: 8px;
  --container: min(1180px, calc(100% - 36px));
}

:root[data-theme="light"] {
  --bg: #f7f8ff;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, .82);
  --surface-strong: rgba(255, 255, 255, .95);
  --text: #11152b;
  --heading: #070817;
  --muted: #5d6478;
  --line: rgba(17, 21, 43, .12);
  --shadow: 0 24px 70px rgba(33, 28, 84, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 7% 7%, rgba(255, 179, 0, .16), transparent 28rem),
    radial-gradient(circle at 86% 0%, rgba(124, 22, 255, .30), transparent 34rem),
    linear-gradient(135deg, var(--bg) 0%, #090b1d 52%, #03040c 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}
:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 5% 8%, rgba(255, 179, 0, .18), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(124, 22, 255, .16), transparent 32rem),
    linear-gradient(135deg, #fbfcff 0%, #f1f4ff 54%, #ffffff 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .45s ease, visibility .45s ease;
}
.loader img { width: 96px; animation: pulse 1.3s ease infinite; }
.loaded .loader { opacity: 0; visibility: hidden; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: var(--container);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg-soft) 76%, transparent);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span { color: var(--gold); font-size: 1.03rem; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 20px; color: var(--text); font-size: .93rem; }
.site-nav a { opacity: .82; transition: opacity .22s, color .22s, transform .22s; }
.site-nav a:hover { opacity: 1; color: var(--gold); transform: translateY(-1px); }
.nav-cta { padding: 11px 15px; border-radius: 7px; background: linear-gradient(135deg, var(--gold), #ff6b2d, var(--magenta)); color: #070817; font-weight: 800; opacity: 1 !important; }
.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; }
.nav-toggle span { display: block; height: 2px; margin: 7px; background: var(--heading); }

.theme-toggle {
  width: 46px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,179,0,.2), rgba(124,22,255,.2));
  padding: 3px;
  cursor: pointer;
}
.theme-toggle span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(255,179,0,.45);
  transition: transform .25s ease, background .25s ease;
}
:root[data-theme="light"] .theme-toggle span { transform: translateX(17px); background: var(--electric); }

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
  padding: 142px max(28px, calc((100vw - 1180px) / 2)) 74px;
  position: relative;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-motion span {
  position: absolute;
  width: 30vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(58px);
  opacity: .26;
  animation: drift 14s ease-in-out infinite alternate;
  z-index: -1;
}
.hero-motion span:nth-child(1) { background: var(--violet); top: 10%; left: 8%; }
.hero-motion span:nth-child(2) { background: var(--magenta); bottom: 10%; right: 19%; animation-delay: -4s; }
.hero-motion span:nth-child(3) { background: var(--gold); width: 19vmax; top: 34%; right: 2%; animation-delay: -8s; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--heading); letter-spacing: 0; }
h1 {
  font-family: var(--display);
  font-size: clamp(2.85rem, 5.4vw, 5.85rem);
  line-height: 1.01;
  max-width: 910px;
  margin-bottom: 24px;
  font-weight: 800;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 3.65rem);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 780;
}
h3 { font-family: var(--display); font-size: 1.18rem; line-height: 1.3; font-weight: 760; }
.hero-copy p:not(.eyebrow), .page-hero p, .split-section p, .site-footer p, .admin-head p, .login-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 680px;
}
.hero-actions, .band-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 7px;
  border: 1px solid var(--line);
  color: var(--heading);
  background: var(--surface);
  font-weight: 780;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(124, 22, 255, .22); }
.btn.primary { border: 0; color: #080817; background: linear-gradient(135deg, var(--gold), #ff702f 38%, var(--magenta) 72%, var(--violet)); }
.btn.secondary { background: linear-gradient(135deg, rgba(63, 140, 255, .20), rgba(124, 22, 255, .20)); }
.btn.ghost { background: var(--surface); }

.hero-logo { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-logo img { width: min(390px, 82vw); filter: drop-shadow(0 30px 64px rgba(88, 60, 255, .44)); animation: float 5s ease-in-out infinite; }
.orbit { position: absolute; width: 78%; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; animation: rotate 20s linear infinite; }
.orbit::after { content: ""; position: absolute; top: 10%; left: 14%; width: 13px; aspect-ratio: 1; border-radius: 50%; background: var(--gold); box-shadow: 0 0 26px var(--gold); }

.metrics, .section, .split-section, .testimonials, .blog-grid, .form-shell, .conversion-band, .page-hero, .quote-experience, .partners-section, .article-body { width: var(--container); margin: 0 auto; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 22px 0 70px; }
.metrics div, .service-card, .panel, .testimonials article, .post-card, .form-shell, .conversion-band, .admin-grid article, .admin-stats article, .table-shell, .login-panel, .quote-aside, .partner-card, .article-body {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.metrics div { padding: 22px; }
.metrics strong { display: block; font-size: clamp(2rem, 4.2vw, 3.9rem); color: var(--gold); line-height: 1; }
.metrics span { color: var(--muted); font-size: .95rem; }
.section { padding: 76px 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.service-card { padding: 26px; min-height: 250px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(255, 179, 0, .46); background: linear-gradient(145deg, var(--surface-strong), rgba(124,22,255,.08)); }
.service-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--magenta), var(--electric)); color: #fff; font-weight: 800; margin-bottom: 20px; }
.service-card p, .post-card p { color: var(--muted); line-height: 1.65; }
.service-card a, .post-card a { color: var(--gold); font-weight: 780; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 82px 0; }
.panel { padding: 28px; }
.timeline { display: grid; gap: 14px; }
.timeline span { padding: 20px; border-left: 3px solid var(--gold); background: var(--surface); border-radius: 0 8px 8px 0; color: var(--heading); }
.testimonials, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 60px 0; }
.testimonials article, .post-card { padding: 26px; }
.page-hero { padding: 160px 0 66px; }

.premium-form { display: grid; gap: 17px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
label { display: grid; gap: 8px; color: var(--text); font-weight: 760; font-size: .95rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: color-mix(in srgb, var(--bg-soft) 76%, transparent);
  color: var(--text);
  padding: 13px 14px;
  outline: 0;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255,179,0,.12); }
.form-shell { padding: 28px; margin-bottom: 70px; }
.quote-experience {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 76px;
}
.quote-aside {
  position: sticky;
  top: 110px;
  padding: 30px;
  overflow: hidden;
}
.quote-aside::after {
  content: "";
  position: absolute;
  width: 170px;
  aspect-ratio: 1;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,0,.32), transparent 66%);
}
.quote-aside h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.quote-steps { display: grid; gap: 12px; margin-top: 24px; }
.quote-steps span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--heading);
  font-weight: 760;
}
.file-drop {
  border: 1px dashed color-mix(in srgb, var(--gold) 50%, var(--line));
  border-radius: 8px;
  padding: 16px;
  background: rgba(255,179,0,.06);
}
.file-drop span { color: var(--muted); font-weight: 500; font-size: .92rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.flash { padding: 13px 15px; border-radius: 7px; background: rgba(255,179,0,.15); color: var(--gold); margin-bottom: 18px; }
.hp { display: none; }

.conversion-band { margin-top: 80px; padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-footer { width: var(--container); margin: 40px auto 0; padding: 42px 0 60px; display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 24px; color: var(--muted); }
.site-footer img { width: 68px; margin-bottom: 14px; }
.site-footer div { display: grid; align-content: start; gap: 10px; }
.site-footer strong { color: var(--heading); }

.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.partners-section { padding: 24px 0 82px; }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner-card {
  min-height: 150px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  transition: transform .22s ease, border-color .22s ease;
}
.partner-card:hover { transform: translateY(-5px); border-color: rgba(255,179,0,.45); }
.partner-card strong { color: var(--heading); font-size: 1.25rem; }
.partner-card span { color: var(--muted); line-height: 1.5; }
.partner-logo {
  width: 120px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.86);
}
.partner-mark,
.logo-placeholder {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--magenta), var(--electric));
}

.article-page { padding-bottom: 72px; }
.article-hero { padding-bottom: 38px; }
.article-body {
  max-width: 880px;
  padding: 34px;
  color: var(--text);
}
.article-body > p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 22px;
}
.article-cta {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.article-cta h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 0; }

.live-chat { position: fixed; right: 20px; bottom: 20px; z-index: 30; }
.chat-fab { border: 0; border-radius: 999px; padding: 15px 19px; color: #080817; font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--magenta)); box-shadow: 0 20px 44px rgba(0,0,0,.3); cursor: pointer; }
.chat-box { position: absolute; right: 0; bottom: 64px; width: min(340px, calc(100vw - 32px)); display: none; gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: color-mix(in srgb, var(--bg-soft) 94%, transparent); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.live-chat.open .chat-box { display: grid; animation: rise .25s ease; }
.whatsapp { color: var(--gold); text-align: center; font-weight: 780; }

.admin-body { background: linear-gradient(135deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 76%, var(--violet)) 100%); }
.admin-body.is-login { display: grid; place-items: center; padding: 32px 16px; min-height: 100vh; }
.admin-body.is-authenticated { min-height: 100vh; display: grid; grid-template-columns: 280px 1fr; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
  background: color-mix(in srgb, var(--bg-soft) 88%, transparent);
  border-right: 1px solid var(--line);
  box-shadow: 18px 0 60px rgba(0,0,0,.14);
}
.admin-brand { display: flex; align-items: center; gap: 12px; padding: 10px 8px 18px; border-bottom: 1px solid var(--line); color: var(--gold); font-weight: 800; }
.admin-brand img { width: 54px; }
.admin-sidebar nav { display: grid; align-content: start; gap: 10px; }
.admin-sidebar a, .admin-sidebar button {
  width: 100%;
  text-align: left;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  background: var(--surface);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.admin-sidebar a:hover, .admin-sidebar button:hover { transform: translateX(3px); border-color: rgba(255,179,0,.35); background: var(--surface-strong); }
.admin-theme { margin-top: auto; }
.login-theme { position: fixed; top: 22px; right: 22px; z-index: 10; background: var(--surface-strong); }
.admin-main { padding: 38px; width: min(1280px, 100%); }
.admin-head { margin-bottom: 24px; display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.admin-head h1 { font-size: clamp(2.1rem, 3.8vw, 4.2rem); margin-bottom: 10px; }
.admin-stats, .admin-grid { display: grid; gap: 16px; margin-bottom: 20px; }
.admin-stats { grid-template-columns: repeat(4, 1fr); }
.admin-grid { grid-template-columns: repeat(2, 1fr); }
.admin-stats article, .admin-grid article { padding: 24px; }
.admin-stats strong { color: var(--gold); font-size: 2.25rem; display: block; line-height: 1; margin-bottom: 8px; }
.admin-stats span { color: var(--muted); text-transform: capitalize; }
.admin-grid p { color: var(--muted); line-height: 1.6; }

.login-panel {
  width: min(470px, calc(100% - 24px));
  margin: 0 auto;
  padding: 34px;
}
.login-logo { width: 96px; height: 96px; display: grid; place-items: center; border-radius: 8px; margin-bottom: 24px; background: rgba(255,255,255,.08); border: 1px solid var(--line); }
.login-logo img { width: 74px; }
.login-panel h1 { font-size: clamp(2rem, 7vw, 3.15rem); line-height: 1.05; margin-bottom: 12px; }
.login-intro { margin-bottom: 24px; }
.login-link {
  color: var(--gold);
  font-weight: 700;
  text-align: center;
}
.password-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-soft) 76%, transparent);
}
.password-field input {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.password-field input:focus {
  box-shadow: none;
}
.password-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,179,0,.12);
}
.password-field button {
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0 14px;
  color: var(--gold);
  background: var(--surface);
  font-weight: 700;
  cursor: pointer;
}
.password-policy {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
  margin: -4px 0 0;
}
.known-customer {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255,179,0,.25);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,179,0,.12), rgba(124,22,255,.08));
}
.known-customer strong {
  color: var(--heading);
  font-size: 1.05rem;
}
.known-customer span {
  color: var(--muted);
  line-height: 1.4;
  word-break: break-word;
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; color: var(--text); }
th { color: var(--heading); font-size: .9rem; }
.table-shell { padding: 16px; overflow-x: auto; }
.table-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.table-actions form { margin: 0; }
.admin-logo-thumb {
  width: 74px;
  height: 42px;
  object-fit: contain;
  padding: 5px;
  border-radius: 6px;
  background: rgba(255,255,255,.9);
}
.admin-form-shell { max-width: 900px; margin-left: 0; }
.current-logo {
  display: inline-grid;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}
.current-logo img {
  width: 150px;
  height: 76px;
  object-fit: contain;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
}
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-row input {
  width: auto;
}

.request-detail-grid,
.client-request-grid {
  width: var(--container);
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: start;
}
.request-message {
  color: var(--text);
  line-height: 1.75;
  font-size: 1.04rem;
}
.request-meta {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
}
.muted { color: var(--muted); line-height: 1.65; }
.conversation-thread {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.message-bubble {
  max-width: 88%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.message-bubble.admin {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(255,179,0,.16), rgba(241,17,167,.10));
}
.message-bubble.client {
  margin-right: auto;
}
.message-bubble p {
  margin: 8px 0;
  color: var(--text);
  line-height: 1.55;
}
.message-bubble small { color: var(--muted); }
.account-shell { max-width: 900px; }
.client-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 152px 0 34px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: end;
}
.client-hero h1 {
  max-width: 820px;
}
.client-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}
.client-hero-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 10px;
  justify-items: start;
}
.client-hero-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}
.client-hero-card strong {
  color: var(--heading);
  font-size: 1.15rem;
}
.client-hero-card span {
  color: var(--muted);
  word-break: break-word;
}
.client-dashboard {
  width: var(--container);
  margin: 0 auto 76px;
}
.client-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.client-stat-grid article,
.client-command-bar,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.client-stat-grid article {
  padding: 22px;
}
.client-stat-grid strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 8px;
}
.client-stat-grid span {
  color: var(--muted);
}
.client-command-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px;
  margin-bottom: 18px;
}
.client-command-bar h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  margin-bottom: 8px;
}
.client-command-bar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.request-card-list {
  display: grid;
  gap: 16px;
}
.request-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.request-card h2 { font-size: clamp(1.35rem, 2.5vw, 2.2rem); margin-bottom: 8px; }
.request-card p { color: var(--muted); line-height: 1.6; margin-bottom: 0; }
.request-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}
.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,179,0,.14);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.empty-state {
  min-height: 310px;
  padding: clamp(26px, 5vw, 48px);
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.empty-state::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,22,255,.22), transparent 65%);
}
.empty-state h2 {
  margin: 0;
}
.empty-state p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 50% { transform: scale(1.08); filter: drop-shadow(0 0 24px var(--violet)); } }
@keyframes float { 50% { transform: translateY(-16px); } }
@keyframes drift { to { transform: translate3d(8%, -6%, 0) scale(1.08); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto auto auto; }
  .site-nav { position: absolute; top: calc(100% + 10px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: color-mix(in srgb, var(--bg-soft) 95%, transparent); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; justify-self: end; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero { padding-top: 128px; min-height: auto; }
  .hero-logo { min-height: 330px; }
  .metrics, .service-grid, .testimonials, .blog-grid, .admin-stats, .admin-grid, .site-footer, .partners-grid, .quote-experience { grid-template-columns: 1fr 1fr; }
  .quote-aside { position: static; }
  .admin-body.is-authenticated { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; grid-template-rows: auto; }
  .admin-sidebar nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 20px); top: 10px; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.55rem); }
  h2 { font-size: clamp(1.75rem, 9vw, 2.55rem); }
  .hero-actions, .band-actions, .conversion-band, .admin-head { flex-direction: column; align-items: stretch; }
  .metrics, .service-grid, .testimonials, .blog-grid, .form-grid, .admin-stats, .admin-grid, .site-footer, .admin-sidebar nav, .partners-grid, .quote-experience { grid-template-columns: 1fr; }
  .admin-main { padding: 22px 16px; }
  .page-hero { padding-top: 138px; }
  .login-panel { padding: 24px; }
}

/* Quote page hardening: keep the form contained even with aggressive hosting/browser cache quirks. */
.quote-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}
.quote-intro-card,
.quote-form-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.quote-intro-card {
  position: sticky;
  top: 110px;
  padding: clamp(22px, 3vw, 34px);
}
.quote-intro-card h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.25vw, 3.15rem);
  line-height: 1.08;
}
.quote-intro-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.quote-step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
.quote-step-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--heading);
  font-weight: 700;
}
.quote-form-card {
  padding: clamp(20px, 3vw, 32px);
  margin: 0;
}
.quote-form-card .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}
.quote-form-card input,
.quote-form-card select,
.quote-form-card textarea {
  min-width: 0;
}

@media (max-width: 980px) {
  .quote-layout {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 28px));
  }
  .quote-intro-card {
    position: static;
  }
  .quote-intro-card h2 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }
  .client-hero {
    grid-template-columns: 1fr;
    padding-top: 132px;
  }
  .client-stat-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .request-detail-grid,
  .client-request-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .quote-layout {
    width: calc(100% - 22px);
    gap: 14px;
    margin-bottom: 56px;
  }
  .quote-form-card .form-grid {
    grid-template-columns: 1fr;
  }
  .quote-intro-card,
  .quote-form-card {
    padding: 18px;
  }
  .quote-step-list span {
    padding: 12px 13px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .request-card,
  .client-actions,
  .client-command-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .client-stat-grid {
    grid-template-columns: 1fr;
  }
  .message-bubble {
    max-width: 100%;
  }
}
