/* ============================================================
   4Wealth Financial Group — Pay Bill
   Shared ground / type / nav system as the homepage, blog & careers.
   Full-page fixed contour background. Brand action color #00827E.
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */

:root {
  --bg:            #091119;
  --bg-2:          #0b1622;
  --bg-3:          #0e1c2c;
  --teal:          #00827E;
  --teal-light:    #00827E;
  --teal-dark:     #00827E;
  /* primary action color requested by client */
  --action:        #00827E;
  --action-hover:  #1f5654;
  --navy:          #0D1B2A;
  --white:         #F5F4F0;
  --cream:         #F0EFE9;
  --dim:           rgba(245, 244, 240, 0.60);
  --dim-2:         rgba(245, 244, 240, 0.40);
  --rule:          rgba(245, 244, 240, 0.10);
  --rule-strong:   rgba(245, 244, 240, 0.18);
  --serif:         'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:          'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono:          'IBM Plex Mono', ui-monospace, monospace;
  --maxw:          1280px;
  --pad:           clamp(22px, 5vw, 84px);
  --transition-reveal: opacity 1.05s cubic-bezier(.16, .84, .44, 1),
                       transform 1.05s cubic-bezier(.16, .84, .44, 1);
}


/* ============================================================
   2. BASE / RESET
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
}

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

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

::selection {
  background: var(--action);
  color: #fff;
}


/* ============================================================
   3. BACKGROUND & OVERLAYS
   ============================================================ */

/* Full-page fixed contour canvas */
#net {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

/* Brand glow at top */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(90% 55% at 50% 6%, rgba(0,130,126, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Gentle vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(125% 105% at 50% 42%, rgba(0, 0, 0, 0) 46%, rgba(9, 17, 25, 0.62) 100%);
}


/* ============================================================
   4. LAYOUT UTILITY
   ============================================================ */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}


/* ============================================================
   5. TYPOGRAPHY UTILITIES
   ============================================================ */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--teal-light);
  opacity: .7;
}

.eyebrow.center::before {
  display: none;
}

h2.section-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.04;
  font-size: clamp(34px, 5vw, 62px);
  color: var(--white);
}

.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
  color: var(--dim);
  max-width: 60ch;
}

.italic-teal {
  font-style: italic;
  color: var(--teal-light);
}


/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 14px 26px;
  border-radius: 999px;
  transition: all .22s ease;
  white-space: nowrap;
}

.btn .arrow {
  transition: transform .22s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-solid {
  background: #00827E;
  color: #f2f4f3;
  border-color: #00827E;
}

.btn-solid:hover {
  background: #006d6a;
  border-color: #006d6a;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,130,126,0.35);
}

.btn-ghost {
  background: transparent;
  color: #f2f4f3;
  border-color: #00827E;
}

.btn-ghost:hover {
  background: rgba(0,130,126,0.10);
  border-color: #006d6a;
  transform: translateY(-2px);
}


/* ============================================================
   7. NAVIGATION
   ============================================================ */

#nav4w {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 10px 12px 10px 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(10, 18, 24, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.nav-link-active {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  font-size: 15px;
  color: #F2F4F3;
  border-bottom: 1.5px solid #00827E;
  transition: color 0.3s;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  font-size: 15px;
  color: rgba(242, 244, 243, 0.62);
  transition: color 0.3s;
  cursor: pointer;
}

.nav-link.is-current {
  color: #f2f4f3;
  border-bottom: 1.5px solid rgba(0,130,126, 0.8);
}

.nav-link:hover {
  color: #F2F4F3;
}

.nav-cta {
  margin-left: 4px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  color: #F2F4F3;
  border: 1px solid rgba(0,130,126, 0.55);
  border-radius: 999px;
  background: rgba(0,130,126, 0.10);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.nav-cta:hover {
  background: rgba(0,130,126, 0.22);
  transform: translateY(-1px);
}

.nav-chevron {
  width: 11px;
  height: 11px;
  transition: transform 0.25s ease;
}

.nav-item {
  position: relative;
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}


/* ============================================================
   8. DROPDOWN MENUS
   ============================================================ */

.dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: calc(100% + 14px);
  min-width: 300px;
  background: rgba(11, 21, 32, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(245, 244, 240, 0.18);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dd-row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 13px 14px;
  border-radius: 9px;
  transition: background 0.16s ease;
}

.dd-row:hover {
  background: rgba(0,130,126, 0.06);
}

.dd-ico {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 8px;
  background: rgba(0,130,126, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00827E;
}

.dd-title {
  font-size: 15px;
  font-weight: 600;
  color: #F5F4F0;
  display: block;
}

.dd-desc {
  font-size: 12.5px;
  color: rgba(245, 244, 240, 0.40);
  margin-top: 2px;
  line-height: 1.4;
}


/* ============================================================
   9. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  padding: 148px 0 56px;
}

.hero-content {
  position: relative;
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  margin-bottom: 26px;
}

.hero-wordmark {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(48px, 8vw, 116px);
  line-height: .94;
  letter-spacing: -.025em;
}

.hero-wordmark .it {
  font-style: italic;
  color: var(--cream);
}

.hero-tagline {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(21px, 2.6vw, 34px);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--cream);
  max-width: 30ch;
  margin-top: 30px;
}

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

.hero-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  opacity: .7;
}

.hero-scrollcue span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero-scrollcue svg {
  animation: cue 1.9s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(0);    opacity: .7; }
  50%       { transform: translateY(5px); opacity: 1;  }
}


/* ============================================================
   10. SECTIONS
   ============================================================ */

section {
  position: relative;
  z-index: 1;
}

.sec {
  padding: clamp(70px, 10vh, 130px) 0;
}

.sec-tight {
  padding: clamp(24px, 4vh, 52px) 0 clamp(40px, 7vh, 80px);
}

.divider {
  height: 1px;
  background: var(--rule);
  max-width: var(--maxw);
  margin: 0 auto;
}


/* ============================================================
   11. PAY PANEL
   ============================================================ */

.pay {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.pay-copy {
  position: sticky;
  top: 96px;
}

.pay-copy h2 {
  margin-top: 18px;
}

.pay-copy .lead {
  margin-top: 22px;
  max-width: 42ch;
}

.assure {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.assure-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}

.assure-row:last-child {
  border-bottom: 1px solid var(--rule);
}

.assure-ico {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 10px;
  background: rgba(0,130,126, .1);
  border: 1px solid rgba(0,130,126, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
}

.assure-row h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--white);
}

.assure-row p {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 4px;
  max-width: 42ch;
}


/* ============================================================
   12. PAYMENT FORM CARD
   ============================================================ */

.paycard {
  background: rgba(11, 22, 34, .72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--rule-strong);
  border-radius: 18px;
  padding: clamp(28px, 3.4vw, 44px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.paycard::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,130,126, .14), transparent 65%);
  pointer-events: none;
}

.paycard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.paycard-head .ttl {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 25px;
  letter-spacing: -.01em;
  color: var(--white);
}

.secure-pill {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,130,126, .1);
  border: 1px solid rgba(0,130,126, .26);
  border-radius: 999px;
  padding: 7px 13px;
  white-space: nowrap;
}

.paycard form {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.field input,
.field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--white);
  background: var(--bg-3);
  border: 1px solid var(--rule-strong);
  border-radius: 9px;
  padding: 14px 15px;
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field input::placeholder {
  color: var(--dim-2);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(0,130,126, .18);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 10 10' fill='none' stroke='%2300827E' stroke-width='1.4'><path d='M2 4l3 3 3-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.amount-field {
  position: relative;
}

.amount-field .cur {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dim);
  font-size: 17px;
  pointer-events: none;
}

.amount-field input {
  padding-left: 30px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
}

.pay-submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 17px 26px;
}

.pay-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
  position: relative;
}

.pay-methods {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--dim-2);
}

.pay-methods .mk {
  height: 24px;
  width: 38px;
  border: 1px solid var(--rule-strong);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .06em;
  color: var(--dim);
  background: rgba(245, 244, 240, .03);
}

.pay-note {
  font-size: 12.5px;
  color: var(--dim-2);
  line-height: 1.4;
  max-width: 30ch;
}

/* Success state */
.pay-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
  position: relative;
}

.pay-success.show {
  display: flex;
}

.pay-success .chk {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,130,126, .14);
  border: 1px solid rgba(0,130,126, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  margin-bottom: 22px;
}

.pay-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 27px;
  color: var(--white);
  letter-spacing: -.01em;
}

.pay-success p {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 12px;
  max-width: 38ch;
}

.pay-success .ref {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--teal-light);
  margin-top: 18px;
  letter-spacing: .04em;
}

.pay-success button {
  margin-top: 26px;
}


/* ============================================================
   13. OTHER WAYS TO PAY
   ============================================================ */

.ways-head {
  max-width: 60ch;
  margin-bottom: 46px;
}

.ways-head h2 {
  margin-top: 18px;
}

.ways-head .lead {
  margin-top: 20px;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.way {
  display: flex;
  flex-direction: column;
  background: rgba(11, 22, 34, .66);
  backdrop-filter: blur(6px);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 30px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

.way:hover {
  border-color: rgba(0,130,126, .42);
  transform: translateY(-5px);
  background: rgba(14, 28, 44, .8);
}

.way-ico {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 12px;
  background: rgba(0,130,126, .12);
  border: 1px solid rgba(0,130,126, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
}

.way h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  color: var(--white);
  letter-spacing: -.01em;
  margin-top: 22px;
}

.way p {
  font-size: 14.5px;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 12px;
}

.way .val {
  font-size: 16px;
  color: var(--white);
  margin-top: 16px;
  line-height: 1.5;
}

.way .val .mono {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--teal-light);
  letter-spacing: .02em;
}

.way-link {
  margin-top: auto;
  padding-top: 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

.way-link .arrow {
  transition: transform .22s ease;
}

.way:hover .way-link .arrow {
  transform: translateX(4px);
}


/* ============================================================
   14. CTA BAND
   ============================================================ */

.cta {
  background: linear-gradient(150deg, var(--navy) 0%, #091119 70%);
  border: 1px solid var(--rule-strong);
  border-radius: 20px;
  padding: clamp(44px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,130,126, .16), transparent 65%);
}

.cta h2 {
  position: relative;
}

.cta .lead {
  margin-top: 20px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
  position: relative;
}

.cta-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cta-side .row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cta-side .ci {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 9px;
  background: rgba(245, 244, 240, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
}

.cta-side .ck {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.cta-side .cv {
  font-size: 16px;
  color: var(--white);
  margin-top: 3px;
  line-height: 1.45;
}


/* ============================================================
   15. FOOTER
   ============================================================ */

footer {
  border-top: 1px solid var(--rule);
  padding: 70px 0 40px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  background: rgba(9, 17, 25, .6);
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.foot-brand .mark-txt {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -.01em;
}

.foot-brand .mark-txt sup {
  color: var(--teal);
  font-size: 13px;
}

.foot-brand p {
  font-size: 14.5px;
  color: var(--dim);
  margin-top: 16px;
  max-width: 34ch;
  line-height: 1.6;
}

.foot-soc {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.foot-soc a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  transition: all .2s ease;
}

.foot-soc a:hover {
  color: var(--teal-light);
  border-color: rgba(0,130,126, .4);
}

.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f2f4f3;
  margin-bottom: 18px;
}

.foot-col a {
  display: block;
  font-size: 14.5px;
  color: var(--dim);
  padding: 7px 0;
  transition: color .18s ease;
}

.foot-col a:hover {
  color: var(--teal-light);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--dim-2);
}

.foot-bottom .disc {
  max-width: 62ch;
  line-height: 1.5;
}


/* ============================================================
   16. REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: var(--transition-reveal);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .8s cubic-bezier(.2, .6, .2, 1),
    transform .8s cubic-bezier(.2, .6, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }


/* ============================================================
   17. RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .pay              { grid-template-columns: 1fr; gap: 48px; }
  .pay-copy         { position: static; }
  .ways-grid        { grid-template-columns: 1fr; max-width: 540px; }
  .foot-top         { grid-template-columns: 1fr 1fr; }
  .cta              { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  body              { font-size: 16px; }
  .nav-items .nav-link.hide-sm { display: none; }
  .hero             { height: auto; min-height: 0; padding: 128px 0 60px; }
  .hero-scrollcue   { display: none; }
  .field-row        { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .foot-top         { grid-template-columns: 1fr; }
  .nav              { padding: 6px 7px; }
  .nav-link         { padding: 10px 12px; font-size: 13.5px; }
  .paycard          { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *                 { animation: none !important; }
  .reveal           { opacity: 1; transform: none; transition: none; }
  html              { scroll-behavior: auto; }
}


/* ============================================================
   MOBILE BREAKPOINTS — paybill.css
   ============================================================ */

/* Hero wordmark */
@media (max-width: 480px) {
  .hero-wordmark {
    font-size: clamp(36px, 10vw, 60px) !important;
  }
  .hero-tagline {
    font-size: max(15px, 3.8vw) !important;
  }
}

/* Payment card tighten */
@media (max-width: 420px) {
  .pay-card,
  .payment-card {
    padding: 22px 16px !important;
    border-radius: 14px !important;
  }
}
