:root {
  --ink: #101820;
  --muted: #64717f;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --line: #dfe6de;
  --yellow: #f6c343;
  --green: #0f7c72;
  --blue: #2458a6;
  --red: #d65b3d;
  --shadow: 0 18px 44px rgba(16, 24, 32, .1);
  --soft-shadow: 0 10px 28px rgba(16, 24, 32, .08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .035) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 32, .035) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf5 0%, #f4f8f2 48%, #edf5f8 100%);
  background-size: 44px 44px, 44px 44px, auto;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.bg-grid,
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.site-watermark {
  position: fixed;
  right: clamp(18px, 5vw, 72px);
  top: clamp(120px, 18vh, 220px);
  width: min(520px, 56vw);
  opacity: .032;
  pointer-events: none;
  z-index: 0;
}

main,
footer {
  position: relative;
  z-index: 1;
}

.particles span {
  position: absolute;
  left: var(--left);
  bottom: -30px;
  width: 3px;
  height: 34px;
  border-radius: 99px;
  background: linear-gradient(var(--yellow), transparent);
  opacity: .5;
  animation: spark var(--duration) linear var(--delay) infinite;
}

@keyframes spark {
  from { transform: translateY(0) rotate(12deg); opacity: 0; }
  15% { opacity: .65; }
  to { transform: translateY(-105vh) rotate(12deg); opacity: 0; }
}

.site-nav {
  position: fixed;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 24px));
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 24, 32, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.top-info-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 18px;
  border-bottom: 1px solid rgba(16, 24, 32, .08);
  color: #40505b;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 21;
}

.top-static,
.top-rates {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.top-static {
  flex: 0 0 auto;
}

.top-info-bar span {
  color: var(--muted);
  font-weight: 800;
}

.top-info-bar strong {
  color: var(--ink);
  font-weight: 900;
}

.top-info-bar em {
  color: var(--muted);
  font-style: normal;
}

.top-rates span {
  white-space: nowrap;
}

.rate-ticker {
  width: min(440px, 42vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.top-rates {
  width: max-content;
  animation: rates-marquee 22s linear infinite;
}

.top-rates:hover {
  animation-play-state: paused;
}

@keyframes rates-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, .96);
}

.brand,
.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #101820;
  font-weight: 900;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, .1);
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

.brand strong,
.admin-brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small,
.admin-brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  list-style: none;
}

.site-nav li a {
  color: #293643;
  font-size: 13px;
  font-weight: 700;
}

.site-nav li a:hover {
  color: var(--green);
}

.nav-actions,
.hero-actions,
.emergency-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions {
  flex: 0 0 auto;
}

.nav-call,
.nav-whatsapp {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 900;
}

.nav-call {
  color: #fff;
  background: var(--ink);
}

.nav-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-whatsapp {
  color: #0f5132;
  border: 1px solid rgba(32, 191, 99, .28);
  background: #e7f8ef;
}

.nav-whatsapp span,
.whatsapp-link img,
.floating span {
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.nav-whatsapp span {
  width: 24px;
  height: 24px;
}

.nav-whatsapp img,
.whatsapp-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.55);
}

main section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
  scroll-margin-top: 132px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .74fr);
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  padding-top: 150px;
  padding-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #234038;
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.hero h1,
.split-section h2,
.section-head h2,
.emergency h2,
.admin-top h1,
.login-card h1 {
  letter-spacing: 0;
  line-height: .98;
  font-weight: 900;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(40px, 5.8vw, 70px);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero h1 span {
  color: var(--green);
}

.hero p,
.split-section p,
.section-head p,
.emergency p {
  max-width: 740px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.85;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  flex: 0 0 auto;
}

.whatsapp-link img {
  width: 24px;
  height: 24px;
  background: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 24, 32, .15);
}

.primary {
  color: #101820;
  background: linear-gradient(135deg, var(--yellow), #ffe889);
}

.light {
  color: #fff;
  background: var(--green);
}

.ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
}

.hero-panel {
  min-height: 420px;
  position: relative;
  padding: 32px;
  border: 1px solid rgba(16, 24, 32, .09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 15%, rgba(246, 195, 67, .42), transparent 32%),
    linear-gradient(145deg, #11222d, #133f43 62%, #2458a6);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.meter {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  margin: 18px auto 44px;
  border-radius: 50%;
  color: #fff;
  background: conic-gradient(var(--yellow) 0 72%, rgba(255, 255, 255, .12) 72%);
  position: relative;
}

.meter:before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #132935;
}

.meter strong,
.meter small {
  position: relative;
  z-index: 1;
}

.meter strong {
  font-size: 38px;
}

.meter small {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.panel-lines {
  display: grid;
  gap: 12px;
}

.panel-lines i {
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .08));
}

.panel-lines i:nth-child(2) { width: 78%; }
.panel-lines i:nth-child(3) { width: 58%; }
.panel-lines i:nth-child(4) { width: 86%; }

.status-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.status-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .72);
}

.business-card-panel {
  display: grid;
  align-items: center;
  padding: clamp(16px, 2.4vw, 24px);
  background:
    radial-gradient(circle at 20% 15%, rgba(246, 195, 67, .28), transparent 32%),
    linear-gradient(145deg, #102333, #1e5f76 62%, #2458a6);
}

.business-card-panel > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .28);
}

.business-card-panel .status-card {
  position: static;
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(13, 41, 54, .82);
  backdrop-filter: blur(10px);
}

.hero-quote-panel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: stretch;
  gap: 0;
  height: clamp(420px, 46vw, 500px);
  min-height: 0;
  padding: 0;
  color: #fff;
  scroll-margin-top: 132px;
  background:
    radial-gradient(circle at 18% 16%, rgba(246, 195, 67, .42), transparent 32%),
    radial-gradient(circle at 86% 84%, rgba(255, 255, 255, .18), transparent 30%),
    linear-gradient(145deg, #102333 0%, #0f5f67 52%, #2458a6 100%);
}

.hero-quote-panel:before {
  content: "\201C";
  position: absolute;
  right: clamp(12px, 2.6vw, 28px);
  top: -26px;
  color: rgba(255, 255, 255, .1);
  font-size: clamp(132px, 13vw, 196px);
  line-height: 1;
  font-weight: 900;
}

.hero-quote-copy,
.hero-quote-footer,
.hero-quote-image {
  position: relative;
  z-index: 1;
}

.hero-quote-copy {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: clamp(20px, 2.4vw, 26px) clamp(22px, 2.6vw, 30px) 10px;
}

.hero-quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-quote-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  color: #102333;
  background: #ffe889;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
  font-size: 13px;
  font-weight: 900;
}

.hero-quote-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.hero-quote-mark:before {
  content: "\201D";
  color: #ffe889;
  font-size: 42px;
  line-height: .8;
  font-weight: 900;
}

.hero-quote-panel blockquote {
  max-width: 100%;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.15;
  font-weight: 900;
  text-wrap: balance;
}

.hero-quote-footer {
  display: contents;
}

.hero-quote-author {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  min-width: 0;
  padding: 0 clamp(22px, 2.6vw, 30px) 16px;
  border-top: 0;
}

.hero-quote-author span,
.hero-quote-author cite {
  display: block;
}

.hero-quote-author span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-quote-author cite {
  color: rgba(255, 255, 255, .82);
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hero-quote-image {
  grid-column: 1;
  grid-row: 3;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: none;
}

.hero-quote-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stats-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat,
.card,
.feature,
.process-card,
.testimonial,
.contact-info,
.contact-form,
.faq-list details,
footer,
.panel,
.login-card {
  border: 1px solid rgba(16, 24, 32, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--soft-shadow);
}

.stat {
  padding: 22px;
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.credential-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
}

.quote-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.business-card-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.business-card-wide {
  width: min(900px, 100%);
  min-height: auto;
  position: relative;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(16, 24, 32, .09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.business-card-wide > img {
  max-height: 420px;
  justify-self: center;
}

.business-card-wide .status-card {
  align-self: center;
  margin-top: 0;
}

.business-card-wide .status-card b {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
}

.quote-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(16, 24, 32, .08);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(235, 247, 243, .9)),
    linear-gradient(90deg, rgba(246, 195, 67, .18), transparent);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.quote-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.quote-card:before {
  content: "\201C";
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  top: -18px;
  color: rgba(15, 124, 114, .1);
  font-size: clamp(96px, 13vw, 160px);
  line-height: 1;
  font-weight: 900;
}

.quote-card .eyebrow {
  width: max-content;
  margin-bottom: 0;
  background: #fff;
}

.quote-card blockquote {
  max-width: 920px;
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.25;
  font-weight: 900;
}

.quote-card cite {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.quote-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 24, 32, .12);
}

.quote-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.credential-card {
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, .08);
  border-left: 6px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 46px rgba(16, 24, 32, .07);
}

.credential-card strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.credential-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head h2,
.split-section h2,
.emergency h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.section-head p {
  margin-inline: auto;
}

.service-grid,
.feature-grid,
.process-grid,
.testimonial-grid,
.footer-grid,
.tool-grid,
.pdf-grid,
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.market-grid {
  grid-template-columns: .85fr 1.15fr;
}

.card,
.feature,
.process-card,
.testimonial {
  padding: clamp(20px, 2.4vw, 28px);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffe48d;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.card h3,
.feature h3,
.process-card h3,
.contact-info h3,
.contact-form h3,
footer h3 {
  margin-bottom: 13px;
  font-size: 22px;
}

.card p,
.feature p,
.process-card p,
.testimonial p,
.contact-info,
footer p {
  color: var(--muted);
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 36px;
}

.about-card {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, #101820, #0f7c72 58%, #2458a6);
  box-shadow: var(--shadow);
}

.bolt-scene {
  width: 190px;
  height: 190px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 13px;
  margin-bottom: 24px;
  position: relative;
}

.bolt-scene span {
  display: block;
  border-radius: 99px 99px 8px 8px;
  background: linear-gradient(var(--yellow), #fff7bd);
}

.bolt-scene span:nth-child(1) { height: 62%; }
.bolt-scene span:nth-child(2) { height: 96%; }
.bolt-scene span:nth-child(3) { height: 74%; }

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

.process-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}

.emergency {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #101820, #0f7c72 62%, #2458a6);
  box-shadow: var(--shadow);
}

.emergency span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--yellow);
  font-weight: 900;
}

.emergency p {
  color: rgba(255, 255, 255, .76);
}

.stars {
  margin-bottom: 16px;
  color: #e7a72f;
  letter-spacing: 2px;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.reference-media {
  max-width: 760px;
  margin: 0 auto 22px;
  border: 1px solid rgba(16, 24, 32, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 46px rgba(16, 24, 32, .07);
  overflow: hidden;
}

.reference-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  background: #101820;
}

.testimonial strong {
  margin-top: 20px;
}

.testimonial span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  max-width: 860px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.faq-list details {
  padding: 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
}

.contact-info,
.contact-form {
  padding: 30px;
}

.tool-card,
.pdf-card,
.market-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(16, 24, 32, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 46px rgba(16, 24, 32, .07);
}

.tool-card h3,
.pdf-card h3,
.market-card h3 {
  font-size: 22px;
}

.tool-card label span {
  margin-bottom: 6px;
}

.tool-card input,
.tool-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  outline: none;
}

.tool-card output {
  display: block;
  min-height: 64px;
  padding: 14px;
  border-radius: var(--radius);
  color: #123b35;
  background: #e6f5ed;
  line-height: 1.55;
  font-weight: 800;
}

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

.pdf-card span {
  width: max-content;
  padding: 7px 9px;
  border-radius: var(--radius);
  color: #101820;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.pdf-card p,
.market-card p {
  color: var(--muted);
  line-height: 1.65;
}

.market-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
}

.market-card > span {
  display: block;
  color: var(--green);
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 900;
  line-height: 1;
}

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

.rate-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.rate-list span {
  color: var(--muted);
  font-weight: 900;
}

.rate-list strong {
  color: var(--ink);
  font-size: 22px;
}

.contact-info a,
.contact-info span {
  display: block;
  margin-top: 13px;
}

.contact-info a {
  color: var(--green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.login-card input,
.admin-content input,
.admin-content textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  outline: none;
}

.admin-content input[type="checkbox"] {
  width: auto;
  min-height: auto;
  margin-top: 10px;
  accent-color: var(--green);
}

.admin-content input[type="file"] {
  padding: 11px 13px;
  cursor: pointer;
}

.contact-form textarea,
.admin-content textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 36px;
  padding: 30px;
}

.map-wrap {
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}

.copyright {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.digital-credit {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.digital-credit a {
  color: var(--green);
  font-weight: 800;
}

.floating {
  position: fixed;
  right: 14px;
  bottom: 14px;
  display: grid;
  z-index: 25;
}

.floating button {
  width: 54px;
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 0;
  padding: 8px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  color: #101820;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(16, 24, 32, .13);
  text-align: center;
}

.floating span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  color: #101820;
  background: linear-gradient(135deg, var(--yellow), #fff0a8);
}

.floating span svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.floating b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  min-width: 0;
  font-size: 13px;
  line-height: 1.1;
}

.float-chat {
  color: #101820;
}

.chat-widget {
  position: fixed;
  right: 66px;
  bottom: 16px;
  width: min(390px, calc(100vw - 32px));
  height: 520px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 24, 32, .09);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .2s ease;
  z-index: 30;
}

.chat-widget.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--green));
  border-radius: var(--radius) var(--radius) 0 0;
}

.chat-head p {
  margin-top: 4px;
  color: rgba(255, 255, 255, .74);
}

.chat-head button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, .14);
}

.chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
}

.chat-message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: var(--radius);
  line-height: 1.55;
}

.chat-message.bot {
  align-self: flex-start;
  background: #f1f5f2;
}

.chat-message.user {
  align-self: flex-end;
  color: #fff;
  background: var(--green);
}

.chat-form {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
}

.chat-form button {
  width: 48px;
  border: 0;
  border-radius: var(--radius);
  color: #101820;
  background: var(--yellow);
  font-size: 24px;
  cursor: pointer;
}

.admin-body {
  background: #eef4f2;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(430px, 100%);
  display: grid;
  gap: 16px;
  padding: 30px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #40505b;
  font-size: 13px;
  font-weight: 900;
}

.hint {
  color: var(--muted);
  font-size: 13px;
}

.alert {
  padding: 13px 15px;
  border-radius: var(--radius);
  font-weight: 800;
}

.alert.success {
  color: #0f5132;
  background: #dff6e6;
}

.alert.error {
  color: #842029;
  background: #f8d7da;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.admin-sidebar a {
  padding: 12px 13px;
  border-radius: var(--radius);
  color: #33414d;
  font-weight: 800;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: #edf5f1;
  color: var(--green);
}

.admin-content {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.admin-top,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel {
  padding: 24px;
}

.panel-title {
  margin-bottom: 20px;
}

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

.wide {
  grid-column: 1 / -1;
}

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

.row-item {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf8;
}

.row-item .wide {
  grid-column: auto;
}

.upload-preview {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf8;
}

.upload-preview img {
  width: 120px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: #fff;
}

.upload-preview strong,
.upload-preview span {
  display: block;
}

.upload-preview span {
  margin-top: 4px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #40505b;
  font-weight: 800;
}

.inline-check input {
  margin-top: 0;
}

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

.admin-page-card {
  display: grid;
  gap: 8px;
  min-height: 140px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, .08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 46px rgba(16, 24, 32, .07);
}

.admin-page-card strong {
  font-size: 22px;
}

.admin-page-card span {
  color: var(--muted);
  line-height: 1.6;
}

.mini,
.danger {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.mini {
  background: #dff6e6;
  color: #0f5132;
}

.danger {
  color: #842029;
  background: #f8d7da;
}

@media (max-width: 1120px) {
  .site-nav ul {
    display: none;
  }
}

@media (max-width: 980px) {
  .top-info-bar {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-info-bar::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .split-section,
  .contact-grid,
  .emergency,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    min-height: auto;
    padding-top: 150px;
  }

  .service-grid,
  .feature-grid,
  .process-grid,
  .testimonial-grid,
  .credential-section,
  .quote-card,
  .footer-grid,
  .tool-grid,
  .pdf-grid,
  .market-grid,
  .stats-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

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

  .upload-preview {
    grid-template-columns: 1fr;
  }

  .admin-page-grid {
    grid-template-columns: 1fr;
  }

  .business-card-panel,
  .hero-quote-panel {
    max-width: 620px;
    margin: 0 auto;
  }

  .business-card-wide {
    grid-template-columns: 1fr;
  }

  .floating {
    right: 12px;
    bottom: 12px;
  }

  .chat-widget {
    right: 150px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 76px;
  }

  .top-info-bar {
    min-height: 34px;
    gap: 10px;
    padding: 7px 12px;
    font-size: 11px;
  }

  #exchangeUpdated {
    display: none;
  }

  .rate-ticker {
    width: min(160px, 42vw);
  }

  .site-nav {
    top: 36px;
    width: calc(100% - 16px);
    min-height: 62px;
    padding: 8px 10px;
    gap: 10px;
  }

  .brand small,
  .nav-whatsapp {
    font-size: 0;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-call {
    min-height: 42px;
    padding: 0 13px;
    font-size: 14px;
  }

  .nav-whatsapp {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .nav-whatsapp span {
    width: 26px;
    height: 26px;
  }

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

  .site-watermark {
    width: 78vw;
    opacity: .035;
  }

  main section {
    width: min(100% - 24px, 1180px);
    padding: 58px 0;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .hero p,
  .split-section p,
  .section-head p,
  .emergency p {
    margin-top: 18px;
    line-height: 1.7;
  }

  .hero-panel {
    min-height: 0;
    padding: 14px;
  }

  .hero-quote-panel {
    gap: 0;
    height: auto;
    min-height: 430px;
    padding: 0;
  }

  .hero-quote-copy {
    gap: 12px;
    padding: 18px 18px 10px;
  }

  .hero-quote-header {
    gap: 10px;
  }

  .hero-quote-kicker {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero-quote-mark {
    width: 36px;
    height: 36px;
  }

  .hero-quote-mark:before {
    font-size: 36px;
  }

  .hero-quote-panel blockquote {
    max-width: 100%;
    font-size: clamp(19px, 5vw, 25px);
    line-height: 1.18;
  }

  .hero-quote-footer {
    display: contents;
  }

  .hero-quote-author {
    padding: 0 18px 14px;
  }

  .hero-quote-author span {
    font-size: 9px;
  }

  .hero-quote-author cite {
    font-size: 12px;
  }

  .hero-quote-image {
    width: 100%;
    min-height: 0;
  }

  .business-card-panel .status-card {
    position: static;
    margin-top: 12px;
  }

  .stats-row,
  .service-grid,
  .feature-grid,
  .process-grid,
  .testimonial-grid,
  .tool-grid,
  .pdf-grid,
  .footer-grid {
    gap: 12px;
  }

  .stat {
    padding: 18px;
  }

  .stat strong {
    font-size: 28px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .split-section h2,
  .emergency h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .emergency {
    padding: 26px;
  }

  .hero-actions,
  .emergency-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating {
    left: auto;
    right: 12px;
    bottom: 10px;
  }

  .floating button {
    width: 54px;
    min-height: 54px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .floating span {
    width: 38px;
    height: 38px;
  }

  .floating b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    font-size: 12px;
  }

  .chat-widget {
    inset: 0;
    width: auto;
    height: auto;
    max-height: none;
    border-radius: 0;
  }

  .chat-head {
    border-radius: 0;
  }

  .admin-content {
    padding: 14px;
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 128px;
  }

  .top-info-bar {
    font-size: 10.5px;
  }

  .floating button {
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
  }
}
