/* ============================================================
   NexusMint LANDING PAGE CLONE — style.css
   Colors, typography, layout, components, sections, footer
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --green:        #00b087;
  --green-dark:   #008f6c;
  --green-deep:   #1a2e2a;
  --green-bg:     #0d1f1c;
  --white:        #ffffff;
  --off-white:    #f5f7f6;
  --light-grey:   #e8ecea;
  --mid-grey:     #b0bdb9;
  --dark-grey:    #4a5e59;
  --text:         #1a2e2a;
  --text-light:   #4a5e59;
  --red:          #e53935;

  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.10);

  --font:         'Manrope', sans-serif;
  --nav-h:        72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section title ---- */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.2;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

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

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--light-grey);
}
.btn--ghost:hover { border-color: var(--green); color: var(--green); }

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

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 8px 18px; font-size: 0.85rem; }

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  background: var(--light-grey);
  border: 2px dashed var(--mid-grey);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--dark-grey);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}
.img-placeholder--hero     { width: 100%; height: 480px; border-radius: var(--radius-lg); }
.img-placeholder--card     { width: 100%; height: 200px; border-radius: var(--radius) var(--radius) 0 0; }
.img-placeholder--feature-wide { width: 280px; flex-shrink: 0; height: 180px; }
.img-placeholder--more-card { width: 160px; flex-shrink: 0; height: 140px; }
.img-placeholder--phone    { width: 100%; height: 420px; border-radius: var(--radius-lg); }
.img-placeholder--literacy { width: 100%; height: 200px; border-radius: var(--radius) var(--radius) 0 0; }
.img-placeholder--trustpilot { width: 100%; height: 200px; }
.img-placeholder--appbadge { width: 100%; height: 44px; border-radius: var(--radius-sm); margin-bottom: 8px; }
.img-placeholder--press    { width: 120px; height: 36px; border-radius: var(--radius-sm); }

.icon-placeholder {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-bg);
  border-bottom: 1px solid transparent;
  height: var(--nav-h);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-svg { height: 32px; width: auto; }

/* Nav list */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.nav__link:hover, .nav__link:focus {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
}
.nav__chevron { font-size: 0.75rem; opacity: 0.7; }
.nav__link--enterprise { color: rgba(255, 255, 255, 0.85); }
.nav__badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-card);
  min-width: 220px;
  z-index: 200;
}
.nav__item--dropdown:hover .dropdown { display: flex; }
.dropdown__col { display: flex; flex-direction: column; gap: 2px; }
.dropdown__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mid-grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dropdown__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.dropdown__link:hover { background: var(--off-white); color: var(--green); }

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__lang {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.header__lang:hover { background: rgba(255, 255, 255, 0.10); color: var(--white); }

/* Override ghost button inside header to suit glass bg */
.header__actions .btn--ghost {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.20);
}
.header__actions .btn--ghost:hover {
  border-color: var(--green);
  color: var(--white);
  background: rgba(0, 176, 135, 0.12);
}

/* Hamburger (mobile) */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 8px;
  border-bottom: 1px solid var(--light-grey);
}
.mobile-menu__actions {
  display: flex;
  gap: 10px;
  padding: 16px 0 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--green-bg);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__content {
  flex: 1;
  max-width: 560px;
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  margin-top: -8px;
  line-height: 1.6;
}
.hero__image-wrap {
  flex: 1;
  max-width: 520px;
}

/* Dark background wraps the full hero section */
.hero { background: var(--green-bg); border-radius: 0; }
/* Full bleed hero bg */
.hero-wrapper {
  background: var(--green-bg);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust {
  padding: 56px 0;
  border-bottom: 1px solid var(--light-grey);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust__text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.trust__text p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.5;
}
.trust__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.trust__link:hover { color: var(--green-dark); }

/* ============================================================
   ALL YOUR INVESTMENTS
   ============================================================ */
.investments {
  padding: 80px 0;
  background: var(--off-white);
}
.investments .section-title { text-align: center; }
.investments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.investment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.investment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.investment-card__body {
  padding: 20px 24px 24px;
}
.investment-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.investment-card__body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}
.investments__disclaimer {
  font-size: 0.78rem;
  color: var(--mid-grey);
  text-align: center;
}

/* ============================================================
   MORE THAN A PLATFORM
   ============================================================ */
.more {
  padding: 80px 0;
}
.more__feature-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 24px;
  color: var(--white);
  transition: transform 0.2s;
}
.more__feature-wide:hover { transform: translateY(-2px); }
.more__feature-wide-text { flex: 1; }
.more__feature-wide-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 8px 0 12px;
  line-height: 1.2;
}
.more__feature-wide-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
}
.feature-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(0,176,135,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.feature-readmore {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
}

.more__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.more__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.more__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.more__card-text { flex: 1; }
.more__card-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 6px 0 4px;
}
.more__card-sub {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-bottom: 8px;
}
.more__card-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ============================================================
   GET STARTED IN MINUTES
   ============================================================ */
.steps {
  padding: 80px 0;
  background: var(--green-bg);
}
.steps .section-title { color: var(--white); }
.steps__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
}
.steps__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Phone image panel */
.steps__phone-wrap { position: relative; }
.steps__phone-img {
  display: none;
  animation: fadeInStep 0.35s ease;
}
.steps__phone-img.active { display: block; }
@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Step buttons */
.steps__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-btn {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: transparent;
  text-align: left;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  width: 100%;
}
.step-btn:hover { background: rgba(255,255,255,0.06); }
.step-btn.active {
  background: rgba(255,255,255,0.08);
  border-color: var(--green);
}
.step-btn__number {
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  min-width: 40px;
  line-height: 1;
  transition: color 0.2s;
}
.step-btn.active .step-btn__number { color: var(--green); }
.step-btn__content strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.step-btn__content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 12px;
}
.step-btn__content .btn { display: none; }
.step-btn.active .step-btn__content .btn { display: inline-flex; }

/* Dots (mobile) */
.steps__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.step-dot.active { background: var(--green); transform: scale(1.3); }

/* ============================================================
   ASSET PRICES
   ============================================================ */
.prices {
  padding: 80px 0;
  background: var(--off-white);
}
.prices__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.price-filter {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--light-grey);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.15s;
}
.price-filter:hover, .price-filter.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.prices__table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.prices__table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--light-grey);
}
.prices__action-col { text-align: right; }
.prices__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 24px;
  align-items: center;
  border-bottom: 1px solid var(--light-grey);
  transition: background 0.15s;
}
.prices__row:last-child { border-bottom: none; }
.prices__row:hover { background: var(--off-white); }

.prices__asset {
  display: flex;
  align-items: center;
  gap: 14px;
}
.asset-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.asset-icon--btc  { background: #f7931a; }
.asset-icon--eth  { background: #627eea; }
.asset-icon--sol  { background: #9945ff; }
.asset-icon--xrp  { background: #00aae4; }
.asset-icon--doge { background: #c2a633; }

.prices__asset strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.asset-ticker {
  display: block;
  font-size: 0.75rem;
  color: var(--mid-grey);
  font-weight: 500;
}
.prices__price {
  font-size: 0.9rem;
  font-weight: 600;
}
.prices__change {
  font-size: 0.875rem;
  font-weight: 700;
}
.prices__change--up  { color: var(--green); }
.prices__change--down { color: var(--red); }
.prices__action { text-align: right; }

.prices__cta { text-align: center; margin-bottom: 16px; }
.prices__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mid-grey);
}

/* ============================================================
   FINANCIAL LITERACY
   ============================================================ */
.literacy {
  padding: 80px 0;
}
.literacy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.literacy-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.literacy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.literacy-card__body {
  padding: 24px;
}
.literacy-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.literacy-card__body p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}
.literacy-card__cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
}

/* ============================================================
   TRUSTPILOT
   ============================================================ */
.trustpilot {
  padding: 60px 0;
  background: var(--off-white);
}
.trustpilot .section-title { text-align: center; }

/* ============================================================
   SUPPORT
   ============================================================ */
.support {
  padding: 80px 0;
}
.support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.support__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.support__text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.support__text p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-deep);
  color: var(--white);
  padding: 60px 0 40px;
}
.footer__top {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.footer__brand { flex-shrink: 0; }
.footer__cols {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--green); }

/* Social icons */
.footer__social {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}
.social-icon:hover { background: var(--green); color: var(--white); }

/* Legal links */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer__legal a:hover { color: var(--white); }

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer__press {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Footer placeholders in dark bg */
.footer .img-placeholder {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth {
  display: flex;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}
.auth__form-panel {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 48px;
  background: var(--white);
  overflow-y: auto;
}
.auth__form-wrap {
  width: 100%;
  max-width: 420px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.auth__logo {
  margin-bottom: 40px;
  display: block;
}
.auth__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 24px;
  transition: color 0.15s;
}
.auth__back:hover {
  color: var(--green);
}
.auth__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.auth__subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* Form groups */
.auth__form {
  display: none;
  flex-direction: column;
  gap: 18px;
}
.auth__form.active {
  display: flex;
}
.auth__row {
  display: flex;
  gap: 14px;
}
.auth__row .auth__group {
  flex: 1;
}
.auth__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.auth__group input {
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.auth__group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 176, 135, 0.1);
  background: var(--white);
}
.auth__forgot {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  align-self: flex-end;
  margin-top: -8px;
}
.auth__forgot:hover {
  color: var(--green-dark);
}
.auth__submit {
  margin-top: 8px;
  width: 100%;
}
.auth__switch {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 20px;
}
.auth__switch a {
  font-weight: 700;
  color: var(--green);
}
.auth__switch a:hover {
  color: var(--green-dark);
}

/* Success message (forgot password) */
.auth__success {
  display: none;
  padding: 14px 18px;
  background: rgba(0, 176, 135, 0.08);
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 18px;
}
.auth__success.active {
  display: block;
}

/* Image panel */
.auth__image-panel {
  flex: 1;
  background: var(--green-bg);
  position: relative;
  overflow: hidden;
}
.auth__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.auth__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}
.auth__image-text {
  position: absolute;
  bottom: 60px;
  left: 48px;
  right: 48px;
  color: var(--white);
  z-index: 2;
}
.auth__image-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.auth__image-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* Auth responsive */
@media (max-width: 768px) {
  .auth {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .auth__image-panel {
    display: none;
  }
  .auth__form-panel {
    padding: 40px 24px;
    align-items: flex-start;
  }
  .auth__form-wrap {
    padding-top: 20px;
  }
  .auth__row {
    flex-direction: column;
    gap: 18px;
  }
}


/* ============================================================
   HERO SECTION — FULL BLEED BACKGROUND FIX
   ============================================================ */
/* The hero needs its dark bg to cover full width */
.hero {
  background: var(--green-bg);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  margin-top: calc(-1 * var(--nav-h));
  padding: calc(80px + var(--nav-h)) calc((100% - 1200px) / 2 + 24px) 60px;
}

@media (max-width: 1248px) {
  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .header__nav { display: flex; justify-content: center; }
  .nav__item:nth-child(2),
  .nav__item:nth-child(3) { display: none; }
  .header__actions { display: none; }
  .header__hamburger { display: flex; }
  .header__inner { justify-content: space-between; }

  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 100px;
  }
  .hero__content { max-width: 100%; }
  .hero__image-wrap { max-width: 100%; width: 100%; }

  .trust__grid { grid-template-columns: 1fr; gap: 28px; }
  .investments__grid { grid-template-columns: 1fr; }
  .more__grid { grid-template-columns: 1fr; }
  .more__feature-wide { flex-direction: column; }
  .more__feature-wide .img-placeholder--feature-wide { width: 100%; height: 160px; }

  .steps__layout { grid-template-columns: 1fr; }
  .steps__dots { display: flex; }
  .steps__phone-wrap { order: -1; }

  .prices__table-header .prices__action-col,
  .prices__row .prices__action { display: none; }
  .prices__table-header,
  .prices__row { grid-template-columns: 2fr 1fr 1fr; }

  .literacy__grid { grid-template-columns: 1fr; }
  .support__grid { grid-template-columns: 1fr; gap: 28px; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__social { flex-wrap: wrap; }
  .more__card { flex-direction: column; }
  .more__card .img-placeholder--more-card { width: 100%; height: 160px; }
  .prices__table-header,
  .prices__row { grid-template-columns: 2fr 1fr; }
  .prices__table-header span:nth-child(3),
  .prices__row .prices__change { display: none; }
}
.investment-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.more__feature-wide-img {
  width: 280px;
  height: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.more__card-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.more__card--spotlight,
.more__card--stacked {
  flex-direction: column;
  align-items: flex-start;
}
.more__card--spotlight .more__card-img,
.more__card--stacked .more__card-img {
  max-width: 100%;
  width: 100%;
}

.steps__phone-screen {
  width: 100%;
  height: 420px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card__rating {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
}
.stars {
  color: #f5b342;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
  /* Collapsed state — show only 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-card.expanded .testimonial-card__text {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--mid-grey);
}

.testimonial-card__toggle {
  align-self: flex-end;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  padding: 6px 14px;
  border: 1.5px solid var(--green);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-top: 8px;
}
.testimonial-card__toggle:hover {
  background: var(--green);
  color: var(--white);
}
.testimonial-card.expanded .testimonial-card__toggle::after {
  content: " less";
}
.testimonial-card:not(.expanded) .testimonial-card__toggle::after {
  content: " more";
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.header--scrolled {
  background: rgba(13, 31, 28, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header__nav {
  display: flex;
  justify-content: center;
}

.trust__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

