:root {
  --bg: #f4f8ff;
  --bg-soft: #eaf3ff;
  --surface: #ffffff;
  --surface-alt: #f8fbff;
  --ink: #09162a;
  --ink-soft: #3f5676;
  --brand: #e65123;
  --brand-dark: #b63d14;
  --brand-soft: #ffe5db;
  --line: #d7e3f4;
  --success: #156f52;
  --shadow-xl: 0 30px 80px rgba(7, 25, 47, 0.2);
  --shadow-lg: 0 18px 44px rgba(7, 25, 47, 0.12);
  --shadow-md: 0 10px 26px rgba(7, 25, 47, 0.09);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 92% 10%, rgba(230, 81, 35, 0.13), transparent 33%),
    radial-gradient(circle at 10% 0%, rgba(37, 120, 255, 0.16), transparent 38%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.25;
}

p {
  margin: 0;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 120;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
}

.notice-bar {
  background: linear-gradient(120deg, #08172a, #142740 64%, #19395e);
  color: #e8f2ff;
}

.notice-bar .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.91rem;
}

.notice-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notice-meta {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: #c6daef;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(215, 227, 244, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid #e5ecf8;
  box-shadow: 0 8px 20px rgba(8, 23, 42, 0.08);
}

.brand-label {
  display: grid;
  gap: 2px;
}

.brand-label strong {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-label span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #d4e0f1;
  background: #fff;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
}

.menu-toggle span {
  height: 2px;
  border-radius: 2px;
  background: #173052;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 10px;
  padding: 0 12px;
  font-weight: 600;
  color: #153457;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a[aria-current='page'] {
  background: #eef5ff;
  color: #0f2c4d;
}

.action-row {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.btn,
button.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, #f86c3f, var(--brand));
  box-shadow: 0 10px 22px rgba(230, 81, 35, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(145deg, #15314f, #0a1d33);
  box-shadow: 0 10px 22px rgba(13, 34, 59, 0.32);
}

.btn-outline {
  border-color: #b6c8e2;
  color: #12355a;
  background: #fff;
}

.btn-ghost {
  border-color: #d3dfef;
  background: #f4f8ff;
  color: #16375b;
}

main {
  overflow: hidden;
}

.hero {
  padding: 56px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.hero-panel {
  background: linear-gradient(160deg, #0b1d35, #102744 60%, #16375f);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.2), transparent);
  right: -100px;
  top: -100px;
}

.hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-panel h1 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.hero-sub {
  margin-top: 14px;
  color: rgba(235, 244, 255, 0.9);
  max-width: 56ch;
}

.keywords {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keywords span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f6fbff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.trust-strip div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.09);
}

.trust-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-strip strong {
  display: block;
  font-size: 1.05rem;
}

.trust-strip span {
  font-size: 0.84rem;
  color: #d0e0f6;
}

.hero-media {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #d7e4f4;
  min-height: 240px;
  box-shadow: var(--shadow-lg);
}

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

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.hero-card h2 {
  font-size: 1.35rem;
}

.hero-card p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.hero-card .btn {
  margin-top: 14px;
}

.section {
  padding: 78px 0;
}

.section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-title span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #edf4ff;
  color: #1b436f;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3.1vw, 2.2rem);
}

.section-title p {
  color: var(--ink-soft);
  max-width: 72ch;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 1.14rem;
}

.card p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #264569;
}

.card li {
  margin: 6px 0;
}

.card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #0054a7;
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.media-card .content {
  padding: 18px;
}

.stats-band {
  background: #0f223d;
  color: #ecf4ff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stats-band div {
  padding: 10px;
}

.stats-band strong {
  display: block;
  font-size: 1.5rem;
}

.stats-band span {
  color: #c2d8f3;
  font-size: 0.9rem;
}

.price-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: auto;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.price-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 760px;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid #e0e9f6;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: #f2f7ff;
  color: #12395f;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table td strong {
  color: #0d2f53;
}

.price-note {
  margin-top: 12px;
  color: #4a607f;
  font-size: 0.92rem;
}

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

.districts li {
  list-style: none;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #c8d8ed;
  border-radius: 999px;
  background: #fff;
  color: #18416d;
  font-weight: 600;
  font-size: 0.88rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.timeline li {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.timeline b {
  font-family: 'Lexend', sans-serif;
  font-size: 1.02rem;
}

.timeline p {
  color: #466282;
}

.highlight {
  background: linear-gradient(130deg, #fff3ec, #fff);
  border: 1px solid #ffd5c5;
  border-radius: var(--radius-lg);
  padding: 18px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
}

details p {
  margin-top: 10px;
  color: #496283;
}

.cta-banner {
  border-radius: var(--radius-xl);
  background: linear-gradient(125deg, #f05f33, #e65123 44%, #cc3f16 100%);
  color: #fff;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(204, 63, 22, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-banner p {
  margin-top: 8px;
  max-width: 64ch;
  color: #ffefe9;
}

.page-hero {
  padding: 44px 0 22px;
}

.page-hero-shell {
  border-radius: var(--radius-xl);
  border: 1px solid #d8e4f3;
  background: linear-gradient(130deg, #ffffff, #f2f7ff 72%);
  padding: 30px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.breadcrumb {
  color: #4a6688;
  font-size: 0.88rem;
}

.breadcrumb a {
  color: #114479;
}

.page-hero-shell h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}

.page-hero-shell p {
  color: var(--ink-soft);
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
}

.article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.article .meta {
  margin-top: 10px;
  color: #4d6788;
  font-size: 0.9rem;
}

.article h2 {
  margin-top: 26px;
  font-size: 1.28rem;
}

.article h3 {
  margin-top: 18px;
  font-size: 1.06rem;
}

.article p {
  margin-top: 10px;
  color: #2d4769;
}

.article ul,
.article ol {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #284465;
}

.article li {
  margin: 7px 0;
}

.article .callout {
  margin-top: 14px;
  border: 1px solid #ffd5c2;
  border-radius: 12px;
  background: #fff2eb;
  padding: 12px 14px;
  color: #7d3219;
}

.article .quick-links {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.toc {
  position: sticky;
  top: 92px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.toc h3 {
  font-size: 1.05rem;
}

.toc a {
  display: block;
  margin-top: 8px;
  color: #1d4774;
  font-weight: 600;
  font-size: 0.92rem;
}

.toc .btn {
  margin-top: 12px;
  width: 100%;
}

.inline-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.inline-form h3 {
  font-size: 1.2rem;
}

.inline-form p {
  margin-top: 8px;
  color: #466182;
}

.form-grid {
  margin-top: 14px;
  display: grid;
  gap: 11px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #17375d;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  border: 1px solid #bfd0e7;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(230, 81, 35, 0.16);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.is-ok {
  color: var(--success);
}

.form-status.is-error {
  color: #af2727;
}

.quick-panel {
  display: grid;
  gap: 14px;
}

.quick-panel .card {
  padding: 16px;
}

.quick-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.quick-list li {
  margin: 6px 0;
  color: #2a4669;
}

.footer {
  margin-top: 62px;
  background: linear-gradient(145deg, #091a30, #0c213c 54%, #14365c);
  color: #e8f2fe;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  padding: 40px 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer h4 {
  font-size: 1.06rem;
}

.footer p,
.footer li,
.footer a {
  color: #cadef8;
  font-size: 0.92rem;
}

.footer ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 0 18px;
  font-size: 0.83rem;
  color: #bbd0eb;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(6, 18, 33, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.floating-actions .call {
  background: linear-gradient(145deg, #ff724a, var(--brand));
}

.floating-actions .zalo {
  background: linear-gradient(145deg, #2a7dff, #1b5dcc);
}

.floating-actions img {
  width: 23px;
  height: 23px;
  filter: brightness(0) invert(1);
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  background: rgba(7, 24, 43, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  display: none;
  gap: 8px;
}

.mobile-bar a {
  flex: 1;
  min-height: 43px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.mobile-bar .call {
  background: linear-gradient(140deg, #ff7048, var(--brand));
}

.mobile-bar .zalo {
  background: #0f57bc;
}

.coverage-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.coverage-table th,
.coverage-table td {
  border-bottom: 1px solid #dfe8f5;
  padding: 12px;
  text-align: left;
}

.coverage-table th {
  background: #f4f8ff;
  color: #153a61;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.coverage-table td {
  color: #2e4a6d;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 242, 255, 0.8));
}

.notice-box {
  border: 1px solid #d3e1f2;
  border-radius: var(--radius-md);
  background: #f6faff;
  padding: 14px;
  color: #345475;
  font-size: 0.93rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(226, 238, 255, 0.35), rgba(255, 255, 255, 0));
}

.home-page {
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 106, 57, 0.15), transparent 30%),
    radial-gradient(circle at 8% 6%, rgba(58, 130, 255, 0.2), transparent 36%),
    linear-gradient(180deg, #f0f6ff 0%, #edf4ff 34%, #f8fbff 100%);
}

.home-page .glass-card,
.home-page .timeline li.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(7, 25, 47, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-page .hero-panel.glass-panel {
  background: linear-gradient(155deg, rgba(8, 24, 44, 0.86), rgba(18, 45, 77, 0.8) 58%, rgba(18, 54, 92, 0.8));
  border: 1px solid rgba(186, 214, 245, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-page .hero-card.glass-card {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.8);
}

.home-page .section-title span {
  background: rgba(238, 245, 255, 0.75);
  border: 1px solid rgba(184, 205, 230, 0.62);
}

.home-page .districts li {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(178, 201, 229, 0.88);
}

.home-page .coverage-table th {
  background: rgba(239, 246, 255, 0.8);
}

.home-page .notice-box {
  margin-top: 16px;
  background: rgba(247, 251, 255, 0.72);
  border-color: rgba(174, 196, 223, 0.74);
}

.home-page .glass-cta {
  background: rgba(10, 27, 48, 0.74);
  border: 1px solid rgba(189, 214, 243, 0.34);
  box-shadow: 0 22px 56px rgba(6, 21, 40, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-page .glass-cta p {
  color: #d8e8fb;
}

.home-page .glass-cta .btn-outline {
  border-color: rgba(201, 220, 245, 0.62);
  color: #e4f0ff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
  .hero-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-shell {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

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

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

@media (max-width: 920px) {
  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #dce8f7;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px 16px;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .main-nav a {
    border-radius: 10px;
    min-height: 42px;
  }

  .action-row {
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid #e2ebf8;
    justify-content: flex-start;
  }

  .hero-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-image,
  .page-hero-shell,
  .article,
  .card,
  .inline-form,
  .cta-banner {
    border-radius: 18px;
  }

  .section {
    padding: 62px 0;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .notice-bar .container {
    min-height: 40px;
    font-size: 0.82rem;
    justify-content: center;
  }

  .notice-meta {
    display: none;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-label strong {
    font-size: 0.94rem;
  }

  .brand-label span {
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-panel,
  .page-hero-shell,
  .article,
  .inline-form,
  .cta-banner,
  .card,
  .hero-card {
    padding: 18px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .stats-band {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .floating-actions {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 52px 0;
  }
}
