/*
Theme Name: Easy Money Cash Loans Gold Navy
Theme URI: https://easymoneycashloans.co.za/
Author: Tylund Marine
Description: Single-screen gold and navy WordPress application theme for Easy Money Cash Loans, including FAQ, privacy policy, document uploads and lead tracking.
Version: 2.5.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: easy-money-cash-loans
*/

:root {
  color-scheme: dark;
  --gold: #d5ad3b;
  --gold-light: #f4d574;
  --navy: #071a33;
  --navy-deep: #041124;
  --paper: #f7f9fc;
  --muted: #bdc9d8;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: var(--navy-deep);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
}

.home-body { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.78) contrast(1.05);
  transform: scale(1.015);
  animation: hero-auto-pan 14s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 17, 36, .97) 0%, rgba(7, 26, 51, .86) 43%, rgba(7, 26, 51, .32) 74%, rgba(4, 17, 36, .67) 100%),
    linear-gradient(0deg, rgba(4, 17, 36, .94) 0%, transparent 34%, rgba(4, 17, 36, .5) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 5vw, 76px);
}

.brand {
  position: relative;
  display: inline-flex;
  width: clamp(215px, 23vw, 320px);
  height: 50px;
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav a:hover { color: var(--gold-light); }

.hero__content {
  align-self: center;
  width: min(790px, calc(100% - 44px));
  margin-left: clamp(22px, 9vw, 140px);
  padding: 12px 0 34px;
  animation: rise .8s .1s ease-out both;
}

.eyebrow, .modal-kicker {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow span { display: inline-block; width: 34px; height: 2px; margin: 0 11px 3px 0; background: var(--gold); }

h1 {
  margin: 0;
  max-width: 900px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3.2rem, 6.3vw, 7rem);
  line-height: .95;
  letter-spacing: -.055em;
}

h1 em { color: var(--gold-light); font-style: normal; }

.hero__intro {
  max-width: 610px;
  margin: 28px 0 34px;
  color: #d7dbe1;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.apply-button, .submit-button {
  border: 0;
  background: linear-gradient(135deg, var(--gold-light), #b9881d);
  color: var(--navy-deep);
  cursor: pointer;
  font-weight: 800;
}

.apply-button {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  min-height: 58px;
  padding: 0 23px 0 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 18px 50px rgba(213, 173, 59, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.apply-button:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(213, 173, 59, .4); }
.apply-button:focus-visible, .submit-button:focus-visible, .modal-close:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.loan-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.loan-facts strong { color: #fff; }

.trust-row {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding: 22px clamp(22px, 5vw, 76px) 25px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(12px);
}

.trust-row strong { color: #fff; }

.faq-dock {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(22px, 5vw, 76px) 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(4,17,36,.86);
  backdrop-filter: blur(18px);
}

.faq-dock__heading p {
  margin: 0 0 4px;
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .9rem;
  font-weight: 700;
}

.faq-dock__heading span { color: var(--muted); font-size: .68rem; }
.faq-dock__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.faq-dock details { position: relative; }
.faq-dock summary {
  min-height: 34px;
  padding: 9px 28px 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  background: rgba(255,255,255,.055);
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.25;
  transition: border-color .2s ease, background .2s ease;
}

.faq-dock summary::-webkit-details-marker { display: none; }
.faq-dock summary::after { content: "+"; position: absolute; top: 7px; right: 10px; color: var(--gold-light); font-size: 1rem; }
.faq-dock details[open] summary { border-color: var(--gold); background: rgba(213,173,59,.16); }
.faq-dock details[open] summary::after { content: "-"; }

.faq-answer {
  position: fixed;
  left: 50%;
  bottom: 132px;
  z-index: 10;
  width: min(720px, calc(100vw - 44px));
  padding: 21px 24px;
  border: 1px solid rgba(213,173,59,.52);
  border-radius: 8px;
  background: rgba(4,17,36,.97);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
  transform: translateX(-50%);
}

.faq-answer strong { font-family: "Space Grotesk", Inter, sans-serif; font-size: 1rem; }
.faq-answer p { margin: 8px 0 0; color: #d6deea; font-size: .82rem; line-height: 1.6; }
.faq-answer a { color: var(--gold-light); font-weight: 800; }

.faq-section {
  padding: clamp(78px, 10vw, 140px) clamp(22px, 8vw, 130px);
  background: var(--paper);
  color: var(--navy-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 50px;
}

.section-heading .eyebrow { color: #a87814; }
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.faq-list {
  max-width: 1000px;
  margin-left: auto;
  border-top: 1px solid #cad2df;
}

.faq-list details { border-bottom: 1px solid #cad2df; }
.faq-list summary {
  position: relative;
  padding: 24px 56px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list p { margin: -4px 70px 25px 0; color: #536175; line-height: 1.75; }
.faq-list a { color: #9b7018; font-weight: 700; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 420px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(22px, 5vw, 76px);
  background: var(--navy-deep);
  color: var(--muted);
  font-size: .78rem;
}

.site-footer img {
  width: 100%;
  max-width: 360px;
  margin: -56px 0;
}
.site-footer p { margin: 0; }
.site-footer a { color: #fff; font-weight: 700; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }

.application-modal {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 1px solid rgba(213, 173, 59, .38);
  border-radius: 14px;
  background: var(--paper);
  color: var(--navy-deep);
  box-shadow: 0 40px 120px rgba(0,0,0,.65);
  overflow: auto;
}

.application-modal::backdrop { background: rgba(4,17,36,.86); backdrop-filter: blur(8px); }
.application-modal[open] { animation: modal-in .28s ease-out both; }
.modal-shell { padding: clamp(23px, 4vw, 44px); }
.modal-header { display: flex; justify-content: space-between; gap: 24px; }
.modal-header h2 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.04em; }
.modal-header p:last-child { margin: 10px 0 0; color: #68717b; }
.modal-kicker { margin-bottom: 9px; color: #9b7018; }

.modal-close {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid #d7d0c3;
  border-radius: 50%;
  background: transparent;
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.form-grid, .document-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.application-form label { display: grid; gap: 8px; color: var(--navy); font-size: .78rem; font-weight: 700; }
.form-wide { grid-column: 1 / -1; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.application-section { margin: 22px 0 0; padding: 18px; border: 1px solid #d8d2c8; border-radius: 7px; }
.application-section legend { padding: 0 8px; color: var(--navy-deep); font-size: .86rem; font-weight: 800; }
.application-section .form-grid { margin-top: 0; }
.kin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.kin-fields { display: grid; gap: 14px; }

.application-form input, .application-form select, .application-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d3cec4;
  border-radius: 5px;
  background: #fff;
  color: var(--navy-deep);
  outline: none;
}

.application-form textarea { resize: vertical; }
.application-form input:focus, .application-form select:focus, .application-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,173,59,.18); }

.documents { margin: 22px 0; padding: 18px; border: 1px solid #d8d2c8; border-radius: 7px; }
.documents legend { padding: 0 8px; font-size: .86rem; font-weight: 800; }
.documents legend small { color: #757d85; font-weight: 500; }
.document-grid input { min-height: 44px; padding: 8px; font-size: .75rem; }

.privacy-consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 11px !important;
  align-items: start;
  margin: 0 0 20px;
  font-weight: 500 !important;
  line-height: 1.55;
}
.privacy-consent input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--gold); }
.privacy-consent a { color: #9b7018; font-weight: 800; }

.submit-button { min-height: 52px; width: 100%; border-radius: 5px; text-transform: uppercase; letter-spacing: .05em; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--navy); text-align: center; font-size: .85rem; font-weight: 700; }
.legal-note { margin: 20px 0 0; color: #777e86; font-size: .72rem; line-height: 1.6; text-align: center; }

.policy-page { background: var(--paper); color: var(--navy-deep); }
.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 16px clamp(22px, 6vw, 92px);
  background: var(--navy-deep);
}
.policy-header .brand { width: clamp(215px, 23vw, 320px); height: 50px; }
.back-link { color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.back-link:hover { color: var(--gold-light); }

.policy-main { padding: clamp(70px, 9vw, 130px) clamp(22px, 8vw, 130px); }
.policy-intro { max-width: 950px; margin: 0 auto 70px; }
.policy-intro .eyebrow { color: #9b7018; }
.policy-intro h1 {
  color: var(--navy-deep);
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}
.policy-intro > p:last-child { max-width: 760px; color: #536175; font-size: 1.1rem; line-height: 1.75; }
.policy-updated { margin: 22px 0; color: #7d8795; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.policy-content { max-width: 950px; margin: 0 auto; }
.policy-content section { display: grid; grid-template-columns: 280px 1fr; gap: 42px; padding: 34px 0; border-top: 1px solid #cad2df; }
.policy-content h2 { margin: 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: 1.2rem; }
.policy-content section > p { grid-column: 2; margin: -34px 0 0; color: #536175; line-height: 1.75; }
.policy-content section > p + p { margin-top: 0; }
.policy-content a { color: #9b7018; font-weight: 700; }
.policy-note { margin-top: 34px; padding: 26px 30px; border-left: 4px solid var(--gold); background: #f5f0df; }
.policy-note p { margin: 8px 0 0; color: #536175; line-height: 1.7; }
.policy-footer { grid-template-columns: minmax(250px, 420px) 1fr auto; }

.upload-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 18%, rgba(213,173,59,.13), transparent 30%),
    linear-gradient(135deg, #041124 0%, #071a33 58%, #0b2546 100%);
  color: #fff;
}
.upload-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 102px;
  padding: 18px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.upload-main {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(520px, 1.2fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: start;
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 90px) 0 80px;
}
.upload-intro { position: sticky; top: 36px; padding-top: 18px; }
.upload-intro h1 { max-width: 650px; font-size: clamp(3.2rem, 6vw, 6.4rem); }
.upload-lead {
  max-width: 580px;
  margin: 26px 0 34px;
  color: #d4deea;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.75;
}
.upload-security {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(4,17,36,.52);
}
.upload-security strong { font-size: .83rem; }
.upload-security p { margin: 7px 0 0; color: #bdc9d8; font-size: .75rem; line-height: 1.65; }
.upload-security a { color: var(--gold-light); font-weight: 700; }
.upload-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: var(--paper);
  color: var(--navy-deep);
  box-shadow: 0 36px 100px rgba(0,0,0,.36);
}
.upload-card__heading, .upload-files-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.upload-card__heading p, .upload-files-heading p {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.upload-card__heading span, .upload-files-heading span {
  color: #707a87;
  font-size: .68rem;
  line-height: 1.5;
  text-align: right;
}
.upload-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.document-upload-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: .76rem;
  font-weight: 700;
}
.document-upload-form label > span small { color: #77808b; font-weight: 500; }
.upload-field-wide { grid-column: 1 / -1; }
.document-upload-form input[type="text"],
.document-upload-form input[type="tel"],
.document-upload-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d3cec4;
  border-radius: 5px;
  background: #fff;
  color: var(--navy-deep);
  outline: none;
}
.document-upload-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,173,59,.18); }
.upload-files-heading { margin: 0 0 15px; padding-top: 0; border-top: 0; }
.upload-file-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.upload-file {
  position: relative;
  min-height: 190px;
  padding: 19px;
  border: 1px dashed #bac2cc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.upload-file:hover { border-color: var(--gold); box-shadow: 0 12px 28px rgba(7,26,51,.08); transform: translateY(-2px); }
.upload-file.has-files { border-style: solid; border-color: #9b7018; background: #fcf8eb; }
.upload-file.has-error { border-style: solid; border-color: #bd2c39; background: #fff2f3; }
.upload-file__number { color: #a87814; font-size: .65rem; font-weight: 800; letter-spacing: .08em; }
.upload-file strong { display: block; margin-top: 12px; color: var(--navy-deep); font-size: .9rem; }
.upload-file small { min-height: 30px; color: #737d89; font-weight: 500; line-height: 1.45; }
.upload-file input[type="file"] { width: 100%; margin-top: 10px; color: #5f6874; font-size: .68rem; }
.upload-file input[type="file"]::file-selector-button {
  margin-right: 8px;
  padding: 8px 10px;
  border: 0;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}
.upload-file__selected {
  margin-top: 8px;
  color: #68727f;
  font-size: .62rem;
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.upload-file.has-files .upload-file__selected { color: #765512; }
.upload-file.has-error .upload-file__selected { color: #a01f2b; }
.upload-consent {
  grid-template-columns: 20px 1fr !important;
  gap: 11px !important;
  align-items: start;
  margin: 22px 0 18px;
  font-weight: 500 !important;
  line-height: 1.55;
}
.upload-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--gold); }
.upload-consent a { color: #8d6515; font-weight: 800; }
.upload-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 20px 0 23px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--gold-light), #b9881d);
  color: var(--navy-deep);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.upload-submit:hover { filter: brightness(1.04); }
.upload-submit:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.upload-status {
  min-height: 22px;
  margin: 13px 0 0;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.upload-status.is-error { color: #a01f2b; }
.upload-status.is-success { color: #5f4a12; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes hero-auto-pan {
  0% { object-position: 56% 52%; transform: scale(1.04); }
  100% { object-position: 76% 52%; transform: scale(1.015); }
}
@keyframes hero-auto-pan-mobile {
  0% { object-position: 66% 50%; transform: scale(1.055); }
  100% { object-position: 78% 50%; transform: scale(1.015); }
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }

@media (max-width: 760px) {
  .hero__image {
    object-position: 72% center;
    filter: saturate(.9) contrast(1.02) brightness(1.08);
    animation-name: hero-auto-pan-mobile;
    animation-duration: 11s;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(4,17,36,.28) 0%, rgba(4,17,36,.5) 34%, rgba(4,17,36,.86) 70%, rgba(4,17,36,.97) 100%),
      linear-gradient(90deg, rgba(4,17,36,.78) 0%, rgba(7,26,51,.3) 63%, rgba(7,26,51,.12) 100%);
  }
  .site-header { padding: 20px; }
  .brand { width: 190px; height: 38px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .62rem; }
  .hero__content { width: calc(100% - 40px); margin: auto 20px; padding: 6px 0 14px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.55rem); }
  .hero__intro { margin: 16px 0 19px; font-size: .85rem; line-height: 1.55; }
  .hero-actions { align-items: flex-start; gap: 13px; }
  .apply-button { min-height: 48px; padding: 0 17px; gap: 20px; font-size: .72rem; }
  .loan-facts { display: grid; gap: 4px; font-size: .57rem; }
  .faq-dock { grid-template-columns: 1fr; gap: 7px; padding: 10px 12px 12px; }
  .faq-dock__heading { display: flex; justify-content: space-between; align-items: baseline; }
  .faq-dock__heading p { font-size: .76rem; }
  .faq-dock__heading span { font-size: .56rem; }
  .faq-dock__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
  .faq-dock summary { min-height: 31px; padding: 7px 24px 6px 8px; font-size: .58rem; }
  .faq-dock summary::after { top: 5px; right: 8px; }
  .faq-answer { bottom: 158px; padding: 17px 18px; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 20px; }
  .form-grid, .document-grid, .kin-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .application-modal { width: calc(100% - 16px); max-height: calc(100svh - 16px); }
  .modal-shell { padding: 22px 17px; }
  .section-heading { grid-template-columns: 1fr; }
  .faq-list p { margin-right: 20px; }
  .site-footer, .policy-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer img { max-width: 320px; margin: -42px auto; }
  .policy-header { min-height: 92px; }
  .policy-header .brand { width: 190px; height: 38px; }
  .back-link { font-size: .62rem; }
  .policy-content section { grid-template-columns: 1fr; gap: 14px; }
  .policy-content section > p { grid-column: 1; margin: 0; }
  .upload-header { min-height: 86px; padding: 16px 18px; }
  .upload-header .brand { width: 185px; height: 38px; }
  .upload-main { grid-template-columns: 1fr; width: min(100% - 28px, 680px); gap: 30px; padding: 35px 0 48px; }
  .upload-intro { position: static; padding-top: 0; }
  .upload-intro h1 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .upload-lead { margin: 18px 0 24px; font-size: .9rem; }
  .upload-card { padding: 23px 16px; border-radius: 10px; }
  .upload-card__heading, .upload-files-heading { display: grid; gap: 6px; }
  .upload-card__heading span, .upload-files-heading span { text-align: left; }
  .upload-fields, .upload-file-grid { grid-template-columns: 1fr; }
  .upload-field-wide { grid-column: auto; }
  .upload-file { min-height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
