@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #182026;
  --muted: #5a6772;
  --line: #dce3e6;
  --paper: #ffffff;
  --soft: #f4f7f5;
  --teal: #0d766e;
  --teal-dark: #075d57;
  --gold: #c9952a;
  --coral: #c85d4a;
  --shadow: 0 20px 50px rgba(24, 32, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Be Vietnam Pro", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.policy-page {
  padding-top: 78px;
  background: var(--soft);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 5vw;
  color: #ffffff;
  background: rgba(18, 24, 29, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #10201e;
  background: #ffffff;
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.site-nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.site-nav a:hover {
  color: #ffffff;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #14201f;
  background: #ffffff;
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/ai-hero-vietnam-finance.webp");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
  filter: saturate(0.86) contrast(1.05);
}

.hero-overlay {
  background: rgba(12, 18, 22, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 90vw);
  padding: 128px 0 44px 5vw;
}

.credit-art {
  position: absolute;
  z-index: 1;
  right: max(5vw, 34px);
  bottom: 58px;
  width: 430px;
  height: 300px;
  pointer-events: none;
}

.credit-card {
  position: absolute;
  width: 350px;
  height: 214px;
  padding: 24px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.credit-card::before,
.credit-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.24;
}

.credit-card::before {
  width: 180px;
  height: 180px;
  right: -50px;
  top: -60px;
  background: #ffffff;
}

.credit-card::after {
  width: 140px;
  height: 140px;
  right: 58px;
  bottom: -86px;
  border: 18px solid rgba(255, 255, 255, 0.58);
}

.credit-card-primary {
  right: 0;
  bottom: 0;
  background: #0d766e;
  transform: rotate(-7deg);
}

.credit-card-secondary {
  left: 0;
  top: 0;
  background: #202a30;
  transform: rotate(8deg);
  opacity: 0.92;
}

.card-chip {
  position: relative;
  z-index: 1;
  display: block;
  width: 48px;
  height: 36px;
  margin-bottom: 28px;
  background: #d9b15a;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(61, 42, 5, 0.18);
}

.card-label,
.card-number,
.card-holder,
.card-date {
  position: relative;
  z-index: 1;
  display: block;
}

.card-label {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.card-number {
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 800;
}

.card-holder,
.card-date {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-date {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 68px;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.btn-primary {
  color: #ffffff;
  background: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  color: #10201e;
  background: #ffffff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 90vw);
  margin: 0;
}

.hero-facts div {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts dt {
  font-size: 26px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.quick-proof {
  position: relative;
  z-index: 3;
  margin-top: -30px;
}

.quick-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(24, 32, 38, 0.14);
}

.quick-proof-grid div {
  min-height: 164px;
  padding: 22px;
  background: #ffffff;
}

.quick-proof-grid span,
.address-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 24px;
  line-height: 1.08;
}

.quick-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.notice-band {
  background: #fff4df;
  border-bottom: 1px solid #ead5aa;
}

.notice-content {
  display: flex;
  gap: 10px;
  padding: 16px 0;
  color: #4a3510;
}

.visual-strip {
  padding: 32px 0 10px;
  background: #ffffff;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
}

.visual-tile {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: #152026;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(24, 32, 38, 0.12);
}

.visual-tile-large {
  min-height: 360px;
}

.visual-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  opacity: 0.88;
}

.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 22, 0.28);
}

.visual-tile figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding-top: 14px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.visual-tile strong,
.visual-tile span {
  display: block;
}

.visual-tile strong {
  margin-bottom: 5px;
  font-size: 20px;
}

.visual-tile span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: var(--soft);
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.split h2,
.contact-layout h2 {
  margin-bottom: 12px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.split p,
.contact-layout p {
  color: var(--muted);
}

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

.service-card {
  min-height: 250px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 32, 38, 0.06);
}

.service-card .icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--coral);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.split,
.contact-layout,
.compliance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.process-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #182026;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  opacity: 0.9;
}

.process-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: #ffffff;
  background: rgba(13, 118, 110, 0.92);
  border-radius: 8px;
}

.process-badge strong {
  font-size: 34px;
  line-height: 1;
}

.process-badge span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.timeline li::before {
  content: "Bước " counter(step);
  color: var(--teal);
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

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

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

.business-info {
  margin-top: 26px;
}

.fee-layout .business-info {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list span {
  color: var(--muted);
}

.info-list strong {
  font-size: 16px;
}

.fee-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(13, 118, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.fee-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.fee-copy {
  position: sticky;
  top: 104px;
  padding: 30px;
  color: #ffffff;
  background: #151c21;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(24, 32, 38, 0.18);
}

.fee-copy .eyebrow {
  color: #ffcf75;
}

.fee-copy h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.fee-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.fee-highlights {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.fee-highlights span {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.fee-spotlight {
  margin-top: 24px;
  padding: 22px;
  background: #ffffff;
  border-radius: 8px;
}

.fee-spotlight span,
.fee-spotlight strong,
.fee-spotlight small {
  display: block;
}

.fee-spotlight span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-spotlight strong {
  margin: 2px 0 6px;
  color: var(--teal-dark);
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: 0;
}

.fee-spotlight small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.fee-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #cfdcda;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(24, 32, 38, 0.14);
}

.fee-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: #ffffff;
  background: #151c21;
}

.fee-panel-top span,
.fee-panel-top strong {
  display: block;
}

.fee-panel-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-panel-top strong {
  font-size: 18px;
}

.fee-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.25fr) minmax(120px, 0.72fr) minmax(130px, 0.78fr);
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-top: 1px solid #e7eeee;
}

.fee-row:first-child {
  border-top: 0;
}

.fee-row:nth-child(even):not(.fee-row-head) {
  background: #fbfcfc;
}

.fee-row:not(.fee-row-head):hover {
  background: #f1f8f6;
}

.fee-row-head {
  color: #41505a;
  background: #f5f8f7;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-row strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.fee-row strong:nth-child(2),
.fee-row strong:nth-child(3) {
  display: inline-flex;
  width: fit-content;
  min-width: 76px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  background: #ecf6f3;
  border: 1px solid #cfe4df;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
}

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

.best-rate {
  position: relative;
  color: #ffffff !important;
  background: var(--teal) !important;
  border-color: var(--teal) !important;
}

.best-rate::after {
  content: "Tốt nhất";
  position: absolute;
  right: -8px;
  top: -12px;
  padding: 3px 7px;
  color: #3f2b05;
  background: #ffcf75;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.fee-note {
  margin: 0;
  padding: 16px 20px;
  color: var(--muted);
  background: #fff8e8;
  border-top: 1px solid #f0dcae;
  font-size: 14px;
}

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

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.service-area-layout h2 {
  margin-bottom: 12px;
  font-size: 44px;
  line-height: 1.08;
}

.service-area-layout p {
  color: var(--muted);
}

.address-panel {
  margin-top: 22px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.address-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.address-panel p {
  margin: 0;
}

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

.district-grid span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.security-grid div {
  min-height: 150px;
  padding: 22px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
}

.security-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #ffcf75;
  font-size: 24px;
}

.security-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.media-section {
  background: #ffffff;
}

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

.media-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: #182026;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(24, 32, 38, 0.12);
}

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

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 240ms ease;
}

.media-card:hover img {
  transform: scale(1.04);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 24, 0.34);
}

.media-card figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  color: #ffffff;
  background: rgba(13, 118, 110, 0.9);
  border-radius: 8px;
}

.media-card strong,
.media-card span {
  display: block;
}

.media-card strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.media-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.contact-section {
  background: #ffffff;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-options a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  color: var(--teal-dark);
  border: 1px solid var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cbd5d9;
  border-radius: 8px;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(13, 118, 110, 0.18);
  border-color: var(--teal);
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 400;
}

.consent input {
  min-height: auto;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 800;
}

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

.policy-content {
  min-height: calc(100vh - 78px);
}

.policy-content .container {
  max-width: 850px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-content h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 48px;
}

.policy-content h2 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 22px;
}

.policy-content p {
  color: var(--muted);
}

details {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 34px 0 84px;
  color: rgba(255, 255, 255, 0.78);
  background: #151c21;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  color: #ffffff;
}

.site-footer p {
  margin: 5px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
}

.footer-links a {
  color: #ffffff;
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  min-width: 70px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(13, 118, 110, 0.28);
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero-content {
    padding-top: 108px;
  }

  .credit-art {
    right: 2vw;
    bottom: 30px;
    width: 310px;
    height: 230px;
    opacity: 0.72;
  }

  .credit-card {
    width: 260px;
    height: 158px;
    padding: 18px;
    border-radius: 14px;
  }

  .card-chip {
    width: 38px;
    height: 28px;
    margin-bottom: 16px;
  }

  .card-label {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .card-number {
    margin-bottom: 16px;
    font-size: 16px;
  }

  h1 {
    font-size: 52px;
  }

  .section-heading h2,
  .split h2,
  .contact-layout h2 {
    font-size: 38px;
  }

  .service-grid,
  .security-grid,
  .quick-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-layout,
  .compliance-layout,
  .process-layout,
  .service-area-layout,
  .fee-layout {
    grid-template-columns: 1fr;
  }

  .fee-copy {
    position: static;
  }

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

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

  .visual-tile-large {
    grid-column: 1 / -1;
  }

  .process-visual {
    min-height: 420px;
  }

  .section-heading.compact {
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 4vw;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: 92vw;
    padding-left: 4vw;
    padding-bottom: 28px;
  }

  .credit-art {
    display: none;
  }

  .hero-copy {
    font-size: 16px;
  }

  h1 {
    font-size: 38px;
  }

  .section-heading h2,
  .split h2,
  .contact-layout h2,
  .fee-copy h2,
  .service-area-layout h2,
  .policy-content h1 {
    font-size: 31px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .notice-content {
    display: grid;
  }

  .section {
    padding: 54px 0;
  }

  .service-grid,
  .security-grid,
  .quick-proof-grid,
  .visual-grid,
  .media-grid,
  .district-grid {
    grid-template-columns: 1fr;
  }

  .visual-tile,
  .visual-tile-large {
    min-height: 260px;
  }

  .media-card,
  .media-card-wide {
    grid-column: auto;
    min-height: 280px;
  }

  .process-visual {
    min-height: 320px;
  }

  .process-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline li,
  .info-list div,
  .fee-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fee-row-head {
    display: none;
  }

  .fee-panel-top {
    display: grid;
    gap: 4px;
  }

  .fee-copy {
    padding: 22px;
  }

  .fee-spotlight {
    padding: 18px;
  }

  .fee-spotlight strong {
    font-size: 52px;
  }

  .fee-row {
    padding: 18px;
  }

  .fee-row strong {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 16px;
  }

  .fee-row strong::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .fee-row strong:nth-child(2),
  .fee-row strong:nth-child(3) {
    width: 100%;
    justify-content: space-between;
  }

  .best-rate::after {
    right: 10px;
    top: -9px;
  }

  .lead-form {
    padding: 20px;
  }

  .footer-layout {
    display: grid;
  }

  .floating-actions {
    left: 14px;
    right: 14px;
  }

  .floating-actions a {
    flex: 1;
  }
}
