/* Amaze Credit — landing styles */

:root {
  --font-family: -apple-system, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --color-bg: #F7F5EF;
  --color-surface: #FFFFFF;
  --color-text-primary: #030410;
  --color-text-secondary: #615D53;
  --color-accent-teal: #1B7A72;
  --color-accent-teal-hover: #16665f;
  --color-accent-orange: #FD7E06;
  --color-accent-orange-hover: #e06f05;
  --color-footer-bg: #030410;
  --color-placeholder: #E4E1D6;
  --color-border: rgba(3, 4, 16, 0.06);
  --radius-btn: 16px;
  --radius-card: 20px;
  --radius-banner: 24px;
  --shadow-card: 0 8px 24px rgba(3, 4, 16, 0.06);
  --container-max: 1200px;
  --header-h: 72px;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-primary);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  margin: 0 0 0.5em;
  font-weight: 800;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

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

@media (min-width: 1024px) {
  .container {
    padding: 0 80px;
  }
}

.section {
  padding: 48px 0;
}

.section-tight {
  padding: 24px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .section-tight {
    padding: 40px 0;
  }
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent-orange);
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

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

.btn-teal {
  background: var(--color-accent-teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--color-accent-teal-hover);
}

.btn-orange {
  background: var(--color-accent-orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--color-accent-orange-hover);
}

.btn-dark {
  background: var(--color-text-primary);
  color: #fff;
}

.btn-dark:hover {
  background: #1a1a24;
}

.btn-outline {
  background: transparent;
  color: var(--color-accent-teal);
  border: 2px solid var(--color-accent-teal);
}

.btn-outline:hover {
  background: var(--color-accent-teal);
  color: #fff;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}

/* Placeholders for missing assets */
.placeholder-img {
  background: var(--color-placeholder);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.placeholder-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-align: center;
  word-break: break-all;
}

.logo-icon {
  height: 36px;
  width: auto;
  max-width: 52px;
  border-radius: 0;
  flex-shrink: 0;
  object-fit: contain;
  background: transparent;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon--footer {
  background: transparent;
}

.placeholder-screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
}

.placeholder-illustration {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 60px;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .site-header {
    height: var(--header-h);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.logo-wordmark--light {
  color: #fff;
}

.nav {
  display: none;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.nav a:hover {
  color: var(--color-text-primary);
}

.header-cta {
  display: none;
}

.burger {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }

  .burger {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-bg);
  padding: 24px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 32px 0 40px;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  z-index: 0;
  padding: 40px 0 0;
  background: linear-gradient(120deg, var(--color-bg) 45%, #FDE3C7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}

.hero-content {
  padding-bottom: 24px;
}

@media (min-width: 1024px) {
  .hero {
    padding: 64px 0 0;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: end;
  }

  .hero-content {
    padding-bottom: 64px;
  }
}

.hero h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }
}

.lead {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
}

.cta-row {
  margin-bottom: 20px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 16px;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-teal);
}

.icon-check {
  flex-shrink: 0;
}

.hero-media {
  position: relative;
  align-self: flex-end;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-media {
    order: initial;
    max-width: 100%;
    margin: 0 0 0 auto;
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 380px;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .hero-visual {
    height: 500px;
  }
}

.hero-blob {
  position: absolute;
  right: -15%;
  bottom: -10%;
  z-index: 0;
  width: 120%;
  height: 120%;
  background: url("images/hero-bg-blob.svg") center bottom / contain no-repeat;
  rotate: 42deg;
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #0B0B0C;
  border-radius: 28px;
  padding: 6px;
  box-shadow: 0 18px 40px rgba(3, 4, 16, 0.18);
}

.hero-phone {
  position: absolute;
  right: 8%;
  bottom: 0;
  z-index: 2;
  width: 50%;
  max-width: 220px;
}

.hero-person {
  position: absolute;
  left: 2%;
  bottom: 0;
  z-index: 3;
  width: auto;
  height: 86%;
  max-width: 58%;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 16px 24px rgba(3, 4, 16, 0.1));
}

.phone-screen {
  width: 100%;
  display: block;
  border-radius: 22px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

.phone-mockup--sm {
  max-width: 200px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 6px;
}

.phone-mockup--sm .phone-screen {
  border-radius: 22px;
}

.coin {
  position: absolute;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 6px 12px rgba(253, 126, 6, 0.28));
  will-change: transform;
}

.coin-1 {
  top: 4%;
  right: 17%;
  width: 46px;
  animation: coin-float 4.5s ease-in-out infinite;
}

.coin-2 {
  top: 45%;
  right: 0;
  width: 34px;
  animation: coin-float 3.6s ease-in-out infinite reverse;
  animation-delay: -1.2s;
}

.coin-3 {
  right: 27%;
  bottom: 7%;
  width: 40px;
  animation: coin-float 4.1s ease-in-out infinite;
  animation-delay: -2.1s;
}

@keyframes coin-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coin-1,
  .coin-2,
  .coin-3 {
    animation: none;
  }
}

.step-illustration {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  object-fit: contain;
  background: transparent;
  display: block;
}

.score-gauge {
  width: min(240px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

/* Stats */
.stats-bar {
  position: relative;
  z-index: 5;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-accent-teal);
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 24px;
  }
}

.stat-label {
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* How it works */
.how-it-works {
  text-align: center;
}

.how-it-works h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .how-it-works h2 {
    font-size: 36px;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.cta-center {
  margin-top: 32px;
}

/* Benefits */
.benefits {
  text-align: center;
}

.benefits h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .benefits h2 {
    font-size: 36px;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

.benefit-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}

.icon-box--orange {
  background: #FDE8D4;
  color: #C45E0A;
}

.icon-box--teal {
  background: #D4EDEA;
  color: #1B7A72;
}

.benefit-card h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Score banner */
.score-banner {
  background: var(--color-accent-teal);
  border-radius: var(--radius-banner);
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .score-banner {
    padding: 40px;
  }
}

.score-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .score-grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}

.score-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .score-text {
    text-align: left;
  }
}

.score-text h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .score-text h2 {
    font-size: 32px;
  }
}

.score-text p {
  color: #D9EFE9;
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 420px;
}

@media (min-width: 768px) {
  .score-text p {
    margin-left: 0;
    margin-right: auto;
  }
}

.score-media {
  flex-shrink: 0;
}

/* Security */
.security-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .security-card {
    padding: 32px;
  }
}

.security-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .security-row {
    flex-direction: row;
    align-items: flex-start;
  }
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.security-text > p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.mini-badges li {
  background: var(--color-bg);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent-teal);
}

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

.faq .eyebrow {
  text-align: center;
  margin-bottom: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.faq-item:first-child {
  border-radius: 16px 16px 0 0;
}

.faq-item:last-child {
  border-radius: 0 0 16px 16px;
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--color-text-primary);
  cursor: pointer;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-text-secondary);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--color-text-secondary);
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-accent-orange), #FFB157);
  border-radius: var(--radius-banner);
  padding: 32px 24px 48px;
  text-align: center;
}

.final-cta-woman {
  display: block;
  width: 100%;
  height: 180px;
  margin: -20px auto 8px;
  background: url("images/cta-woman.png") center bottom / contain no-repeat;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .final-cta {
    min-height: 280px;
    padding: 56px 48px 56px 38%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .final-cta-woman {
    position: absolute;
    left: 3%;
    bottom: 0;
    width: 34%;
    height: 112%;
    margin: 0;
    background-position: left bottom;
  }

  .final-cta-content {
    width: 100%;
    max-width: 580px;
    text-align: left;
  }
}

.final-cta h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .final-cta h2 {
    font-size: 36px;
  }
}

.final-cta-content > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  background: var(--color-footer-bg);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .site-footer {
    margin-top: 80px;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: 40px;
  }
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #B9B6AC;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 11px;
  color: #8A8880;
  line-height: 1.7;
  margin-top: 32px;
  max-width: 960px;
}

.footer-disclaimer strong {
  color: #B9B6AC;
  font-weight: 600;
}

.footer-disclaimer a {
  color: #B9B6AC;
  text-decoration: underline;
}

.footer-disclaimer a:hover {
  color: #fff;
}

.footer-contacts {
  font-size: 12px;
  color: #B9B6AC;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-contacts a {
  color: #B9B6AC;
}

.footer-contacts a:hover {
  color: #fff;
}

.footer-copyright {
  font-size: 11px;
  color: #8A8880;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

/* Subpages (privacy, terminos, contacto) */
.nav--legal {
  margin-left: auto;
}

.nav-back {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.nav-back:hover {
  color: var(--color-accent-teal);
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

@media (min-width: 768px) {
  .legal-page {
    padding: 64px 24px 96px;
  }
}

.legal-header {
  margin-bottom: 28px;
}

.legal-updated {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.legal-page h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.legal-toc {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.legal-toc ol {
  margin: 0;
  padding-left: 20px;
}

.legal-toc li {
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.legal-toc li:last-child {
  margin-bottom: 0;
}

.legal-toc a {
  color: var(--color-accent-teal);
  text-decoration: none;
}

.legal-toc a:hover {
  text-decoration: underline;
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 40px;
  margin-bottom: 12px;
  scroll-margin-top: 88px;
}

.legal-body h2:first-of-type {
  margin-top: 24px;
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.legal-body ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 1em;
}

.legal-body a {
  color: var(--color-accent-teal);
  text-decoration: underline;
}

.legal-hr {
  border: none;
  border-top: 1px solid rgba(3, 4, 16, 0.08);
  margin: 32px 0;
}

.legal-contact-box {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 24px;
  margin-top: 40px;
  box-shadow: var(--shadow-card);
}

.legal-contact-box h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.legal-contact-box p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.legal-contact-box a {
  color: var(--color-accent-teal);
  text-decoration: underline;
}

.legal-crosslink {
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  font-size: 32px;
}

.page-content {
  padding-bottom: 64px;
  max-width: 760px;
}

.page-content h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p,
.page-content li {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.page-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1em;
}

/* Contact page */
.contact-hero {
  background: linear-gradient(120deg, var(--color-bg) 40%, #FDE3C7 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0 40px;
}

.contact-hero-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 64px 0 48px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }
}

.contact-hero .lead {
  margin: 0 auto 20px;
  font-size: 17px;
  color: var(--color-text-secondary);
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.contact-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-teal);
}

.contact-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

@media (min-width: 768px) {
  .contact-page {
    padding: 48px 24px 96px;
  }
}

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

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.contact-item {
  display: block;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(3, 4, 16, 0.1);
}

.contact-item .icon-box {
  margin: 0 0 16px;
}

.contact-item h2,
.contact-address-bar h2 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.contact-item p,
.contact-address-bar p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.contact-item-action {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-teal);
}

.contact-address-bar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
  padding: 20px 24px;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.contact-address-bar .icon-box {
  flex-shrink: 0;
  margin: 0;
}

.contact-address-bar a {
  color: var(--color-accent-teal);
  text-decoration: underline;
}

.contact-section-head {
  margin: 48px 0 20px;
  text-align: center;
}

.contact-section-head h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
}

.contact-section-head p {
  margin: 0;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.contact-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .contact-topics {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.contact-topic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-topic i {
  font-size: 22px;
  color: var(--color-accent-teal);
}

.contact-topic:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(3, 4, 16, 0.1);
}

.contact-panel {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  margin-top: 32px;
}

.contact-panel--wide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (min-width: 768px) {
  .contact-panel--wide {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.contact-panel h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 480px;
}

.contact-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.contact-panel-actions .btn {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.contact-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.contact-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.contact-note a {
  color: var(--color-accent-teal);
  text-decoration: underline;
}

.contact-note strong {
  color: var(--color-text-primary);
  font-weight: 600;
}
