/* ============================================================
   Elliny Capital Partners — Main Stylesheet
   Colors: Navy #1B3A6B | Gold #C9A456 | Off-White #F8F7F4
   Fonts: Playfair Display (headings) | DM Sans (body)
   ============================================================ */

/* --- Variables & Reset --- */
:root {
  --navy:       #1B3A6B;
  --navy-dark:  #122850;
  --navy-light: #2A5298;
  --gold:       #C9A456;
  --gold-light: #E8D5A3;
  --gold-dark:  #A8853A;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --light-gray: #EEECE7;
  --mid-gray:   #9A9A9A;
  --text-dark:  #1A1A2E;
  --text-mid:   #4A4A5A;
  --text-light: #6A6A7A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --radius: 6px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);

  --max-w: 1120px;
  --nav-h: 72px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem;
}

.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.82); }

.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header h2 + p,
.section-header h2 + .lead {
  margin-top: 1rem;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,164,86,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--navy);
  background: var(--off-white);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.nav__mobile.open { display: block; }

.nav__mobile a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--navy); }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--white);
  padding-block: 6rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,164,86,0.15);
  border: 1px solid rgba(201,164,86,0.35);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero p { color: rgba(255,255,255,0.80); font-size: 1.1rem; margin-bottom: 2.25rem; max-width: 560px; }

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

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  display: block;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--navy);
  padding-block: 4rem 3.5rem;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; }

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(27,58,107,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 0.6rem; }

/* --- How it works steps --- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--navy-light));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.25rem;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 4px rgba(27,58,107,0.12);
}

.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; }

/* --- Two-path cards --- */
.path-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }

.path-card {
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.path-card--lp {
  background: var(--navy);
  color: var(--white);
}

.path-card--buyer {
  background: var(--off-white);
  border: 2px solid var(--light-gray);
}

.path-card--lp h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 0.5rem; }
.path-card--buyer h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 0.5rem; }

.path-card--lp .path-sub { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 1.5rem; }
.path-card--buyer .path-sub { color: var(--text-light); font-size: 0.85rem; margin-bottom: 1.5rem; }

.path-card ul { margin: 1.5rem 0; }

.path-card--lp li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 0;
  padding-left: 1.35rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.path-card--buyer li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.45rem 0;
  padding-left: 1.35rem;
  position: relative;
  border-bottom: 1px solid var(--light-gray);
}

.path-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* --- Stats bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.stat-item:last-child { border-right: none; }

.stat-item__value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.35rem;
  display: block;
}

/* --- Market badges --- */
.markets { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.market-badge--star::after {
  content: '★';
  color: var(--gold);
  font-size: 0.75rem;
}

/* --- Waterfall / Table --- */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead { background: var(--navy); }
thead th {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.85rem 1rem;
  text-align: left;
  letter-spacing: 0.03em;
}

tbody tr { border-bottom: 1px solid var(--light-gray); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--off-white); }

tbody td { padding: 0.85rem 1rem; color: var(--text-mid); }
tbody td:first-child { font-weight: 600; color: var(--text-dark); }

.highlight-row { background: rgba(201,164,86,0.10) !important; }

/* --- FAQ --- */
.faq { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child { border-top: 1px solid var(--light-gray); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}

.faq-question:hover { color: var(--navy); }

.faq-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* --- Deal example box --- */
.deal-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
}

.deal-box h3 { color: var(--gold); margin-bottom: 1.5rem; }

.deal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

.deal-row:last-child { border-bottom: none; }

.deal-row__label { color: rgba(255,255,255,0.65); }
.deal-row__value { font-weight: 600; color: var(--white); }
.deal-row--highlight .deal-row__value { color: var(--gold); font-size: 1.05rem; }

/* --- Podcast / Media grid --- */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.podcast-embed {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-dark);
}

.podcast-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 520px; margin-inline: auto; margin-bottom: 2rem; position: relative; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* --- Contact form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.10);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* --- Contact info block --- */
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,58,107,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-info-item p { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }

/* --- Divider --- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-block: 1.25rem;
}

.divider--center { margin-inline: auto; }

/* --- Pill / Tag --- */
.tag {
  display: inline-block;
  background: rgba(201,164,86,0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(201,164,86,0.3);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag--navy {
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  border-color: rgba(27,58,107,0.18);
}

/* --- Protection list --- */
.protection-list { display: flex; flex-direction: column; gap: 0.75rem; }

.protection-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.93rem;
  color: var(--text-mid);
}

.protection-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(27,58,107,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.1rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-block: 4rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.footer__logo-mark {
  width: 32px;
  height: 32px;
  background: rgba(201,164,86,0.15);
  border: 1px solid rgba(201,164,86,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.footer__logo span {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
  padding-block: 0.3rem;
  transition: color 0.15s;
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__disc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1.5rem;
  line-height: 1.6;
  max-width: 640px;
}

/* --- Utilities --- */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.flex { display: flex; }
.flex-gap { display: flex; gap: 1rem; flex-wrap: wrap; }
.items-center { align-items: center; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .step { margin-bottom: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding-block: 3.5rem; }

  .nav__links,
  .nav__cta .btn { display: none; }

  .nav__hamburger { display: flex; }

  .grid-2,
  .grid-3,
  .path-cards,
  .podcast-grid { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .hero { padding-block: 4rem 3rem; }
  .hero__stats { flex-direction: column; gap: 1.5rem; }

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

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

  .cta-banner { padding: 2.5rem 1.5rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .stat-item:last-child { border-bottom: none; }
  .hero__actions { flex-direction: column; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
