/* =========================================================
   FINANCIA PRESTIGE — Design system
   Palette: emerald deep / emerald mid / gold / cream
   Typo: Sora (display) + Manrope (body)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --emerald-deep: #064e3b;
  --emerald-mid: #0d7a5f;
  --gold: #c9a84c;
  --cream: #fdfffc;
  --zinc-950: #09090b;
  --zinc-900: #18181b;
  --zinc-700: #3f3f46;
  --zinc-500: #71717a;
  --zinc-300: #d4d4d8;
  --max: 1200px;
  --radius: 4px;
  --transition: 0.25s ease;
  --shadow-soft: 0 4px 24px rgba(6, 78, 59, 0.06);
  --shadow-card: 0 8px 32px rgba(6, 78, 59, 0.10);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 18px; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--zinc-900);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

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

/* Typography */
.font-sora { font-family: 'Sora', sans-serif; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.15em; }
.tracking-wider { letter-spacing: 0.08em; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-tighter { letter-spacing: -0.04em; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--emerald-deep);
}
.brand-mark {
  width: 24px; height: 24px;
  background: var(--emerald-deep);
  border-radius: 3px;
  display: grid; place-items: center;
}
.brand-mark::after {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a { color: rgba(6, 78, 59, 0.7); }
.nav-links a:hover, .nav-links a.active { color: var(--emerald-deep); }
@media (min-width: 900px) {
  .nav-links { display: flex; }
}
.btn-nav {
  display: none;
  padding: 0.55rem 1rem;
  background: var(--emerald-deep);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-nav:hover { background: var(--emerald-mid); }
@media (min-width: 900px) {
  .btn-nav { display: inline-flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--emerald-deep);
  transition: var(--transition);
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

.lang-switcher-select {
  background: transparent;
  color: var(--emerald-deep);
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: var(--radius);
  padding: 0.25rem 0.5rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}
.lang-switcher-select:hover, .lang-switcher-select:focus {
  border-color: var(--emerald-deep);
}
.nav-inner .lang-switcher-select { display: none; }
@media (min-width: 900px) {
  .nav-inner .lang-switcher-select { display: inline-block; }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
  border-top: 1px solid rgba(6, 78, 59, 0.06);
  background: var(--cream);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--emerald-deep);
  font-weight: 500;
  padding: 0.4rem 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--emerald-deep);
}
.btn-primary:hover { background: #d8b85a; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3); }
.btn-dark {
  background: var(--emerald-deep);
  color: var(--cream);
}
.btn-dark:hover { background: var(--emerald-mid); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--emerald-deep);
  border: 1px solid rgba(6, 78, 59, 0.2);
}
.btn-ghost:hover { background: rgba(6, 78, 59, 0.05); }

/* ========== HERO ========== */
.hero {
  padding: 4rem 1.5rem 3rem;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; }
  .hero { padding: 5rem 1.5rem 4rem; }
}
.eyebrow {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--emerald-deep);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero p.lead {
  max-width: 48ch;
  color: rgba(6, 78, 59, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Parallax */
.parallax-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.08), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(13, 122, 95, 0.06), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ========== SIMULATOR CARD ========== */
.sim-card {
  background: var(--emerald-deep);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.sim-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.sim-head h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  color: var(--cream);
  font-size: 1.1rem;
}
.sim-head .taeg {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}
.sim-field { margin-bottom: 1.25rem; }
.sim-label {
  display: flex; justify-content: space-between;
  color: rgba(245, 240, 224, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.sim-label .val { color: var(--cream); font-weight: 500; }
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(13, 122, 95, 0.6);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--emerald-deep);
  cursor: pointer;
  transition: transform var(--transition);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--emerald-deep);
  cursor: pointer;
}
.sim-result {
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 240, 224, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.sim-result .label {
  color: rgba(245, 240, 224, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sim-result .amount {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.65rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.sim-card .btn { width: 100%; }

/* ========== BENTO GRID (credits) ========== */
.section {
  padding: 4rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--emerald-deep);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: rgba(6, 78, 59, 0.65);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
}
.bento-card {
  background: rgba(13, 122, 95, 0.05);
  border: 1px solid rgba(6, 78, 59, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201, 168, 76, 0.4);
}
.bento-card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  color: var(--emerald-deep);
}
.bento-card.large { grid-column: span 2; grid-row: span 2; padding: 2rem; min-height: 320px; }
.bento-card.wide { grid-column: span 2; }
.bento-card.dark { background: var(--zinc-950); border-color: transparent; color: var(--cream); }
.bento-card.dark h3 { color: var(--cream); }
.bento-card.gold { background: rgba(201, 168, 76, 0.1); border-color: rgba(201, 168, 76, 0.25); }
.bento-card.deep { background: var(--emerald-deep); border-color: transparent; color: var(--cream); }
.bento-card.deep h3 { color: var(--gold); }
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .strengths-grid { grid-template-columns: repeat(3, 1fr); }
}
.card-num {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--emerald-deep);
  opacity: 0.12;
}
.card-icon {
  width: 40px; height: 40px;
  background: var(--emerald-deep);
  border-radius: 3px;
  display: grid; place-items: center;
}
.card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.card-rate {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--emerald-deep);
  letter-spacing: -0.03em;
}
.card-rate-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-left: 0.5rem;
}
.badge {
  padding: 0.15rem 0.5rem;
  background: var(--emerald-mid);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
}
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.mini-stat {
  padding: 0.75rem;
  background: rgba(245, 240, 224, 0.5);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 3px;
}
.mini-stat .l { font-size: 0.6rem; color: var(--emerald-mid); text-transform: uppercase; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.mini-stat .v { font-size: 0.9rem; font-weight: 600; color: var(--emerald-deep); }

/* ========== STATS ========== */
.stats {
  background: var(--zinc-950);
  color: var(--cream);
  padding: 5rem 1.5rem;
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-left: 1px solid rgba(13, 122, 95, 0.25);
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); padding-left: 3rem; }
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 4rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
.testi-card {
  background: #fff;
  border: 1px solid rgba(6, 78, 59, 0.08);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; }
.testi-quote { color: var(--zinc-700); font-style: italic; line-height: 1.65; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-mid), var(--emerald-deep));
}
.testi-name { font-size: 0.85rem; font-weight: 700; color: var(--emerald-deep); }
.testi-role { font-size: 0.7rem; color: var(--zinc-500); text-transform: uppercase; letter-spacing: 0.08em; }

/* ========== FAQ ========== */
.faq {
  padding: 5rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq h2 { text-align: center; margin-bottom: 3rem; }
.faq-item {
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--emerald-deep);
  gap: 1rem;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--emerald-deep);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: rgba(6, 78, 59, 0.7);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 1.5rem 0;
}

/* ========== FOOTER ========== */
footer {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: 5rem 1.5rem 2rem;
  margin-top: 4rem;
}
.foot-inner { max-width: var(--max); margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .foot-grid { grid-template-columns: 1fr 2fr; }
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 600px) {
  .foot-cols { grid-template-columns: repeat(3, 1fr); }
}
.foot-brand p {
  color: rgba(245, 240, 224, 0.5);
  font-size: 0.75rem;
  line-height: 1.8;
  max-width: 35ch;
  margin-top: 1.5rem;
}
.foot-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.foot-col a { color: rgba(245, 240, 224, 0.7); font-size: 0.8rem; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 224, 0.05);
  text-align: center;
  font-size: 0.65rem;
  color: rgba(245, 240, 224, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ========== FORMS ========== */
.form-page {
  padding: 4rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.form-card {
  background: #fff;
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emerald-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.field input, .field select, .field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(6, 78, 59, 0.15);
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--zinc-900);
  transition: border-color var(--transition), background var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.alert-success { background: rgba(13, 122, 95, 0.1); color: var(--emerald-deep); border: 1px solid rgba(13, 122, 95, 0.25); }
.alert-error { background: #fee; color: #b91c1c; border: 1px solid #fca5a5; }
.form-disclaimer { font-size: 0.7rem; color: var(--zinc-500); margin-top: 1rem; line-height: 1.6; }

/* ========== LEGAL PAGES ========== */
.legal { padding: 4rem 1.5rem; max-width: 800px; margin: 0 auto; }
.legal h1 { font-family: 'Sora', sans-serif; color: var(--emerald-deep); font-size: 2.25rem; margin-bottom: 2rem; letter-spacing: -0.02em; }
.legal h2 { font-family: 'Sora', sans-serif; color: var(--emerald-deep); font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal p, .legal li { color: var(--zinc-700); line-height: 1.7; margin-bottom: 0.75rem; }
.legal ul { padding-left: 1.5rem; }

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease both; }

/* ========== SIMULATION PAGE ========== */
.sim-page {
  padding: 4rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .sim-page { grid-template-columns: 1fr 1fr; }
}
.sim-big {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.sim-output {
  background: #fff;
  border: 1px solid rgba(6, 78, 59, 0.08);
  padding: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sim-output h3 { font-family: 'Sora', sans-serif; color: var(--emerald-deep); }
.sim-output .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}
.sim-output .row:last-child { border-bottom: none; }
.sim-output .row .l { color: var(--zinc-500); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.sim-output .row .v { font-family: 'Sora', sans-serif; font-weight: 600; color: var(--emerald-deep); font-size: 1.5rem; letter-spacing: -0.02em; }
.sim-output .row .v.gold { color: var(--gold); font-size: 2rem; }

/* Page header band */
.page-header {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.page-header .eyebrow { background: rgba(201, 168, 76, 0.15); }
.page-header h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--cream);
}
.page-header p { color: rgba(245, 240, 224, 0.7); max-width: 60ch; margin: 0 auto; }

/* About page */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: 4rem 1.5rem; max-width: var(--max); margin: 0 auto;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: #fff;
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.value-card .num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.value-card h3 { font-family: 'Sora', sans-serif; color: var(--emerald-deep); margin-bottom: 0.5rem; }
.value-card p { color: var(--zinc-700); font-size: 0.9rem; line-height: 1.65; }

/* Credits page full grid */
.credits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 4rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 600px) { .credits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .credits-grid { grid-template-columns: repeat(4, 1fr); } }
.credit-card {
  background: #fff;
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.credit-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.credit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(201, 168, 76, 0.4); }
.credit-card:hover::before { transform: scaleX(1); }
.credit-card .icon {
  width: 48px; height: 48px;
  background: rgba(13, 122, 95, 0.08);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--emerald-mid);
  font-size: 1.5rem;
}
.credit-card h3 { font-family: 'Sora', sans-serif; color: var(--emerald-deep); font-size: 1.1rem; }
.credit-card p { color: var(--zinc-700); font-size: 0.85rem; line-height: 1.6; }
.credit-card .rate {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(6, 78, 59, 0.08);
  display: flex; justify-content: space-between; align-items: baseline;
}
.credit-card .rate strong { font-family: 'Sora', sans-serif; color: var(--emerald-deep); font-size: 1.25rem; }
.credit-card .rate span { font-size: 0.65rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.2);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
