/* ============================================================
   REACHBLIZ — style.css
   Light editorial theme · Clash Display + Satoshi
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* ========== COLORS ========== */

  --rb-bg: #f8f6f2;
  --rb-white: #ffffff;

  --rb-ink: #0e0e0e;
  --rb-ink-60: rgba(14, 14, 14, 0.6);
  --rb-ink-30: rgba(14, 14, 14, 0.18);

  --rb-orange: #cf722a;
  --rb-orange-lt: #f9efe8;
  --rb-blue: #002762;

  --rb-green: #00c968;
  --rb-green-lt: #e6faf1;

  --rb-yellow: #ffd84d;

  --rb-card: #ffffff;
  --rb-border: rgba(14, 14, 14, 0.08);

  /* ========== TYPOGRAPHY ========== */

  --font-display: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;

  /* ========== RADIUS ========== */

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* ========== SHADOWS ========== */

  --shadow-sm: 0 2px 12px rgba(14, 14, 14, 0.06);
  --shadow-md: 0 8px 40px rgba(14, 14, 14, 0.1);
  --shadow-lg: 0 24px 80px rgba(14, 14, 14, 0.14);

  /* ========== TRANSITIONS ========== */

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.35s;

  /* ========== SIDEBAR ========== */

  --sidebar-bg: #070c0d;
  --sidebar-hover: rgba(255, 255, 255, 0.08);
  --sidebar-active: #cf722a;

  /* ========== TABLES ========== */

  --table-head: #faf7f3;
  --table-row-hover: #fcfaf8;

  /* ========== STATUS ========== */

  --status-success-bg: #e6faf1;
  --status-success: #00c968;

  --status-pending-bg: #fff7d8;
  --status-pending: #b78600;

  --status-cancel-bg: #ffeaea;
  --status-cancel: #ff4c4c;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

}

body {
  font-family: var(--font-body);
  background: var(--rb-bg);
  color: var(--rb-ink);
  /* overflow-x: hidden; */
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

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

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

ul {
  list-style: none;
}

/* ── Utility Classes ──────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rb-orange);
  margin-bottom: 1rem;
}

.rb-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay for readability */
.rb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(7, 12, 13, 0.94) 0%,
      rgba(7, 12, 13, 0.82) 28%,
      rgba(7, 12, 13, 0.58) 55%,
      rgba(7, 12, 13, 0.25) 100%);
}

.rb-hero .container {
  position: relative;
  z-index: 2;
}


.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--rb-orange);
  border-radius: 2px;
}

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

.section-desc {
  font-size: 1.2rem;
  color: var(--rb-ink-60);
  line-height: 1.7;
  /*  max-width: 520px; */
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rb-orange);
  color: #fff;
  /* padding: 10px 20px; */
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(255, 76, 0, 0.38) !important;
  background-color: var(--rb-orange) !important;
}

.btn-blue {
  background: #002762;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
}

.btn-blue:hover {
  box-shadow: 0 10px 30px rgba(87, 1, 226, 0.38) !important;
  background-color: #002762 !important;
  color: #fff;
}

a.btn-blue,
a.btn-blue:visited {
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  color: var(--rb-white);
  padding: 13px 27px;
  border-radius: 50px;
  border: 1.5px solid var(--rb-white);
}

.btn-outline:hover {
  border-color: var(--rb-ink-30);
  background: var(--rb-white);
}

.btn-white {
  background: var(--rb-white);
  color: var(--rb-ink);
  padding: 14px 28px;
  border-radius: 50px;
}

.btn-white:hover {
  background: #ffffff;
  color: #0e0e0e;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

.btn-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white:visited {
  background: #ffffff !important;
  color: #0e0e0e !important;
  border: none !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

.btn-arrow::after {
  content: " →";
}

/* ── Navbar ───────────────────────────────────────────────── */
.rb-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0;
  transition: all var(--dur) var(--ease);
}

.rb-navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 55px;
  background-color: var(--rb-white);
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-radius var(--dur);
}

.rb-navbar.scrolled .rb-navbar-inner {
  background: rgba(248, 246, 242, 0.94);
  backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 var(--rb-border),
    var(--shadow-sm);
}

.rb-logo-img {
  height: 200px;
  /* adjust as needed */
  width: auto;
  display: block;
}

.rb-logo-accent {
  color: var(--rb-orange);
}

.rb-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rb-nav-links a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--rb-bl);
  transition: color var(--rb-orange);

}

.rb-nav-links a:hover {
  font-weight: 600;
  color: var(--rb-ink);
}

.rb-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.rb-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rb-ink);
  border-radius: 2px;
  transition: var(--dur);
}



/* ── Hero ─────────────────────────────────────────────────── */
.rb-hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
  background-image: url("../assets/banner_img.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.rb-trust-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.rb-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--rb-border);

  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.rb-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rb-trust-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.rb-trust-content h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--onyx);
}

.rb-trust-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim-grey);
}

.rb-hero-bg-circle {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 76, 0, 0.07) 0%,
      transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.rb-hero-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.rb-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rb-orange-lt);
  color: var(--rb-orange);
  border: 1px solid rgba(255, 76, 0, 0.2);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.rb-hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--rb-orange);
  border-radius: 50%;
  animation: blink 1.4s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.rb-hero-h1 {
  /* font-size: clamp(3.2rem, 6vw, 5.8rem); */
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--rb-white);
}

.rb-hero-h1 .line-accent {
  position: relative;
  display: inline-block;
  color: var(--rb-orange);
}

.rb-hero-sub {
  font-size: 1.1rem;
  color: var(--rb-white);
  max-width: 480px;
  line-height: 1.72;
  margin-bottom: 2.5rem;
}

.rb-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero right: brand preview stack */
.rb-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 650px;
}

.rb-brand-preview-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Logos / Trust strip ──────────────────────────────────── */
.rb-trust {
  padding: 20px 0;
  border-top: 1px solid var(--rb-border);
  background: var(--rb-white);
}

.rb-trust-label {
  font-size: 2rem;
  font-weight: 600;
  color: var(--rb-ink-60);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  /* margin-bottom: 1.5rem; */
}

.rb-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  /* color: rgba(14, 14, 14, 0.35); */
  color: var(--rb-ink-60);
  letter-spacing: -0.02em;
  transition: color var(--dur);
}

.rb-trust-item:hover {
  color: var(--rb-ink);
}

.rb-trust-item .t-icon {
  font-size: 1.2rem;
}

/* ── Brands Section ──────────────────────────────────────── */
.rb-brands {
  padding: 30px 0;
}

.rb-brands-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 20px; */
  align-items: end;
  margin-bottom: 20px;
}

/* Salts Card */
.rb-brand-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.rb-brand-block-salts {
  background: linear-gradient(145deg, #fff8f5 0%, #fff1e8 100%);
  border: 1px solid rgba(255, 76, 0, 0.12);
}

.rb-brand-block-roundz {
  background: linear-gradient(145deg, #f2f5ff 0%, #e8edff 100%);
  border: 1px solid rgba(26, 60, 255, 0.12);
}

.rb-brand-block-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /*    gap:50px; */
  align-items: center;
}

.rb-bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  /* grid-template-rows:180px 180px; */
  gap: 14px;
}

.rb-bento-item {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  /*     box-shadow:var(--shadow-md); */
}

.rb-bento-item.hero {
  grid-row: 1 / 3;
}

.rb-bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.rb-bento-item:hover img {
  transform: scale(1.08);
}

.rb-brand-block-copy {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rb-salts-logo {
  height: 70px;
  width: auto;
  display: block;
}

.rb-brand-checklist i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(207, 114, 42, 0.12);
  color: #cf722a;
  font-size: 18px;
}

.rb-brand-block-roundz .rb-brand-checklist i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  background: rgba(26, 60, 255, 0.14);
  color: #002762;

  font-size: 20px;
}

.rb-salts-banner-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.rb-brand-logo-pill {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  margin: 0;
  position: relative;

  display: flex;
  align-items: center;
  width: 100%;
  min-height: 86px;
}

.rb-brand-logo-pill .pill-img-wrap {
  padding: 16px 24px;

  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.rb-brand-logo-pill .pill-name {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;

  width: 100%;
  text-align: center;
}


/* Salts */
.pill-salts .pill-img-wrap {
  background: var(--rb-orange);
}

.pill-salts .pill-name {
  /* background: #fff5ee;
  color: var(--rb-orange); */
  color: var(--rb-bg);
  font-size: 28px;
}

/* Roundz */
.pill-roundz .pill-img-wrap {
  background: var(--rb-blue);
}

.pill-roundz .pill-name {
  /* background: #eef2ff;
  color: #0f2a6e; */
  color: var(--rb-bg);
  font-size: 28px;
}

.rb-roundz-logo {
  height: 70px;
  width: auto;
  display: block;
}

.rb-stat-cell-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.rb-stat-cell-icon i {
  font-size: 34px;
}

.rb-brand-block {
  position: relative;
}

.rb-brand-block>.rb-brand-logo-pill {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

/* .rb-brand-block > .rb-brand-logo-pill {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
  margin-bottom: 0;
} */
.stat-orange {
  background: rgba(207, 114, 42, 0.12);
  color: #cf722a;
}

.stat-blue {
  background: rgba(26, 60, 255, 0.12);
  color: #1a3cff;
}

.stat-green {
  background: rgba(0, 201, 104, 0.12);
  color: #00c968;
}

.stat-dark {
  background: rgba(184, 134, 11, 0.12);
  color: #B8860B;
}

.rb-stat-cell-desc {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--rb-ink-60);
}

.pill-salts {
  background: var(--rb-orange);
  color: #fff;
}

.pill-roundz {
  background: var(--rb-blue);
  color: #fff;
}

.rb-brand-block-h2 {
  /* font-size: clamp(1.6rem, 2.5vw, 2.2rem); */
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.rb-brand-block-p {
  font-size: 0.93rem;
  color: var(--rb-ink);
  line-height: 1.72;
  margin-bottom: 1.8rem;
}

.rb-brand-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 2rem;
  list-style: none;
  padding: 0;
}

.rb-brand-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  /* margin-bottom: 14px; */
  font-size: 1rem;
  color: var(--rb-ink-60);
  font-weight: 500;
}

.rb-brand-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.check-orange {
  background: var(--rb-orange-lt);
  color: var(--rb-orange);
}

.check-blue {
  background: var(--rb-blue-lt);
  color: var(--rb-blue);
}

.rb-brand-block-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px 20px;
}

.rb-brand-stat-row {
  display: flex;
  gap: 32px;
  /* padding-top: 20px; */
}

.rb-brand-stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}

.rb-brand-stat-label {
  font-size: 0.75rem;
  color: var(--rb-ink-60);
  font-weight: 500;
}

/* ── Stats Section ──────────────────────────────────────────── */
.rb-stats {
  padding: 20px 0;
}

.rb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  /*  background: var(--rb-border); */
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rb-border);
}

.rb-stat-cell {
  background: var(--rb-white);
  padding: 44px 36px;
  transition: background var(--dur);
}

.rb-stat-cell:hover {
  background: var(--rb-bg);
}

.rb-stat-cell-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.rb-stat-cell-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.rb-stat-cell-label {
  font-size: 0.85rem;
  color: var(--rb-ink-60);
  font-weight: 500;
}

.num-orange {
  color: var(--rb-orange);
}

.num-blue {
  color: var(--rb-blue);
}

.num-green {
  color: var(--rb-green);
}

.num-ink {
  color: #B8860B;
}

/* ── About Section ──────────────────────────────────────────── */
.rb-about {
  padding: 10px 0;
  background: var(--rb-white);
}

.rb-about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.rb-value-icon img {
  width: 90px;
  /* adjust size here */
  height: 90px;
  /* keep square for consistency */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.rb-about-visual {
  position: relative;
}

.rb-about-img-main {
  width: 100%;
  /*  aspect-ratio: 4/3; */
  border-radius: var(--radius-xl);
  /* background: linear-gradient(135deg, #ffd84d 0%, #ff8c40 60%, #ff4c00 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  position: relative;
}

.rb-about-img-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      transparent 50%,
      rgba(0, 0, 0, 0.15) 100%);
}

.rb-about-emoji {
  font-size: 5rem;
  position: relative;
  z-index: 1;
}

.rb-about-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--rb-ink);
  color: var(--rb-white);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.rb-about-badge-sub {
  font-size: 0.72rem;
  opacity: 0.6;
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.rb-about-mini {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--rb-white);
  border: 1px solid var(--rb-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.rb-about-mini-icon {
  font-size: 1.6rem;
}

.rb-about-mini-text {
  font-size: 0.82rem;
  font-weight: 600;
}

.rb-about-mini-sub {
  font-size: 0.72rem;
  color: var(--rb-ink-60);
}

/* .rb-about-copy {
  padding-bottom: 20px;
} */

.rb-about-copy .section-title {
  margin-bottom: 1.2rem;
}

.rb-about-body {
  font-size: 0.97rem;
  color: var(--rb-ink-60);
  line-height: 1.78;
  margin-bottom: 1.4rem;
}

.rb-cin-block {
  background: var(--rb-bg);
  border: 1px solid var(--rb-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 24px;
}

.rb-cin-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rb-ink-60);
  margin-bottom: 4px;
}

.rb-cin-item-val {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
}

.rb-timeline-compact {
  margin-top: 2rem;
}

.rb-tc-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  position: relative;
}

.rb-tc-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: var(--rb-border);
}

.rb-tc-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rb-orange-lt);
  border: 2px solid var(--rb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--rb-orange);
  flex-shrink: 0;
  font-weight: 700;
}

.rb-tc-body {
  padding-top: 4px;
}

.rb-tc-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rb-orange);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.rb-tc-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.rb-tc-text {
  font-size: 0.82rem;
  color: var(--rb-ink-60);
}

.rb-section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.rb-section-subtitle {
  text-align: center;
}

/* ── Values Section ─────────────────────────────────────────── */
.rb-values {
  padding: 20px 0;
}

.rb-values-header {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.rb-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rb-cta-banner {
  padding: 90px 0;
  position: relative;
}

/* Main card */
.rb-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 24px;

  background: linear-gradient(135deg, #0f172a, #111827);
  /*  box-shadow: 0 20px 60px rgba(0,0,0,0.35); */

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Glow effect */
.rb-cta-glow {
  position: absolute;
  inset: -80px;
  filter: blur(40px);
  z-index: 0;
}

/* Text */
.rb-cta-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.rb-cta-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}

.rb-cta-text p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
}

/* Buttons */
.rb-cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


.rb-value-card {
  background: var(--rb-white);
  border: 1px solid var(--rb-border);
  border-radius: var(--radius-lg);
  padding: 15px;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}

.rb-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rb-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

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

.rb-value-card:hover::before {
  transform: scaleX(1);
}

.rb-value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rb-value-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rb-value-text {
  font-size: 0.86rem;
  color: var(--rb-ink-60);
  line-height: 1.65;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.rb-cta-banner {
  padding: 0 0 35px;
}

.rb-cta-inner::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 76, 0, 0.18) 0%,
      transparent 70%);
  top: -200px;
  right: 100px;
  pointer-events: none;
}

.rb-cta-inner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(26, 60, 255, 0.15) 0%,
      transparent 70%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.rb-cta-text {
  position: relative;
  z-index: 1;
}

.rb-cta-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--rb-white);
  margin-bottom: 1rem;
}

.rb-cta-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 480px;
}

/* ── Contact Section ──────────────────────────────────────── */
.rb-contact {
  padding: 20px 0;
  background: var(--rb-white);
}

.rb-contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.rb-contact-info .section-title {
  margin-bottom: 1rem;
}

.rb-contact-info .section-desc {
  margin-bottom: 2rem;
}

.rb-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rb-contact-card {
  background: var(--rb-bg);
  border: 1px solid var(--rb-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.rb-contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--rb-orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rb-contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rb-ink-60);
  margin-bottom: 2px;
}

.rb-contact-card-val {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Form */
.rb-form {
  background: var(--rb-bg);
  border: 1px solid var(--rb-border);
  border-radius: var(--radius-xl);
  padding: 20px 40px;
}

.rb-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.rb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rb-form-full {
  grid-column: 1 / -1;
}

.rb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rb-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rb-ink-60);
}

.rb-input {
  background: var(--rb-white);
  border: 1.5px solid var(--rb-border);
  color: var(--rb-ink);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--dur);
  width: 100%;
}

.rb-input:focus {
  border-color: var(--rb-orange);
}

.rb-input::placeholder {
  color: rgba(14, 14, 14, 0.3);
}

textarea.rb-input {
  resize: vertical;
  min-height: 50px;
}

.rb-form-submit {
  margin-top: 6px;
  justify-content: center;
}

/* ── Footer ───────────────────────────────────────────────── */
.rb-footer {
  background: var(--rb-ink);
  color: var(--rb-white);
  padding: 30px 0 0;
}

.rb-footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rb-footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.rb-footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.rb-footer-brands {
  display: flex;
  gap: 8px;
}

.rb-footer-brand-chip {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.rb-footer-col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
}

.rb-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rb-footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--dur);
}

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

.rb-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.rb-footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.rb-footer-cin {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}



/* image first on all screens */
.rb-reverse-layout .rb-brand-block-visual {
  order: 1;
}

.rb-reverse-layout .rb-brand-block-copy {
  order: 2;
}

.salts-text {
  color: var(--rb-orange);
}

.roundz-text {
  color: var(--rb-blue);
}

.rb-mobile-cta {
  display: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .rb-navbar-inner {
    padding: 0 24px;
  }

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

  .btn-primary {
    padding: 12px 20px;
    font-size: 14px;
  }

}

@media (max-width: 991px) {
  .rb-navbar-inner {
    padding: 0 24px;
  }

  .rb-nav-links {
    display: none;
  }

  .rb-hamburger {
    display: flex;
  }

  .rb-hero-image-wrap {
    height: 450px;
  }

  .rb-brand-preview-stack {
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }

  .rb-hero-badge-float {
    right: 10px;
    top: 10px;
  }


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

  .rb-about-layout {
    grid-template-columns: 1fr;
  }

  .rb-about-visual {
    display: none;
  }

  .rb-values-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .rb-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rb-cta-inner {
    grid-template-columns: 1fr;
    padding: 50px 36px;
  }

  .rb-contact-layout {
    grid-template-columns: 1fr;
  }

  .rb-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .rb-nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 68px;
    left: 0;
    right: 0;

    background: var(--rb-bg);
    padding: 24px;
    gap: 0.5rem;
  }

  .rb-nav-links.open li {
    width: auto;
    display: flex;
    align-items: center;
  }

  .rb-nav-links.open a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 30px;
    text-align: center;
  }

  .rb-mobile-cta {
    display: flex;
    justify-content: center;
  }

  .rb-mobile-cta .btn {
    padding: 5px 10px;
    color: white;
  }
}

@media (max-width: 768px) {

  .rb-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .rb-cta-text h2 {
    font-size: 30px;
  }

  .rb-cta-buttons {
    justify-content: center;
  }

  .rb-stat-cell {
    padding: 10px 20px;
  }

  .pill-salts .pill-name {
    display: none;
  }

  .pill-roundz .pill-name {
    display: none;
  }

  .rb-brand-logo-pill .pill-img-wrap {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .rb-salts-logo {
    height: 40px;
    width: auto;
  }

  .rb-roundz-logo {
    height: 50px;
    width: auto;
  }

  .rb-brand-logo-pill {
    min-height: 50px;
  }
}


@media (max-width: 600px) {
  .rb-hero {
    padding: 50px 0 60px;
  }

  .rb-hero-metrics {
    gap: 0;
    flex-direction: column;
  }

  .rb-metric {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--rb-border);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .rb-metric:last-child {
    border-bottom: none;
  }

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

  .rb-values-grid {
    grid-template-columns: 1fr;
  }

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

  .rb-footer-top {
    grid-template-columns: 1fr;
  }

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

  .rb-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .rb-brand-checklist {
    display: none;
  }

  .rb-brand-stat-row {
    gap: 20px;
  }

  .container {
    padding: 0 18px;
  }

  .rb-brands-header {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 500px) {
  .rb-hero-layout {
    grid-template-columns: 1fr;
  }

  .rb-hero-right {
    display: none;
  }

  .rb-brand-block-inner {
    grid-template-columns: 1fr;
  }

  .rb-brand-block-visual {
    min-height: 200px;
  }

  .rb-visual-emoji-big {
    font-size: 5rem;
  }

  .rb-hero-pill {
    margin-top: 30px;
  }
}