/* ============================================================
   TRS Finance — Personal Finance Desk Theme
   Ledger-desk #F7F8F5 / Abacus-green #33693B / Coin-brass #C9A44C
   ============================================================ */

:root {
  --ledger-desk: #F7F8F5;
  --file-cream: #FFFFFF;
  --coin-brass: #C9A44C;
  --receipt-pink: #E8B4B0;
  --abacus-ink: #26301F;
  --duke-grey: #8A948C;
  --hairline: #DFE6DB;
  --deep-ledger: #1F2A20;
  --abacus-green: #33693B;
  --mint-fill: #6FA578;
  --ledger-green-dark: #28552F;
  --body-text: #3A4436;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--abacus-ink);
  background-color: var(--ledger-desk);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BANKER-LAMP NAV
   ============================================================ */
.bankerlamp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--file-cream);
  box-shadow: 0 2px 14px rgba(38, 48, 31, 0.08);
  width: 100%;
}

.lamp-shade {
  height: 12px;
  width: 100%;
  background: var(--abacus-green);
  position: relative;
  border-bottom: 3px solid transparent;
}

.lamp-shade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent 2%, var(--coin-brass) 8%, transparent 15%, var(--coin-brass) 21%, transparent 30%, var(--coin-brass) 38%, transparent 47%, var(--coin-brass) 55%, transparent 63%, var(--coin-brass) 72%, transparent 80%, var(--coin-brass) 88%, transparent 96%);
}

.lamp-shade::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  background: var(--coin-brass);
  box-shadow: calc(100vw - 24px) 0 0 0 var(--coin-brass);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.14em;
  color: var(--abacus-ink);
}

.abacus-glyph {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
  height: 20px;
  border: 2px solid var(--abacus-green);
  background: var(--file-cream);
  padding: 3px 2px;
  position: relative;
}

.abacus-glyph .rod {
  display: block;
  height: 3px;
  background: var(--abacus-green);
  position: relative;
}

.abacus-glyph .rod::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 4px;
  height: 5px;
  border-radius: 40%;
  background: var(--coin-brass);
}

.abacus-glyph .rod:nth-of-type(2)::before {
  left: auto;
  right: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--abacus-ink);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.nav-links .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--receipt-pink);
  display: inline-block;
}

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

.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--abacus-green);
}

.nav-links a:hover::before {
  content: "\25CF";
  position: absolute;
  right: -9px;
  top: -1px;
  font-size: 6px;
  color: var(--coin-brass);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle .bar {
  width: 20px;
  height: 2px;
  background: var(--abacus-green);
}

/* ============================================================
   ABACUS-DESK HERO
   ============================================================ */
.abacus-hero {
  width: 100%;
  background-color: var(--ledger-desk);
  border-bottom: 1px solid var(--hairline);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 90px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 50px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--abacus-green);
  color: var(--file-cream);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.12;
  color: var(--abacus-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-title .green {
  color: var(--abacus-green);
}

.hero-sub {
  color: var(--duke-grey);
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--abacus-green);
  color: var(--file-cream);
}

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

.btn-outline {
  background: transparent;
  color: var(--abacus-green);
  border: 1px solid var(--abacus-green);
}

.btn-outline:hover {
  background: var(--abacus-green);
  color: var(--file-cream);
}

/* Hero still-life */
.hero-still {
  position: relative;
  height: 440px;
}

.desk-blotter {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 260px;
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(38, 48, 31, 0.12);
}

/* Standing abacus */
.standing-abacus {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 120px;
  height: 200px;
  background: #F0E6D0;
  border: 6px solid #D9B77E;
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 3;
}

.standing-abacus .s-rod {
  height: 6px;
  background: #C9B078;
  border-radius: 2px;
  position: relative;
}

.s-rod .bead {
  position: absolute;
  top: -7px;
  width: 14px;
  height: 18px;
  border-radius: 45%;
}

.s-rod .bead.brass {
  background: var(--coin-brass);
}

.s-rod .bead.mint {
  background: var(--mint-fill);
}

/* Savings jar */
.savings-jar {
  position: absolute;
  left: 10px;
  bottom: 40px;
  width: 90px;
  height: 130px;
  z-index: 4;
}

.jar-body {
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 80px;
  height: 108px;
  background: rgba(198, 224, 206, 0.35);
  border: 2px solid #C3D9C8;
  border-radius: 10px 10px 18px 18px;
}

.jar-body::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200, 228, 210, 0.8);
}

.jar-lid {
  position: absolute;
  top: 0;
  left: 18px;
  width: 54px;
  height: 14px;
  background: var(--coin-brass);
  border-radius: 4px 4px 0 0;
}

.jar-slot {
  position: absolute;
  top: 4px;
  left: 24px;
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: var(--file-cream);
}

.jar-coins {
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 62px;
  height: 54px;
}

.jar-coins .coin {
  position: absolute;
  width: 14px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-fill);
}

.jar-goal {
  position: absolute;
  top: 30px;
  left: 7px;
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  padding: 2px 6px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--abacus-green);
  font-weight: 700;
  white-space: nowrap;
}

/* Budget envelopes */
.envelope-set {
  position: absolute;
  left: 8px;
  bottom: -22px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.envelope {
  width: 68px;
  height: 44px;
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(38, 48, 31, 0.08);
}

.envelope::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background: linear-gradient(45deg, transparent 49%, var(--coin-brass) 50%);
  border-radius: 3px 3px 0 0;
  filter: saturate(0.23);
}

.envelope .env-check {
  color: var(--receipt-pink);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
}

.envelope span {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--abacus-ink);
  font-weight: 700;
}

/* Banker lamp */
.banker-lamp {
  position: absolute;
  top: 120px;
  right: 200px;
  z-index: 6;
}

.lamp-meg {
  width: 120px;
  height: 40px;
  background: var(--abacus-green);
  border-radius: 50% / 100%;
  margin-top: 18px;
  position: relative;
}

.lamp-meg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 96px;
  height: 6px;
  background: var(--coin-brass);
  border-radius: 4px;
}

.lamp-base {
  width: 30px;
  height: 16px;
  background: var(--coin-brass);
  border-radius: 6px 6px 2px 2px;
  margin: 0 auto;
}

.lamp-stem {
  width: 4px;
  height: 34px;
  background: var(--coin-brass);
  margin: 0 auto;
}

.lamp-pool {
  position: absolute;
  top: 58px;
  left: 10px;
  width: 100px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201, 164, 76, 0.28);
}

/* Compound growth card */
.compound-card {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 170px;
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(38, 48, 31, 0.1);
  z-index: 4;
}

.compound-card .cc-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--duke-grey);
  margin-bottom: 10px;
  font-weight: 700;
}

.compound-chart {
  position: relative;
  height: 60px;
  border-bottom: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.compound-chart .curve {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 0;
  height: 60px;
  border-bottom: 3px solid var(--abacus-green);
  border-right: 0;
  border-radius: 0 60% 0 0;
  transform: skewY(-6deg);
  transform-origin: bottom left;
}

.compound-chart .node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coin-brass);
  border: 2px solid var(--file-cream);
}

.compound-chart .axis {
  position: absolute;
  width: 1px;
  height: 8px;
  background: var(--duke-grey);
  bottom: -1px;
}

.compound-chart .val {
  position: absolute;
  font-size: 8px;
  color: var(--duke-grey);
  bottom: -14px;
}

/* Receipt spike */
.receipt-spike {
  position: absolute;
  top: 230px;
  left: 0px;
  z-index: 5;
}

.spike-stand {
  width: 60px;
  height: 12px;
  background: var(--duke-grey);
  border-radius: 4px;
  position: relative;
}

.spike-stand::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -40px;
  width: 3px;
  height: 40px;
  background: var(--duke-grey);
  border-radius: 2px;
}

.receipt-paper {
  position: absolute;
  left: 20px;
  top: -30px;
  width: 34px;
  height: 28px;
  background: var(--file-cream);
  border-left: 3px solid var(--receipt-pink);
  box-shadow: 0 3px 6px rgba(38, 48, 31, 0.1);
  transform: rotate(-8deg);
}

.receipt-paper:nth-of-type(2) {
  transform: rotate(-2deg);
  top: -26px;
  left: 15px;
}

.receipt-paper:nth-of-type(3) {
  transform: rotate(-12deg);
  top: -34px;
  left: 25px;
}

/* ============================================================
   LEDGER-COLUMN ROWS (planrows)
   ============================================================ */
.planrows {
  width: 100%;
  padding: 90px 0;
  background-color: var(--ledger-desk);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--abacus-green);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  color: var(--abacus-green);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--duke-grey);
  font-size: 16px;
  line-height: 1.7;
}

.plan-row {
  display: grid;
  grid-template-columns: 70px 1fr 130px;
  gap: 26px;
  align-items: center;
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 26px 28px;
  margin-bottom: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(38, 48, 31, 0.1);
}

.folder-tab {
  background: var(--coin-brass);
  color: var(--abacus-ink);
  width: 58px;
  height: 34px;
  border-radius: 4px 4px 2px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
  box-shadow: 0 4px 8px rgba(201, 164, 76, 0.35);
}

.folder-tab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--file-cream);
  filter: saturate(0.36);
  border-radius: 4px 4px 0 0;
}

.plan-row-info h3 {
  font-size: 20px;
  color: var(--abacus-ink);
  margin-bottom: 6px;
}

.plan-row-info p {
  color: var(--duke-grey);
  font-size: 15px;
  line-height: 1.7;
}

.progress-meter {
  text-align: center;
}

.progress-meter .track {
  height: 9px;
  background: var(--hairline);
  border-radius: 5px;
  position: relative;
  width: 110px;
  margin: 0 auto 8px;
}

.progress-meter .fill {
  height: 9px;
  border-radius: 5px;
  background: var(--mint-fill);
}

.progress-meter .flag {
  position: absolute;
  top: -7px;
  width: 4px;
  height: 22px;
  background: var(--coin-brass);
  border-radius: 1px;
}

.progress-meter .pct {
  font-size: 12px;
  color: var(--abacus-green);
  font-weight: 700;
}

/* ============================================================
   FISCAL METRIC BAND
   ============================================================ */
.fiscal-band {
  width: 100%;
  background: var(--abacus-green);
  padding: 70px 0;
}

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

.fiscal-item {
  text-align: center;
  color: var(--file-cream);
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.fiscal-item:first-child {
  border-left: none;
}

.fiscal-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--file-cream);
  margin-bottom: 6px;
  line-height: 1.1;
}

.fiscal-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E7F1E6;
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement-band {
  width: 100%;
  background: var(--file-cream);
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.statement-inner {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 26px;
  border-left: 4px solid var(--coin-brass);
}

.statement-text {
  font-size: 24px;
  line-height: 1.6;
  color: var(--abacus-ink);
  font-weight: 600;
  margin-bottom: 16px;
}

.statement-attr {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--abacus-green);
  font-weight: 700;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  width: 100%;
  background: var(--ledger-desk);
  padding: 80px 0;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: 32px;
  color: var(--abacus-green);
  margin-bottom: 14px;
}

.cta-inner p {
  color: var(--duke-grey);
  font-size: 16px;
  margin-bottom: 26px;
}

/* ============================================================
   ENVELOPE-FILE FOOTER
   ============================================================ */
.envelope-footer {
  width: 100%;
  background: var(--deep-ledger);
  position: relative;
  z-index: 1;
}

.footer-tab-strip {
  height: 14px;
  width: 100%;
  background: var(--coin-brass);
  background-image: linear-gradient(90deg, transparent 40%, var(--deep-ledger) 40%, var(--deep-ledger) 42%, transparent 42%);
  background-size: 70px 14px;
  position: relative;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--file-cream);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #E7F1E6;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.footer-links a:hover {
  color: var(--coin-brass);
}

.footer-piggy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}

.piggy-silhouette {
  width: 46px;
  height: 34px;
  background: var(--coin-brass);
  border-radius: 50% 50% 40% 40%;
  position: relative;
}

.piggy-silhouette::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  width: 4px;
  height: 14px;
  background: var(--coin-brass);
  border-radius: 3px;
}

.piggy-silhouette::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--coin-brass);
  border-radius: 50%;
}

.piggy-slot {
  position: absolute;
  top: 9px;
  left: 12px;
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: var(--deep-ledger);
}

.piggy-coin {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--file-cream);
  border: 2px solid var(--coin-brass);
}

.footer-receipt {
  width: 12px;
  height: 26px;
  background: var(--receipt-pink);
  border-radius: 2px;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  color: #B9C4BB;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* ============================================================
   SERVICES & CONTACT SECONDARY PAGES
   ============================================================ */
.page-hero {
  background: var(--ledger-desk);
  padding: 70px 0;
  border-bottom: 1px solid var(--hairline);
}

.page-hero h1 {
  font-size: 40px;
  color: var(--abacus-ink);
  margin-bottom: 16px;
}

.page-hero .green {
  color: var(--abacus-green);
}

.page-hero p {
  color: var(--duke-grey);
  font-size: 17px;
  max-width: 640px;
}

.ledger-stripes {
  width: 100%;
  padding: 80px 0;
  background: var(--ledger-desk);
}

.ledger-stripes .row {
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 16px;
}

.ledger-stripes .row h3 {
  font-size: 22px;
  color: var(--abacus-green);
  margin-bottom: 10px;
}

.ledger-stripes .row p {
  color: var(--abacus-ink);
  font-size: 15px;
  line-height: 1.75;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.process-step {
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.process-step .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--abacus-green);
  color: var(--file-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
}

.process-step h4 {
  color: var(--abacus-ink);
  margin-bottom: 6px;
}

.process-step p {
  color: var(--duke-grey);
  font-size: 14px;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 34px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--abacus-ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--abacus-ink);
  background: var(--ledger-desk);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--abacus-green);
  box-shadow: 0 0 0 3px rgba(51, 105, 59, 0.12);
}

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

.form-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.form-status.success {
  color: var(--abacus-green);
  display: block;
}

.form-status.error {
  color: #B0483F;
  display: block;
}

.contact-aside {
  background: var(--abacus-green);
  color: var(--file-cream);
  border-radius: 10px;
  padding: 30px;
}

.contact-aside h3 {
  color: var(--file-cream);
  font-size: 20px;
  margin-bottom: 18px;
}

.contact-aside .info-block {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-aside .info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-aside .info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E7F1E6;
  margin-bottom: 6px;
}

.contact-aside .info-value {
  font-size: 15px;
  color: var(--file-cream);
  line-height: 1.7;
}

/* FAQ accordion */
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--file-cream);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--abacus-ink);
}

.faq-q .faq-icon {
  color: var(--abacus-green);
  font-size: 20px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 22px 20px;
  color: var(--duke-grey);
  font-size: 15px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 24px 60px;
  }

  .hero-still {
    height: 330px;
    max-width: 480px;
  }

  .fiscal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .fiscal-item:nth-child(3) {
    border-left: none;
  }

  .plan-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .progress-meter {
    text-align: left;
  }

  .progress-meter .track {
    margin: 6px 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--file-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 24px 24px;
    gap: 12px;
    display: none;
    box-shadow: 0 14px 22px rgba(38, 48, 31, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .dot {
    display: none;
  }
}

@media (max-width: 540px) {
  .nav-brand {
    font-size: 18px;
  }

  .hero-title {
    font-size: 34px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .fiscal-item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 26px;
  }

  .fiscal-item:last-child {
    border-bottom: none;
  }
}
