:root {
  --blue: #5b7fe5;
  --blue-dark: #2f3192;
  --orange: #ff9200;
  --green: #1fa67a;
  --ink: #1f2430;
  --muted: #687386;
  --line: #dde4f0;
  --surface: #f5f7fb;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(31, 36, 48, 0.12);
  --shadow-strong: 0 24px 70px rgba(31, 36, 48, 0.18);
  --shadow-blue: 0 24px 60px rgba(47, 49, 146, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.96) 0, rgba(255, 255, 255, 1) 360px),
    var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

main {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(221, 228, 240, 0.8);
  box-shadow: 0 12px 34px rgba(31, 36, 48, 0.06);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.18s ease, background 0.18s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(31, 36, 48, 0.1);
}

.brand img {
  width: min(220px, 48vw);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--blue-dark);
}

.lang-button,
.nav-toggle {
  border: 0;
  cursor: pointer;
}

.lang-button {
  min-width: 42px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(47, 49, 146, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 74px);
  min-height: calc(100vh - 82px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(90deg, rgba(47, 49, 146, 0.07), rgba(255, 146, 0, 0.08));
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.admin-main h1,
.message-panel h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.compact-actions {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ffad33);
  box-shadow: 0 12px 26px rgba(255, 146, 0, 0.25);
}

.button-ghost {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(31, 36, 48, 0.06);
}

.button-secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 14px 28px rgba(47, 49, 146, 0.2);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  background:
    linear-gradient(135deg, rgba(91, 127, 229, 0.18), rgba(255, 146, 0, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
    var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}

.hero-visual img {
  width: min(390px, 72%);
  filter: drop-shadow(0 28px 42px rgba(47, 49, 146, 0.16));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip div {
  min-height: 116px;
  padding: 24px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: clamp(66px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-soft {
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.6), rgba(255, 255, 255, 1));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(31, 36, 48, 0.08);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover,
.service-card.is-service-selected {
  transform: translateY(-5px);
  border-color: rgba(91, 127, 229, 0.45);
  box-shadow: var(--shadow);
}

.service-card.is-service-selected {
  border-color: rgba(255, 146, 0, 0.65);
}

.service-card-wide {
  grid-column: span 2;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: auto;
  padding: 0 14px;
  color: var(--blue-dark);
  background: rgba(91, 127, 229, 0.1);
  border: 1px solid rgba(91, 127, 229, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.service-action:hover,
.service-card.is-service-selected .service-action {
  color: var(--white);
  background: var(--blue-dark);
}

.service-action:focus-visible,
.help-button:focus-visible {
  outline: 3px solid rgba(255, 146, 0, 0.3);
  outline-offset: 2px;
}

.process-band {
  padding: clamp(66px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 49, 146, 0.96), rgba(91, 127, 229, 0.95)),
    var(--blue-dark);
}

.process-band .eyebrow {
  color: var(--orange);
}

.process-band h2,
.process-band h3 {
  color: var(--white);
}

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

.process-step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--blue-dark);
  background: var(--orange);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-step p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card p,
.request-intro p,
.mission-grid p {
  color: var(--muted);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(66px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
}

.about-band .eyebrow {
  color: var(--orange);
}

.about-band h2,
.about-band h3 {
  color: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mission-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.mission-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.request-intro {
  position: sticky;
  top: 116px;
}

.request-form,
.status-form,
.admin-card,
.message-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.request-form {
  display: grid;
  gap: 13px;
  padding: clamp(18px, 3vw, 28px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.optional-text {
  color: var(--muted);
  font-weight: 700;
}

.label-with-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.help-button {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.field-help {
  display: none;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.field-help.is-visible {
  display: block;
}

.field-pulse {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 4px rgba(255, 146, 0, 0.18), 0 12px 26px rgba(255, 146, 0, 0.14) !important;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(91, 127, 229, 0.2);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(91, 127, 229, 0.1);
}

.check-line {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.check-line input {
  min-height: 18px;
  margin-top: 3px;
}

.form-submit {
  width: 100%;
}

.status-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(44px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 146, 0, 0.1), rgba(91, 127, 229, 0.12)),
    var(--surface);
}

.status-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  box-shadow: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: stretch;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.faq-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(31, 36, 48, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.faq-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.faq-grid p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--blue-dark);
}

.contact-buttons {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-button {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-button:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 127, 229, 0.45);
  box-shadow: var(--shadow);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
}

.contact-button:first-child .contact-icon,
.floating-whatsapp {
  background: var(--green);
}

.contact-icon svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-button strong,
.contact-button small {
  display: block;
}

.contact-button strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.contact-button small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(31, 166, 122, 0.3);
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(31, 166, 122, 0.38);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 180px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--blue-dark);
}

.center-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
  background: var(--surface);
}

.login-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(32, 35, 111, 0.98) 0%, rgba(47, 49, 146, 0.96) 58%, rgba(255, 146, 0, 0.9) 100%);
  overflow: auto;
  overflow-x: hidden;
}

.login-page::before,
.login-page::after {
  content: "";
  position: fixed;
  width: clamp(220px, 25vw, 360px);
  height: clamp(220px, 25vw, 360px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(18deg);
}

.login-page::before {
  left: 24px;
  top: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.login-page::after {
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.login-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.message-panel {
  width: min(620px, 100%);
  padding: clamp(24px, 5vw, 44px);
  text-align: center;
}

.admin-login-card.message-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  width: min(880px, 100%);
  min-height: 468px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  text-align: left;
}

.login-brand-panel,
.login-form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 42px);
}

.login-brand-panel {
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(32, 35, 111, 0.98), rgba(47, 49, 146, 0.96) 62%, rgba(91, 127, 229, 0.9));
}

.login-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--orange);
}

.admin-login-card .login-brand-panel img {
  width: min(190px, 100%);
  margin: 0 0 34px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.login-brand-panel h1 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.login-brand-panel h1 span {
  display: block;
  color: var(--orange);
}

.login-brand-panel p:not(.eyebrow) {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.login-form-panel {
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.88), rgba(255, 255, 255, 1));
}

.login-form-panel h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
}

.login-form-panel > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 650;
}

.login-card .request-form {
  gap: 16px;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.login-card input {
  min-height: 50px;
  background: #f8faff;
  border-color: #d7e0ef;
}

.login-card .button-primary {
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
  box-shadow: 0 18px 34px rgba(47, 49, 146, 0.24);
}

.login-back {
  display: inline-flex;
  align-self: center;
  margin-top: 20px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.login-back:hover {
  color: var(--orange);
}

.message-panel-wide {
  width: min(820px, 100%);
  text-align: left;
}

.message-panel img {
  width: 220px;
  margin: 0 auto 24px;
}

.message-panel-wide img {
  margin-left: 0;
}

.tracking-code {
  display: inline-flex;
  margin: 10px 0 18px;
  padding: 10px 14px;
  color: var(--blue-dark);
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 1.3rem;
}

.tracking-help {
  display: grid;
  justify-items: center;
}

.tracking-help p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}

.tracking-help .field-help {
  max-width: 430px;
  margin: -6px auto 18px;
  text-align: center;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.timeline article {
  padding: 16px;
  background: var(--surface);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.timeline span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.attachment-link {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 10px;
  color: var(--blue-dark);
  background: rgba(91, 127, 229, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
}

.status-payment-box,
.client-note {
  margin: 22px 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.status-payment-box p,
.client-note p {
  margin: 0 0 10px;
}

.status-payment-box .button {
  margin-top: 8px;
}

.admin-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(47, 49, 146, 0.08), rgba(245, 247, 251, 1) 320px),
    var(--surface);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 42px);
  color: var(--white);
  background: linear-gradient(135deg, #20236f 0%, var(--blue-dark) 48%, #466bdc 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(47, 49, 146, 0.22);
}

.admin-topbar > a:first-child {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.admin-topbar img {
  width: 170px;
}

.admin-topbar .hero-actions {
  margin-top: 0;
}

.admin-topbar .button {
  min-height: 40px;
  padding: 0 14px;
}

.admin-topbar .button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.admin-topbar .button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.admin-topbar .button-secondary {
  color: var(--white);
  background: var(--orange);
  box-shadow: none;
}

.admin-main {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
}

.admin-main > .eyebrow {
  color: var(--blue-dark);
}

.admin-main > h1 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.metric {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(31, 36, 48, 0.08);
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--orange);
}

.metric span,
.metric small {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.metric small {
  margin-top: 4px;
  font-weight: 700;
}

.metric strong {
  display: block;
  color: var(--blue-dark);
  font-size: 2.25rem;
  line-height: 1.05;
}

.admin-shell .status-form {
  align-items: end;
  grid-template-columns: minmax(240px, 1.4fr) minmax(190px, 0.8fr) auto auto;
  margin: 24px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(31, 36, 48, 0.08);
}

.admin-shell .status-form label {
  min-width: 0;
}

.admin-shell .status-form .button {
  min-height: 48px;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(31, 36, 48, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  background: #f8faff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

tbody tr {
  transition: background 0.16s ease;
}

tbody tr:hover {
  background: rgba(91, 127, 229, 0.06);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(91, 127, 229, 0.12);
  border: 1px solid rgba(91, 127, 229, 0.14);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-card {
  max-width: 980px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(31, 36, 48, 0.09);
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.admin-shell .section {
  padding-top: 28px;
  padding-bottom: 0;
}

.admin-shell .split {
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
}

.admin-shell .request-form {
  gap: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(31, 36, 48, 0.09);
}

.admin-shell .request-form textarea {
  min-height: 116px;
}

.admin-shell .button {
  min-height: 42px;
}

.empty-state {
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.flash {
  margin-bottom: 16px;
  padding: 12px 14px;
  background: rgba(31, 166, 122, 0.12);
  border: 1px solid rgba(31, 166, 122, 0.25);
  border-radius: var(--radius);
  color: #12684d;
  font-weight: 800;
}

.flash-error {
  background: rgba(204, 54, 54, 0.1);
  border-color: rgba(204, 54, 54, 0.24);
  color: #8a2525;
}

.legal-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal-card {
  display: grid;
  gap: 14px;
  margin: 32px 0;
}

.legal-card article {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-card span {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  background: var(--orange);
  border-radius: 50%;
}

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

.quote-body {
  background: var(--surface);
  padding: 28px;
}

.quote-sheet {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-header,
.quote-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.quote-header {
  padding-bottom: 28px;
  border-bottom: 3px solid var(--blue-dark);
}

.quote-header img {
  width: 250px;
}

.quote-header h1,
.quote-grid h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.quote-grid,
.quote-service,
.quote-total,
.quote-footer {
  margin-top: 28px;
}

.quote-service {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
}

.quote-total span {
  font-weight: 800;
}

.quote-total strong {
  font-size: clamp(1.6rem, 4vw, 3rem);
}

.quote-footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.calendar-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.calendar-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(31, 36, 48, 0.08);
}

.calendar-date {
  display: grid;
  place-items: center;
  min-height: 86px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  text-align: center;
}

.calendar-date strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.calendar-date span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .admin-login-card.message-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .login-brand-panel {
    min-height: 260px;
  }

  .admin-login-card .login-brand-panel img {
    width: min(180px, 72vw);
    margin-bottom: 24px;
  }
}

@media (min-width: 1440px) {
  .hero,
  .section,
  .about-band,
  .process-band,
  .status-band,
  .contact-section,
  .site-footer,
  .site-header {
    padding-left: max(72px, calc((100vw - 1320px) / 2));
    padding-right: max(72px, calc((100vw - 1320px) / 2));
  }

  .trust-strip {
    margin-left: max(72px, calc((100vw - 1320px) / 2));
    margin-right: max(72px, calc((100vw - 1320px) / 2));
  }
}

@media (max-width: 1020px) {
  .hero,
  .about-band,
  .split,
  .status-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .request-intro {
    position: static;
  }

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

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

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

  .status-form,
  .admin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-shell .status-form,
  .admin-shell .split {
    grid-template-columns: 1fr;
  }

  .admin-topbar .hero-actions {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand img {
    width: min(184px, 58vw);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav-static {
    position: static;
    display: flex;
    box-shadow: none;
  }

  .hero-visual {
    min-height: 260px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .service-grid,
  .faq-grid,
  .mission-grid,
  .form-row,
  .status-form,
  .admin-grid,
  .admin-detail-grid,
  .quote-header,
  .quote-grid,
  .calendar-item {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: auto;
  }

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

  .hero-actions,
  .admin-topbar .hero-actions {
    gap: 10px;
  }

  .hero-actions .button,
  .admin-topbar .button,
  .status-form .button {
    width: 100%;
  }

  .trust-strip {
    margin-left: 16px;
    margin-right: 16px;
  }

  .admin-topbar {
    position: static;
    align-items: stretch;
  }

  .admin-topbar > a:first-child {
    justify-content: center;
  }

  .admin-main {
    padding: 22px 16px 34px;
  }

  .admin-main > h1 {
    font-size: 2rem;
  }

  .request-form,
  .status-form,
  .admin-card,
  .message-panel {
    box-shadow: 0 12px 34px rgba(31, 36, 48, 0.1);
  }

  .table-wrap {
    margin-left: -2px;
    margin-right: -2px;
  }

  .calendar-date {
    place-items: start;
    min-height: auto;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .section,
  .about-band,
  .process-band,
  .status-band,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-card,
  .process-step,
  .faq-grid article {
    min-height: auto;
    padding: 20px;
  }

  .hero-visual {
    min-height: 220px;
  }

  .hero-visual img {
    width: min(230px, 68%);
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .message-panel img {
    width: min(200px, 78vw);
  }

  .login-page {
    padding: 16px;
  }

  .login-brand-panel,
  .login-form-panel {
    padding: 24px;
  }

  .login-brand-panel {
    min-height: 280px;
  }

  .login-brand-panel h1,
  .login-form-panel h2 {
    font-size: 2rem;
  }
}

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

}

@media print {
  .no-print,
  .site-header,
  .admin-topbar {
    display: none !important;
  }

  body,
  .quote-body {
    background: var(--white);
    padding: 0;
  }

  .quote-sheet {
    width: 100%;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}
