:root {
  --bg: #07070b;
  --bg-soft: #0d0c14;
  --panel: rgba(18, 17, 29, 0.86);
  --panel-solid: #12111d;
  --text: #f7f4ff;
  --muted: #b8b0c8;
  --soft: #777087;
  --primary: #8b5cf6;
  --primary-strong: #a855f7;
  --cyan: #24d3ee;
  --gold: #f6bd32;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(139, 92, 246, 0.52);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.is-menu-open {
  overflow: hidden;
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

button,
input,
select {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 11, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 265px;
  height: 62px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.header-cta,
.btn-primary,
.btn-whatsapp {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 44px rgba(139, 92, 246, 0.34);
  color: white;
}

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

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(36, 211, 238, 0.42);
  background: rgba(36, 211, 238, 0.1);
}

.market-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(13, 12, 20, 0.96);
}

.market-window {
  min-width: 0;
  overflow: hidden;
}

.market-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 0;
  animation: ticker 46s linear infinite;
}

.market-strip:hover .market-track {
  animation-play-state: paused;
}

.market-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.market-item strong {
  color: var(--text);
  font-weight: 800;
}

.market-item.is-loading {
  width: 100vw;
  justify-content: center;
  border-right: 0;
  color: var(--cyan);
}

.market-name {
  color: var(--text);
  font-weight: 900;
}

.market-change {
  font-weight: 900;
}

.market-change.is-positive {
  color: #35f0a7;
}

.market-change.is-negative {
  color: #ff5f7e;
}

.coin {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #08070d;
  font-size: 0.9rem;
  font-weight: 900;
}

.coin-usdt {
  background: linear-gradient(135deg, #24d3ee, #8b5cf6);
  color: white;
}

.coin-btc {
  background: linear-gradient(135deg, var(--gold), #ff8a00);
}

.coin-bnb {
  background: linear-gradient(135deg, #f6bd32, #f7df72);
}

.coin-eth {
  background: linear-gradient(135deg, #c4b5fd, #24d3ee);
}

.coin-sol {
  background: linear-gradient(135deg, #8b5cf6, #35f0a7);
  color: white;
}

.coin-uyu {
  background: linear-gradient(135deg, #f8fafc, #a7f3d0);
}

.coin-xrp {
  background: linear-gradient(135deg, #f8fafc, #94a3b8);
}

.coin-doge {
  background: linear-gradient(135deg, #e9c46a, #fef3c7);
}

.coin-ada {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: white;
}

.coin-trx {
  background: linear-gradient(135deg, #ff5f7e, #a855f7);
  color: white;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #07070b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 38%, rgba(36, 211, 238, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(7, 7, 11, 0.98) 0%, rgba(7, 7, 11, 0.8) 46%, rgba(7, 7, 11, 0.56) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 72%, transparent);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: saturate(0.98) contrast(1.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: 58px;
  width: min(1180px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 76px 0 70px;
}

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

.kicker,
.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 26px;
  padding: 9px 14px;
  border: 1px solid rgba(36, 211, 238, 0.28);
  border-radius: 999px;
  background: rgba(36, 211, 238, 0.08);
}

.kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px var(--primary);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-actions .btn {
  min-width: 190px;
}

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

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-card {
  position: relative;
  border: 1px solid rgba(139, 92, 246, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 17, 29, 0.95), rgba(11, 10, 18, 0.9)),
    var(--panel-solid);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 22px;
  backdrop-filter: blur(20px);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(36, 211, 238, 0.12), rgba(246, 189, 50, 0.22));
  opacity: 0.4;
}

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

.quote-head h2 {
  margin: 3px 0 0;
  font-size: 1.32rem;
  letter-spacing: 0;
}

.quote-badge {
  padding: 7px 10px;
  border: 1px solid rgba(36, 211, 238, 0.38);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.trade-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.trade-tabs button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.trade-tabs button.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.28);
}

.field {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field select,
.input-shell,
.currency-options {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.input-shell:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.16);
}

.input-shell.has-error {
  border-color: #ff5f7e;
}

.field select {
  width: 100%;
  padding: 0 14px;
  color: var(--text);
  cursor: pointer;
}

.field select option {
  color: #111;
}

.input-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
}

.input-shell input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 900;
}

.input-shell span {
  color: var(--cyan);
  font-weight: 900;
}

.currency-field {
  border: 0;
  padding: 0;
}

.currency-field legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.currency-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
}

.currency-options label {
  position: relative;
  cursor: pointer;
}

.currency-options input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.currency-options span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 900;
}

.currency-options input:checked + span {
  background: rgba(36, 211, 238, 0.14);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(36, 211, 238, 0.35);
}

.estimate-panel {
  display: grid;
  gap: 4px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.1);
}

.estimate-panel span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-panel strong {
  color: var(--text);
  font-size: 1.34rem;
  line-height: 1.2;
}

.estimate-panel small {
  color: var(--cyan);
  font-weight: 800;
}

.btn-whatsapp {
  width: 100%;
}

.btn.is-disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.fineprint {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.84rem;
}

.field-help,
.field-error {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: none;
}

.field-help {
  color: var(--soft);
}

.field-error {
  color: #ff8ba1;
}

.field-error:empty {
  display: none;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading h2,
.security-copy h2 {
  margin: 8px 0 0;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.asset-card,
.step-card,
.proof-list article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.asset-card {
  min-height: 192px;
  padding: 22px;
}

.asset-card .coin {
  margin-bottom: 26px;
}

.asset-card h3,
.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.asset-card p,
.step-card p,
.security-copy p,
.faq-list p,
.proof-list span {
  color: var(--muted);
}

.process-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.step-card {
  min-height: 210px;
  padding: 26px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.section-cta {
  margin-top: 22px;
}

.security-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: 56px;
}

.security-copy p {
  margin-bottom: 26px;
  font-size: 1.08rem;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.proof-list h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-bottom: 18px;
}

.about-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(139, 92, 246, 0.055);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.about-copy h2 {
  margin: 8px 0 18px;
  font-size: 2.55rem;
  line-height: 1.08;
}

.about-copy p {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy .btn {
  margin-top: 8px;
}

.entity-facts {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.12), rgba(10, 9, 17, 0.72));
  box-shadow: var(--shadow);
}

.entity-facts div {
  display: grid;
  grid-template-columns: minmax(130px, 0.65fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.entity-facts dt {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.entity-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.entity-facts a,
.footer-links a {
  color: var(--cyan);
}

.legal-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

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

.legal-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

.legal-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.legal-grid p,
.last-updated {
  color: var(--muted);
}

.last-updated {
  margin: 30px 0 0;
  font-size: 0.82rem;
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(36, 211, 238, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #20c9dc);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
  color: white;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

body.has-scrolled .floating-chat {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 36px;
  border-top: 1px solid var(--line);
  background: #050508;
  color: var(--muted);
}

.footer-brand {
  max-width: 410px;
}

.site-footer img {
  width: 210px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 0.85rem;
  font-weight: 800;
}

.version-watermark {
  color: rgba(184, 176, 200, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: grid;
    order: 3;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(12, 11, 19, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.045);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 58px 0 52px;
  }

  h1 {
    font-size: 3.45rem;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .quote-card {
    max-width: 560px;
  }

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

  .security-section {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  .market-window {
    overflow-x: auto;
  }

  .market-window::-webkit-scrollbar {
    display: none;
  }

  .market-item {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.9rem;
  }

  .market-track {
    animation: none;
  }

  .hero-grid,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .hero-grid {
    padding: 42px 0 44px;
  }

  h1 {
    font-size: 2.72rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quote-card {
    padding: 20px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .security-copy h2 {
    font-size: 2rem;
  }

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

  .asset-card,
  .step-card {
    min-height: auto;
  }

  .entity-facts {
    padding: 6px 18px;
  }

  .entity-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .floating-chat {
    right: 14px;
    bottom: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px 88px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .version-watermark {
    align-self: flex-end;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 180px;
    height: 50px;
  }

  h1 {
    font-size: 2.34rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .trust-row span {
    width: 100%;
  }

  .quote-head {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-badge {
    width: fit-content;
  }

  .estimate-panel strong {
    font-size: 1.26rem;
  }
}
