/* ===== Bel Rive — Design System v2 ===== */

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

:root {
  --ink: #0a0a0b;
  --ink-2: #131315;
  --white: #ffffff;
  --paper: #fafafa;
  --grey-100: #f0f0ef;
  --grey-400: #8a8a86;
  --grey-600: #55554f;
  --text: #101010;
  --gold: #df3c2e;
  --gold-light: #e8685a;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 16, 16, 0.1);
  --sans: 'Inter', sans-serif;
  --display: 'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

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

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #000000;
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav .logo img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.78); font-size: 13.5px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--white); color: var(--ink) !important; padding: 11px 22px; border-radius: 3px;
  font-size: 13px !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--grey-100); }

.lang-switch { position: relative; }
.lang-switch .lang-current {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px !important; font-weight: 600 !important; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.75) !important; padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 3px; cursor: pointer;
}
.lang-switch .lang-current::after { content: '▾'; font-size: 9px; opacity: 0.7; }
.lang-switch:hover .lang-current, .lang-switch .lang-current:hover { color: #fff !important; border-color: rgba(255,255,255,0.4); }
.lang-menu {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 0;
  background: #000; border: 1px solid rgba(255,255,255,0.18); border-radius: 4px;
  min-width: 76px; overflow: hidden; z-index: 60;
}
.lang-switch:hover .lang-menu, .lang-switch:focus-within .lang-menu { display: block; }
.lang-menu a {
  display: block; font-size: 12px !important; font-weight: 600 !important;
  color: rgba(255,255,255,0.55) !important; padding: 9px 14px !important;
}
.lang-menu a:hover { color: #fff !important; background: rgba(255,255,255,0.08); }
.lang-menu a.lang-active { color: var(--gold-light) !important; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  color: #fff;
  background: var(--ink) center/cover no-repeat;
  overflow: hidden;
}
.hero .bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.85) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding: 90px 32px; }
.hero-mark { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; }
.hero h1 { font-size: 54px; line-height: 1.1; max-width: 760px; margin: 20px 0 24px; color: #fff; }
.hero p.lead { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.82); max-width: 540px; margin-bottom: 38px; font-family: var(--sans); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 15px 28px; font-size: 13.5px; letter-spacing: 0.02em;
  border-radius: 3px; transition: all 0.2s; font-weight: 600; font-family: var(--sans);
}
.btn-primary { background: var(--white); color: var(--ink); }
.btn-primary:hover { background: var(--grey-100); }
.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ===== Sections ===== */
section { padding: 100px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-grey { background: var(--grey-100); }

.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head h2 { font-size: 34px; margin-top: 12px; line-height: 1.2; }
.section-head p { font-size: 16px; color: var(--grey-600); margin-top: 14px; font-family: var(--sans); font-weight: 400; }
.section-dark .section-head p { color: rgba(255,255,255,0.68); }

/* ===== Pillars ===== */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar {
  position: relative; border-radius: 6px; overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; color: #fff;
}
.pillar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pillar:hover img { transform: scale(1.04); }
.pillar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.05) 30%, rgba(10,10,11,0.92) 100%); }
.pillar-content { position: relative; z-index: 2; padding: 40px; }
.pillar .num { font-size: 13px; color: var(--gold-light); font-weight: 600; letter-spacing: 0.1em; }
.pillar h3 { font-size: 27px; margin: 12px 0 12px; color: #fff; }
.pillar p { color: rgba(255,255,255,0.82); font-size: 15px; margin-bottom: 18px; font-family: var(--sans); font-weight: 400; }
.pillar .link { font-size: 13px; font-weight: 600; color: #fff; border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: left; border-top: 1px solid var(--line); padding-top: 44px; }
.stat { transition: transform 0.3s ease; }
.stat:hover { transform: translateY(-5px); }
.stat .figure { font-family: var(--display); font-size: 42px; font-weight: 800; color: #fff; transition: color 0.3s ease; }
.stat:hover .figure { color: var(--gold-light); }
.stat .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; font-weight: 500; }
.stat .sub { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 4px; }
.disclaimer { font-size: 11.5px; color: rgba(255,255,255,0.38); max-width: 780px; margin: 44px 0 0; line-height: 1.7; }

/* ===== Problem / pain point block ===== */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pain-grid blockquote {
  font-family: var(--display); font-size: 26px; font-weight: 700; line-height: 1.35; color: var(--text);
  border-left: 3px solid var(--gold); padding-left: 26px;
}
.pain-list { list-style: none; }
.pain-list li { padding: 18px 0; border-bottom: 1px solid var(--line-dark); font-size: 15px; color: var(--grey-600); }
.pain-list li b { color: var(--text); font-weight: 600; }

/* ===== Markets grid ===== */
.markets-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 36px; }
.market { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: flex-end; color: #fff; }
.market img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.market::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.9) 100%); }
.market.no-img { background: var(--ink); align-items: center; justify-content: center; text-align: center; }
.market-content { position: relative; z-index: 2; padding: 18px; width: 100%; }
.market-content .flag-label { font-family: var(--display); font-size: 18px; font-weight: 700; }
.market-content .region { font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light); margin-top: 4px; }

/* ===== Method steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 16px; }
.step .step-num {
  width: 42px; height: 42px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: var(--display); color: var(--gold); font-size: 16px; font-weight: 700; margin-bottom: 18px;
}
.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--grey-600); font-family: var(--sans); }
.section-dark .step p { color: rgba(255,255,255,0.65); }

/* ===== Insights ===== */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { border-radius: 6px; overflow: hidden; background: var(--grey-100); }
.insight-img { aspect-ratio: 4/3; overflow: hidden; }
.insight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insight-card:hover .insight-img img { transform: scale(1.05); }
.insight-body { padding: 20px 22px 24px; }
.insight-tag { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.insight-body h4 { font-size: 16.5px; font-weight: 700; margin-top: 10px; line-height: 1.35; }

/* ===== CTA band ===== */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 96px 0; }
.cta-band h2 { font-size: 36px; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; font-family: var(--sans); }

/* ===== Footer ===== */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 60px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-logo img { height: 26px; }
.footer-links { display: flex; gap: 60px; }
.footer-col h5 { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.62); margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.35); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.legal-disclaimer { font-size: 10.5px; color: rgba(255,255,255,0.3); max-width: 920px; line-height: 1.7; margin: 0 0 20px; }

/* ===== Page hero (sub pages) ===== */
.page-hero { background: var(--ink) center/cover no-repeat; color: #fff; position: relative; min-height: 360px; display: flex; align-items: center; overflow: hidden; }
.page-hero .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.88) 100%); }
.page-hero .wrap { position: relative; z-index: 2; padding: 70px 32px; }
.page-hero h1 { font-size: 42px; margin: 14px 0 16px; max-width: 700px; color: #fff; }
.page-hero p { font-size: 16.5px; color: rgba(255,255,255,0.78); max-width: 560px; font-family: var(--sans); font-weight: 400; }

/* ===== Two column text ===== */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.split h2 { font-size: 30px; line-height: 1.25; }
.split p { color: var(--grey-600); font-size: 15.5px; margin-bottom: 18px; font-family: var(--sans); }
.split-img { border-radius: 6px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Founders block ===== */
.founders-photo { border-radius: 6px; overflow: hidden; margin-bottom: 22px; max-width: 360px; }
.founders-photo img { width: 100%; height: auto; display: block; }
.founders-names { display: flex; gap: 40px; margin-bottom: 16px; }
.founder-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; display: flex; align-items: center; gap: 7px; }
.founder-title { font-size: 11.5px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.founder-linkedin { display: inline-flex; color: var(--grey-400); transition: color 0.2s ease; }
.founder-linkedin:hover { color: var(--gold); }
.founder-linkedin svg { width: 15px; height: 15px; fill: currentColor; display: block; }

.section-tight-bottom { padding-bottom: 40px; }
.section-tight-top { padding-top: 40px; }

/* ===== Calendly embed page ===== */
.calendly-wrap { background: #fff; border: 1px solid var(--line-dark); border-radius: 6px; overflow: hidden; }

/* ===== Locations ===== */
.locations-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.office-photo { border-radius: 6px; overflow: hidden; }
.office-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 8px 0 36px; }
.locations-grid div { font-family: var(--display); font-size: 17px; font-weight: 700; color: #fff; padding: 18px 0 0; border-top: 1px solid var(--line); }
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.contact-details a { font-size: 16px; font-weight: 600; color: var(--gold-light); }

/* ===== Phone mockup (app illustration) ===== */
.phone-mockup {
  width: 240px; padding: 10px; background: #000; border-radius: 44px;
  box-shadow: 0 40px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-screen {
  position: relative; background: var(--ink); border-radius: 34px; overflow: hidden;
  aspect-ratio: 9/19.5; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 26px; gap: 12px;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 84px; height: 22px; background: #000; border-radius: 0 0 14px 14px; z-index: 2;
}
.phone-logo { height: 22px; margin-bottom: 30px; }
.phone-field {
  width: 100%; height: 40px; border: 1px solid rgba(255,255,255,0.16); border-radius: 6px;
  background: rgba(255,255,255,0.03); display: flex; align-items: center; padding: 0 14px;
}
.phone-field span { font-size: 12px; color: rgba(255,255,255,0.32); font-family: var(--sans); }
.phone-btn {
  width: 100%; height: 42px; background: var(--white); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; margin-top: 6px;
  color: var(--ink); font-weight: 700; font-size: 13px; font-family: var(--sans);
}
.phone-forgot { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 4px; }

/* ===== Load more ===== */
.insight-extra { display: none; }
.load-more-wrap { text-align: center; margin-top: 44px; }
.btn-loadmore {
  display: inline-block; padding: 13px 30px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid var(--line-dark); border-radius: 3px; color: var(--text); background: transparent;
  cursor: pointer; font-family: var(--sans); transition: all 0.2s;
}
.btn-loadmore:hover { background: var(--grey-100); border-color: var(--grey-400); }

/* ===== Partners logo grid ===== */
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); margin-top: 12px; }
.partner-logo { background: #fff; height: 90px; display: flex; align-items: center; justify-content: center; padding: 18px; }
.partner-logo img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1); opacity: 0.65; transition: all 0.25s ease; }
.partner-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ===== Article page ===== */
.article-hero { min-height: 420px; }
.article-hero .wrap { max-width: 860px; }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.article-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--grey-600); margin-bottom: 30px; }
.article-back:hover { color: var(--text); }
.article-meta { font-size: 13px; color: var(--grey-400); margin-bottom: 6px; }
.article-body { padding-top: 20px; }
.article-body p { font-size: 17px; line-height: 1.85; color: var(--text); margin-bottom: 24px; font-family: var(--sans); }
.article-body h2, .article-body h3 { font-size: 25px; margin: 42px 0 16px; line-height: 1.3; }
.article-body ul, .article-body ol { margin: 0 0 24px 22px; }
.article-body li { font-size: 16.5px; line-height: 1.8; margin-bottom: 9px; color: var(--text); }
.article-body img { width: 100%; border-radius: 6px; margin: 40px 0; }
.article-body blockquote { border-left: 3px solid var(--gold); padding-left: 24px; font-family: var(--display); font-size: 20px; font-weight: 600; margin: 34px 0; color: var(--text); }
.article-source { font-size: 12.5px; color: var(--grey-400); margin-top: -6px; margin-bottom: 26px; font-style: italic; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero h1 { font-size: 36px; }
  .pillars { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-wrap { grid-template-columns: 1fr; gap: 28px; }
  .pain-grid, .split { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-links { gap: 30px; }
}
