:root {
  --ink: #152746;
  --muted: #62728a;
  --line: #d8e4f2;
  --paper: #f6f9fd;
  --panel: #ffffff;
  --forest: #2d4b78;
  --forest-2: #203a62;
  --mint: #e7f0fb;
  --gold: #2f6fb4;
  --gold-2: #d8e8fb;
  --clay: #4b84c4;
  --sky: #edf5ff;
  --shadow: 0 22px 60px rgba(32, 58, 98, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

p {
  margin: 0;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 242, 0.95);
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 78px;
  padding: 0 24px;
}

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

.brand-mark {
  background: transparent;
  border-radius: 0;
  height: 58px;
  object-fit: contain;
  padding: 0;
  width: 174px;
}

.brand-name {
  display: none;
  line-height: 1.05;
}

.brand-name strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-name span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 20px;
  justify-content: center;
}

.nav-links a {
  color: #243c60;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--forest);
}

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

.menu-toggle {
  align-items: center;
  background: var(--forest-2);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(32, 58, 98, 0.2);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.menu-toggle span:not(.sr-only) {
  background: #fff;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.22s ease, opacity 0.22s ease;
  width: 19px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--gold);
  box-shadow: 0 14px 26px rgba(47, 111, 180, 0.26);
  color: #fff;
}

.btn-primary:hover {
  background: #245f9f;
}

.btn-secondary {
  background: var(--forest);
  color: #fff;
}

.btn-ghost {
  border-color: rgba(32, 58, 98, 0.22);
  color: var(--forest-2);
}

.hero .btn-ghost,
.page-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.hero {
  background-position: center 60%;
  background-size: cover;
  color: #fff;
  min-height: 620px;
  position: relative;
}

.hero-inner {
  display: grid;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 620px;
  padding: 72px 24px 42px;
}

.hero-copy {
  align-self: center;
  max-width: 740px;
}

.eyebrow {
  align-items: center;
  color: var(--gold-2);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 2px;
  width: 34px;
}

.hero h1,
.page-hero h1,
.section-title h2,
.content-block h2,
.lead-form h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  font-size: clamp(42px, 5.6vw, 68px);
  margin-top: 18px;
  max-width: 760px;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  margin-top: 20px;
  max-width: 680px;
}

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

.hero-proof {
  align-self: end;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 920px;
}

.proof-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 92px;
  padding: 17px;
}

.proof-item strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}

.section {
  padding: 92px 24px;
}

.section-tight {
  padding: 68px 24px;
}

.container {
  margin: 0 auto;
  max-width: var(--max);
}

.section-title {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  margin-bottom: 42px;
}

.section-title h2 {
  font-size: clamp(34px, 4.3vw, 58px);
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
}

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

.visual-story-card {
  border-radius: var(--radius);
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.visual-story-card.small {
  min-height: 201px;
}

.visual-story-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.visual-story-card::after {
  background: linear-gradient(180deg, rgba(21, 39, 70, 0) 35%, rgba(21, 39, 70, 0.74));
  content: "";
  inset: 0;
  position: absolute;
}

.visual-caption {
  bottom: 22px;
  color: #fff;
  font-weight: 900;
  left: 22px;
  max-width: 360px;
  position: absolute;
  right: 22px;
  z-index: 2;
}

.visual-caption span {
  color: var(--gold-2);
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.inline-media {
  border-radius: var(--radius);
  height: 280px;
  margin: 28px 0 0;
  object-fit: cover;
  width: 100%;
}

.media-band {
  background: #fff;
  padding: 0 24px 92px;
}

.video-showcase {
  background:
    radial-gradient(circle at top left, rgba(47, 111, 180, 0.16), transparent 34%),
    linear-gradient(135deg, #fff 0%, #edf5ff 100%);
  padding: 82px 24px;
}

.video-layout {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: 0.9fr 1.25fr;
  margin: 0 auto;
  max-width: var(--max);
}

.video-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  margin: 10px 0 18px;
}

.video-copy p {
  color: var(--muted);
  font-size: 18px;
}

.video-frame {
  background: var(--forest-2);
  border: 1px solid rgba(32, 58, 98, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 10px;
}

.video-frame video {
  aspect-ratio: 16 / 9;
  background: #142945;
  border-radius: 6px;
  display: block;
  width: 100%;
}

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

.media-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

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

.media-card-content h3 {
  font-size: 22px;
  line-height: 1.18;
  margin: 0 0 8px;
}

.media-card-content p {
  color: var(--muted);
  font-size: 14px;
}

.services-grid,
.audience-grid,
.steps-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.audience-card,
.step-card,
.article-card,
.loan-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card,
.audience-card,
.article-card,
.loan-card {
  padding: 28px;
}

.service-card {
  display: grid;
  min-height: 300px;
}

.card-index {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3,
.audience-card h3,
.loan-card h3,
.article-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.12;
  margin: 18px 0 14px;
}

.service-card p,
.audience-card p,
.loan-card p,
.article-card p {
  color: var(--muted);
}

.card-link {
  align-self: end;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
  margin-top: 28px;
}

.split-band {
  background: var(--forest-2);
  color: #fff;
  padding: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 620px;
}

.split-image {
  background-position: center;
  background-size: cover;
}

.split-content {
  align-self: center;
  padding: 80px clamp(24px, 6vw, 86px);
}

.split-content h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  margin: 14px 0 22px;
}

.split-content p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  gap: 12px;
}

.check-list li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  flex: 0 0 8px;
  height: 8px;
  margin-top: 9px;
  width: 8px;
}

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

.audience-card {
  background: transparent;
  min-height: 260px;
}

.audience-card.featured {
  background: var(--forest);
  color: #fff;
}

.audience-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.steps-grid {
  counter-reset: steps;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  counter-increment: steps;
  padding: 30px;
  position: relative;
}

.step-card::before {
  color: rgba(47, 111, 180, 0.18);
  content: counter(steps, decimal-leading-zero);
  font-family: "Fraunces", Georgia, serif;
  font-size: 72px;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 14px;
}

.step-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 250px;
}

.step-card p {
  color: var(--muted);
  margin-right: 20px;
}

.cta-band {
  background: var(--sky);
  padding: 86px 24px;
}

.cta-layout {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.cta-layout h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 0;
}

.cta-layout p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 18px;
  max-width: 680px;
}

.lead-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.lead-form h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

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

.page-hero {
  background: var(--forest-2);
  color: #fff;
  padding: 94px 24px 78px;
}

.page-hero-inner {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.45fr);
  margin: 0 auto;
  max-width: var(--max);
}

.page-hero h1 {
  font-size: clamp(42px, 5.5vw, 76px);
  margin-top: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  margin-top: 22px;
  max-width: 720px;
}

.hero-panel {
  align-self: end;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 26px;
}

.hero-panel strong {
  color: var(--gold-2);
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel ul,
.content-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.hero-panel li,
.content-list li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.hero-panel li::before,
.content-list li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  flex: 0 0 7px;
  height: 7px;
  margin-top: 10px;
  width: 7px;
}

.content-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.38fr);
}

.content-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.content-block h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

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

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

.loan-card h3 {
  font-size: 24px;
}

.sidebar-stack {
  display: grid;
  gap: 18px;
}

.sidebar-box {
  background: var(--forest);
  border-radius: var(--radius);
  color: #fff;
  padding: 28px;
}

.sidebar-box.light {
  background: var(--mint);
  color: var(--ink);
}

.sidebar-box h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.sidebar-box p,
.sidebar-box li {
  color: rgba(255, 255, 255, 0.78);
}

.sidebar-box.light p,
.sidebar-box.light li {
  color: var(--muted);
}

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

.seo-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(24, 32, 28, 0.08);
  padding: 30px;
}

.seo-panel h3,
.faq-item h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.seo-panel p,
.faq-item p {
  color: var(--muted);
}

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

.faq-item,
.document-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.document-card strong {
  color: var(--forest-2);
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.comparison-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  gap: 0;
  grid-template-columns: 0.9fr 1fr 1fr;
}

.comparison-row > div {
  border-top: 1px solid var(--line);
  padding: 18px;
}

.comparison-row:first-child > div {
  background: var(--forest-2);
  border-top: 0;
  color: #fff;
  font-weight: 900;
}

.comparison-row strong {
  color: var(--forest-2);
}

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

.keyword-links a {
  background: var(--mint);
  border: 1px solid rgba(32, 58, 98, 0.14);
  border-radius: 999px;
  color: var(--forest-2);
  font-size: 14px;
  font-weight: 900;
  padding: 9px 13px;
}

.notice-box {
  background: linear-gradient(135deg, rgba(216, 232, 251, 0.75), rgba(231, 240, 251, 0.92));
  border: 1px solid rgba(47, 111, 180, 0.16);
  border-radius: var(--radius);
  color: var(--forest-2);
  font-weight: 800;
  padding: 18px 20px;
}

.registration-card {
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.registration-card span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.registration-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
}

.registration-card p {
  color: rgba(255, 255, 255, 0.78);
}

.registration-line {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-top: 12px;
}

.footer-registration {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  margin: 14px auto 0;
  max-width: var(--max);
}

.guide-article {
  display: grid;
  gap: 22px;
}

.guide-article h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 0;
}

.guide-article h3 {
  font-size: 22px;
  margin: 0 0 8px;
}

.guide-article p {
  color: var(--muted);
}

.guide-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.guide-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
  padding: 18px 20px;
}

.whatsapp-float {
  align-items: center;
  background: #2f6fb4;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 42px rgba(47, 111, 180, 0.35);
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 10px;
  min-height: 52px;
  padding: 13px 18px;
  position: fixed;
  right: 22px;
  z-index: 60;
}

.whatsapp-float::before {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  content: "WA";
  display: inline-grid;
  font-size: 12px;
  height: 28px;
  place-items: center;
  width: 28px;
}

.site-footer {
  background: #101f36;
  color: rgba(255, 255, 255, 0.72);
  padding: 54px 24px 30px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.2fr repeat(3, minmax(140px, 0.5fr));
  margin: 0 auto;
  max-width: var(--max);
}

.footer-grid h3 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 42px auto 0;
  max-width: var(--max);
  padding-top: 22px;
}

@media (max-width: 980px) {
  .nav {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 14px 24px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    position: relative;
  }

  .nav-links {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(32, 58, 98, 0.12);
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(32, 58, 98, 0.14);
    display: none;
    gap: 6px;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    margin-top: 14px;
    padding: 8px;
  }

  .nav-links a {
    background: #f4f8fd;
    border-radius: 7px;
    display: block;
    font-size: 14px;
    padding: 12px 13px;
    text-align: center;
  }

  .nav-links a:hover {
    background: var(--mint);
  }

  .nav-actions {
    display: none;
    gap: 10px;
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 10px;
  }

  .site-header.is-open .nav-links {
    display: grid;
  }

  .site-header.is-open .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 82px;
  }

  .hero-proof,
  .services-grid,
  .audience-grid,
  .steps-grid,
  .article-grid,
  .loan-grid,
  .footer-grid,
  .media-grid,
  .faq-grid,
  .trust-grid,
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-title,
  .visual-story,
  .video-layout,
  .split-layout,
  .cta-layout,
  .page-hero-inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .nav {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
    min-height: 0;
    padding: 14px 18px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    height: 48px;
    width: 148px;
  }

  .brand-name strong {
    font-size: 19px;
  }

  .brand-name span {
    font-size: 10px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 11px 12px;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .btn {
    font-size: 13px;
    min-height: 42px;
    padding: 9px 12px;
    width: 100%;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-inner {
    padding: 44px 18px 34px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lede,
  .page-hero p {
    font-size: 16px;
  }

  .btn {
    min-height: 44px;
    padding: 11px 14px;
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-proof,
  .services-grid,
  .audience-grid,
  .steps-grid,
  .article-grid,
  .loan-grid,
  .footer-grid,
  .media-grid,
  .faq-grid,
  .trust-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-row > div {
    border-top: 1px solid var(--line);
  }

  .visual-story-card,
  .visual-story-card.small {
    min-height: 260px;
  }

  .proof-item,
  .service-card {
    min-height: auto;
  }

  .section,
  .section-tight,
  .video-showcase,
  .cta-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .content-block,
  .lead-form,
  .sidebar-box,
  .service-card,
  .audience-card,
  .loan-card,
  .article-card,
  .seo-panel,
  .faq-item,
  .document-card,
  .registration-card {
    padding: 24px;
  }

  .page-hero {
    padding: 58px 18px 52px;
  }

  .whatsapp-float {
    bottom: 16px;
    font-size: 14px;
    left: 18px;
    justify-content: center;
    right: 18px;
  }
}

@media (max-width: 380px) {
  .brand-mark {
    height: 44px;
    width: 132px;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }
}
