/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #414042;
  --gold: #FCB753;
  --dark-navy: #1a1a2e;
  --cream: #f9f7f4;
  --gold-hover: #e5a23d;
  --navy-light: #24243e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Red Hat Display', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark-navy);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Red Hat Display', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark-navy);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 183, 83, 0.35);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-navy);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 3rem;
  font-size: 1.15rem;
}

/* ===== HERO ===== */
.hero {
  background: var(--dark-navy);
  padding: 5rem 2rem;
  overflow: hidden;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-text h1 span {
  color: var(--gold);
}

.hero-text p {
  font-size: 1.2rem;
  color: #c0bfc4;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 210px;
}

.hero-image {
  flex: 0 0 340px;
}

.hero-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s;
}

.hero-image img:hover {
  transform: scale(1.03);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark-navy);
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark {
  background: var(--dark-navy);
  color: var(--cream);
}

.section-dark .section-title {
  color: var(--cream);
}

.section-dark .section-subtitle {
  color: #aaa;
}

/* ===== ENDORSEMENTS ===== */
.endorsements {
  background: var(--cream);
}

.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.endorsement-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--gold);
  position: relative;
}

.endorsement-card .quote-mark {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
}

.endorsement-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.endorsement-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--dark-navy);
  font-size: 0.95rem;
  display: block;
}

/* ===== KEY POINTS ===== */
.key-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.key-point {
  background: var(--navy-light);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s;
}

.key-point:hover {
  transform: translateY(-4px);
}

.key-point-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark-navy);
  font-weight: 800;
}

.key-point h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--cream);
}

.key-point p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--dark-navy);
  padding: 5rem 2rem;
}

.about-hero .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 0 0 320px;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
}

.about-text h1 span {
  color: var(--gold);
}

.about-text p {
  color: #c0bfc4;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Logo Bar */
.logo-bar {
  background: #fff;
}

.logo-bar .container {
  max-width: 900px;
  margin: 0 auto;
}

.logo-bar-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
  font-weight: 600;
  margin-bottom: 2rem;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--charcoal);
  opacity: 0.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.5rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 0.8;
}

/* WiseMint bridge */
.wisemint-bridge {
  background: var(--cream);
}

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

.bridge-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.bridge-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ===== EXCERPTS PAGE ===== */
.excerpts-header {
  background: var(--dark-navy);
  padding: 4rem 2rem;
  text-align: center;
}

.excerpts-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.excerpts-header p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

.excerpt-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  border-left: 5px solid var(--gold);
}

.excerpt-card .excerpt-number {
  position: absolute;
  top: -1rem;
  left: 2rem;
  background: var(--gold);
  color: var(--dark-navy);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.excerpt-card blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: none;
}

.excerpt-card .excerpt-cta {
  text-align: right;
}

/* ===== WISEMINT PAGE ===== */
.wisemint-hero {
  background: var(--dark-navy);
  padding: 5rem 2rem;
  text-align: center;
}

.wisemint-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 1.25rem;
  line-height: 1.2;
}

.wisemint-hero h1 span {
  color: var(--gold);
}

.wisemint-hero p {
  font-size: 1.15rem;
  color: #aaa;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--dark-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: var(--dark-navy);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #111126;
  padding: 3rem 2rem;
  text-align: center;
}

.footer .container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0.5;
}

.footer p {
  color: #666;
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-image {
    flex: none;
    max-width: 260px;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .about-hero .container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    flex: none;
    max-width: 260px;
  }

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

  .wisemint-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

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

  .nav-toggle {
    display: flex;
  }

  .navbar .container {
    position: relative;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-buttons .btn {
    min-width: 180px;
    width: 100%;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .key-points-grid {
    grid-template-columns: 1fr;
  }

  .excerpt-card {
    padding: 2rem 1.5rem;
  }

  .excerpt-card blockquote {
    font-size: 1.1rem;
  }

  .logos {
    gap: 1.5rem;
  }

  .logo-item {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }
}
