@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0F1B2D;
  --navy-light: #1A2D47;
  --navy-dark: #0A1220;
  --emerald: #00B67A;
  --emerald-dark: #009A67;
  --emerald-light: #00D48F;
  --gold: #E8B931;
  --gold-light: #F5CC5B;
  --white: #FFFFFF;
  --off-white: #F4F6F8;
  --gray-100: #E8ECF1;
  --gray-200: #D1D9E3;
  --gray-300: #9BA8B9;
  --gray-600: #4A5568;
  --gray-800: #2D3748;
  --red: #E53E3E;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 27, 45, 0.08);
  --shadow-md: 0 4px 20px rgba(15, 27, 45, 0.12);
  --shadow-lg: 0 8px 40px rgba(15, 27, 45, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 182, 122, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 185, 49, 0.35);
}

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

.btn-outline:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 27, 45, 0.35);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ─── NAVIGATION ─── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--emerald);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--white);
}

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

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 27, 45, 0.85) 0%, rgba(15, 27, 45, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 100px 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 182, 122, 0.15);
  border: 1px solid rgba(0, 182, 122, 0.3);
  border-radius: 50px;
  color: var(--emerald-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald-light);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── WHY PEOPLE GAMBLE ─── */

.why-gamble {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  padding: 36px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}

.why-card .icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  border-radius: 14px;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ─── STATISTICS ─── */

.stats-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 182, 122, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-section .section-label {
  color: var(--emerald-light);
}

.stats-section .section-title {
  color: var(--white);
}

.stats-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--emerald-light);
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── TOOLS SECTION ─── */

.tools-section {
  padding: 100px 0;
  background: var(--off-white);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tool-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tool-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tool-card-img .tool-icon {
  position: absolute;
  bottom: -24px;
  left: 28px;
  width: 48px;
  height: 48px;
  background: var(--emerald);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.tool-card-body {
  padding: 36px 28px 28px;
}

.tool-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.tool-card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.tool-card-body .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ─── JOURNEY / STORIES ─── */

.journey-section {
  padding: 100px 0;
  background: var(--white);
}

.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--gold), var(--emerald));
  transform: translateX(-50%);
}

.journey-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.journey-step:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.journey-step:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.journey-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--emerald);
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}

.journey-step:first-child .journey-dot {
  border-color: var(--red);
}

.journey-step:nth-child(2) .journey-dot {
  border-color: var(--gold);
}

.journey-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.journey-step p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ─── JOIN / CTA ─── */

.join-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 185, 49, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.join-section .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
}

.join-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 24px;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.waitlist-form input:focus {
  border-color: var(--emerald);
  background: rgba(255, 255, 255, 0.12);
}

.waitlist-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── FOOTER ─── */

.footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--emerald);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--emerald-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--emerald-light);
}

/* ─── TOOLS PAGE ─── */

.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.why-lose {
  padding: 100px 0;
  background: var(--white);
}

.why-lose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-lose-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.why-lose-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.why-lose-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.math-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
  color: var(--white);
}

.math-box h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}

.math-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.math-box .highlight {
  color: var(--emerald-light);
  font-weight: 600;
}

/* ─── CALCULATOR ─── */

.calculator-section {
  padding: 100px 0;
  background: var(--off-white);
}

.calculator-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.calc-inputs {
  padding: 48px;
  border-right: 1px solid var(--gray-100);
}

.calc-results {
  padding: 48px;
  background: var(--navy);
  color: var(--white);
}

.calc-inputs h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.calc-inputs > p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0, 182, 122, 0.1);
}

.form-group .input-prefix {
  position: relative;
}

.form-group .input-prefix::before {
  content: 'R';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--gray-300);
}

.form-group .input-prefix input {
  padding-left: 32px;
}

.calc-results h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.result-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-item:last-child {
  border-bottom: none;
}

.result-item .result-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.result-item .result-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald-light);
}

.result-item .result-value.loss {
  color: var(--red);
}

.result-item .result-value.gold {
  color: var(--gold);
}

.result-item .result-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ─── RISK ASSESSMENT ─── */

.risk-section {
  padding: 100px 0;
  background: var(--white);
}

.risk-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-100);
}

.risk-wrapper h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.risk-wrapper > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.risk-question {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}

.risk-question:last-of-type {
  border-bottom: none;
}

.risk-question p {
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--navy);
}

.risk-options {
  display: flex;
  gap: 12px;
}

.risk-option {
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.risk-option:hover {
  border-color: var(--emerald);
}

.risk-option.selected {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.risk-option.selected-no {
  background: var(--gray-200);
  color: var(--gray-800);
  border-color: var(--gray-200);
}

.risk-result {
  display: none;
  margin-top: 32px;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
}

.risk-result.show {
  display: block;
}

.risk-result.low {
  background: rgba(0, 182, 122, 0.1);
  border: 2px solid var(--emerald);
}

.risk-result.at-risk {
  background: rgba(232, 185, 49, 0.1);
  border: 2px solid var(--gold);
}

.risk-result.high {
  background: rgba(229, 62, 62, 0.1);
  border: 2px solid #E53E3E;
}

.risk-result.critical {
  background: rgba(229, 62, 62, 0.15);
  border: 2px solid #C53030;
}

.risk-result h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.risk-result p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

/* ─── RECOVERY HUB ─── */

.recovery-section {
  padding: 100px 0;
  background: var(--off-white);
}

.recovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.recovery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.recovery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.recovery-card .coming-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recovery-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 12px;
  color: var(--emerald);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.recovery-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.recovery-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ─── GET HELP PAGE ─── */

.help-section {
  padding: 100px 0;
  background: var(--white);
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.helpline-card {
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  margin-bottom: 20px;
  transition: var(--transition);
}

.helpline-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-sm);
}

.helpline-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.helpline-card .phone {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--emerald);
  font-weight: 700;
  margin-bottom: 6px;
}

.helpline-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-100);
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-note {
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-top: 12px;
}

/* ─── FAQ ─── */

.faq-section {
  padding: 100px 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-200);
}

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

.faq-question i {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--emerald);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.3rem;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
  }

  .hero-stat {
    flex: 1;
    min-width: 100px;
  }

  .hero-stat .number {
    font-size: 1.8rem;
  }

  .why-grid,
  .tools-grid,
  .recovery-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-card {
    padding: 24px 16px;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .journey-timeline::before {
    left: 20px;
  }

  .journey-step:nth-child(odd),
  .journey-step:nth-child(even) {
    padding-left: 52px;
    padding-right: 0;
    text-align: left;
    flex-direction: row;
  }

  .journey-dot {
    left: 20px;
  }

  .why-lose-grid {
    grid-template-columns: 1fr;
  }

  .calculator-wrapper {
    grid-template-columns: 1fr;
  }

  .calc-inputs {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .waitlist-form {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

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