:root {
  --navy: #071b33;
  --deep-blue: #0b2a4a;
  --gold: #c9a24d;
  --light-gold: #e6c873;
  --white: #ffffff;
  --soft: #f5f7fa;
  --text: #1e293b;
  --muted: #64748b;
  --line: #dce5ef;
  --success: #167f62;
  --danger: #b42318;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(7, 27, 51, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.section-pad {
  padding: clamp(72px, 9vw, 128px) 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 8px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 239, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
}

.site-nav a {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  border-color: rgba(201, 162, 77, 0.65);
  box-shadow: 0 14px 28px rgba(201, 162, 77, 0.24);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary:not(.light) {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary.light {
  color: var(--white);
}

.btn-muted {
  color: var(--text);
  background: var(--soft);
  border-color: var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 570px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.1vw, 4.05rem);
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 3.8vw, 3.55rem);
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin-top: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.98), rgba(7, 27, 51, 0.74) 54%, rgba(7, 27, 51, 0.34)),
    url("../images/assets/finance-workspace.svg") center right / cover no-repeat;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  padding: 50px 0;
}

.hero-content,
.hero-panel,
.hero-actions,
.hero-metrics,
.cash-card {
  min-width: 0;
}

.hero-content {
  max-width: 100%;
}

.hero-content h1,
.hero-content p {
  max-width: 100%;
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--light-gold);
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  overflow-wrap: anywhere;
}

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

.hero-metrics {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 38px 0 0;
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.hero-metrics dt {
  color: var(--light-gold);
  font-size: 1.45rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-panel {
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(230, 200, 115, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  max-width: 100%;
}

.panel-top,
.cash-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-top {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.panel-top strong {
  color: var(--light-gold);
}

.cash-card {
  align-items: flex-start;
  flex-direction: column;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.cash-card small {
  color: var(--light-gold);
  font-weight: 750;
}

.cash-card strong {
  max-width: 310px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 160px;
  margin: 28px 0;
}

.bars span {
  flex: 1;
  min-width: 32px;
  background: linear-gradient(180deg, var(--light-gold), rgba(201, 162, 77, 0.2));
  border-radius: 8px 8px 0 0;
}

.section-head {
  max-width: 720px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.two-col,
.diagnostic-grid,
.faq-grid,
.ceo-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 72px);
}

.problem,
.solutions,
.process,
.faq {
  background: var(--soft);
}

.pain-grid,
.feature-grid,
.method-grid,
.solution-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.pain-card,
.feature-card,
.method-card,
.solution-card,
.testimonial-card,
.diagnostic-app {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(7, 27, 51, 0.055);
}

.pain-card {
  min-height: 92px;
  padding: 22px;
  color: var(--navy);
  font-weight: 750;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.feature-card,
.method-card,
.solution-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.method-card:hover,
.solution-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 77, 0.46);
  box-shadow: var(--shadow);
}

.feature-card span,
.method-card strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--navy);
  background: #fff7e3;
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: var(--radius);
  font-weight: 850;
}

.feature-card p,
.method-card p,
.solution-card p,
.testimonial-card p {
  color: var(--muted);
}

.method {
  color: var(--white);
  background: var(--navy);
}

.method h2,
.method h3 {
  color: var(--white);
}

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

.method-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.method-card p {
  color: rgba(255, 255, 255, 0.72);
}

.highlight-strip,
.terms-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 26px;
  background: #fff7e3;
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: var(--radius);
}

.highlight-strip span,
.tag {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.highlight-strip p,
.terms-strip span {
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.solution-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--deep-blue));
  border-color: rgba(201, 162, 77, 0.48);
}

.solution-card.featured h3,
.solution-card.featured .check-list li {
  color: var(--white);
}

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

.check-list.compact {
  margin-top: 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.audience-grid span,
.values-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 750;
}

.diagnostic-app {
  padding: clamp(24px, 4vw, 34px);
}

.diagnostic-progress {
  height: 10px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 999px;
}

.diagnostic-progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
  transition: width 220ms ease;
}

.step-count {
  margin: 24px 0 10px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.answers {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.answer-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
}

.answer-option:hover,
.answer-option.is-selected {
  border-color: var(--gold);
  background: #fffaf0;
}

.answer-option input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.diagnostic-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.form-error {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--danger);
  font-weight: 700;
}

.diagnostic-result {
  margin-top: 24px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.diagnostic-result strong {
  color: var(--navy);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
  background: #fff7e3;
  border-radius: 50%;
  font-weight: 850;
}

.timeline h3 {
  font-size: 1.18rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.terms-strip {
  flex-wrap: wrap;
  background: var(--white);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.testimonial-card {
  padding: 28px;
}

.avatar {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  border-radius: 50%;
  font-weight: 850;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--navy);
  font-weight: 850;
}

.testimonial-card span {
  color: var(--muted);
}

.ceo-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  aspect-ratio: 9 / 14;
  background: var(--navy);
  border: 1px solid rgba(201, 162, 77, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ceo-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 27, 51, 0) 62%, rgba(7, 27, 51, 0.28));
  content: "";
}

.role {
  color: var(--gold);
  font-weight: 850;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.accordion summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--gold);
  font-size: 1.35rem;
  transform: translateY(-50%);
  content: "+";
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  color: var(--white);
  background: var(--navy);
}

.cta-box {
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.92), rgba(11, 42, 74, 0.94)),
    url("../images/assets/cta-finance.svg") center / cover no-repeat;
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: var(--radius);
}

.cta-box h2 {
  max-width: 760px;
  color: var(--white);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #041327;
  padding-bottom: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.75fr;
  gap: 30px;
  padding: 48px 0;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.92rem;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--light-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(20px, 4vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-rights {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--light-gold);
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 40;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(7, 27, 51, 0.2);
}

.whatsapp-float {
  right: 22px;
  bottom: 22px;
  color: var(--white);
  background: #20b45b;
}

.whatsapp-float svg {
  display: block;
}

.back-to-top {
  right: 22px;
  bottom: 86px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
