/* ============================================================
   RepairOps — Global Stylesheet
   Design system from Mockup 2 (Bold + Confident)
   ============================================================ */

:root {
  --ro-blue: #2563EB;
  --ro-blue-bright: #3B82F6;
  --ro-blue-dark: #1D4ED8;
  --ro-blue-50: #EFF6FF;
  --ro-ink: #0A0E1A;
  --ro-ink-2: #111827;
  --ro-gray: #94A3B8;
  --ro-gray-2: #64748B;
  --ro-gray-3: #475569;
  --ro-line: rgba(255, 255, 255, 0.08);
  --ro-line-light: #E2E8F0;
  --ro-line-soft: #F1F5F9;
  --ro-success: #10B981;
  --ro-radius-md: 10px;
  --ro-radius-lg: 16px;
  --ro-radius-xl: 24px;
  --ro-max-w: 1280px;
  --ro-max-w-narrow: 960px;
  --ro-font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ro-font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ro-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: white;
  background: var(--ro-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}

p { margin: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */

.ro-container {
  max-width: var(--ro-max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.ro-container--narrow {
  max-width: var(--ro-max-w-narrow);
}

@media (max-width: 700px) {
  .ro-container { padding: 0 20px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.ro-nav {
  background: var(--ro-ink);
  border-bottom: 1px solid var(--ro-line);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 14, 26, 0.92);
}

.ro-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ro-logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}
.ro-logo span { color: var(--ro-blue-bright); }

.ro-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.ro-nav-links a {
  color: var(--ro-gray);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}
.ro-nav-links a:hover { color: white; }
.ro-nav-links a.ro-active { color: white; }

.ro-nav-cta {
  background: var(--ro-blue);
  color: white !important;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.ro-nav-cta:hover { background: var(--ro-blue-bright); }

/* mobile menu toggle */
.ro-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  padding: 8px;
  cursor: pointer;
}
.ro-nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .ro-nav-links { display: none; }
  .ro-nav-toggle { display: block; }
  .ro-nav-inner.ro-open .ro-nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ro-ink);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--ro-line);
  }
  .ro-nav-inner.ro-open .ro-nav-cta {
    margin-left: 0;
  }
  .ro-nav-cta--mobile-hide { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.ro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--ro-radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.ro-btn-primary {
  background: var(--ro-blue);
  color: white;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 10px 30px -10px var(--ro-blue);
}
.ro-btn-primary:hover { background: var(--ro-blue-bright); transform: translateY(-1px); color: white; }

.ro-btn-secondary {
  color: white;
  border: 1px solid var(--ro-line);
  background: transparent;
}
.ro-btn-secondary:hover { background: rgba(255, 255, 255, 0.05); color: white; }

.ro-btn-light {
  background: white;
  color: var(--ro-ink);
}
.ro-btn-light:hover { background: var(--ro-blue-50); color: var(--ro-ink); transform: translateY(-1px); }

.ro-btn-ghost-dark {
  color: var(--ro-ink);
  border: 1px solid var(--ro-line-light);
  background: transparent;
}
.ro-btn-ghost-dark:hover { background: var(--ro-line-soft); color: var(--ro-ink); }

.ro-btn-lg {
  padding: 20px 36px;
  font-size: 16px;
}

/* ============================================================
   ATOMS — eyebrows, badges, pills
   ============================================================ */

.ro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ro-font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ro-blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 100px;
}
.ro-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ro-blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ro-blue-bright);
}

.ro-eyebrow-text {
  font-family: var(--ro-font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ro-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
}

.ro-section-eyebrow {
  font-family: var(--ro-font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ro-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: block;
}

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

.ro-display-1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.ro-display-2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.ro-display-3 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.ro-lead {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ro-gray);
}
.ro-lead-dark {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ro-gray-3);
}

.ro-accent {
  color: var(--ro-blue-bright);
  position: relative;
  display: inline-block;
}
.ro-accent--underline::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  height: 6px;
  background: var(--ro-blue-bright);
  opacity: 0.25;
  z-index: -1;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.ro-section {
  padding: 120px 0;
}
.ro-section--lg { padding: 140px 0; }
.ro-section--sm { padding: 80px 0; }

.ro-section-dark {
  background: var(--ro-ink);
  color: white;
}
.ro-section-light {
  background: white;
  color: var(--ro-ink);
}
.ro-section-blue {
  background: var(--ro-blue);
  color: white;
}

.ro-section-header {
  max-width: 760px;
  margin-bottom: 64px;
}
.ro-section-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 24px;
}
.ro-section-header p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ro-gray-2);
}
.ro-section-dark .ro-section-header p { color: var(--ro-gray); }

.ro-section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */

.ro-hero {
  background: var(--ro-ink);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.ro-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 60%);
  pointer-events: none;
}
.ro-hero > * { position: relative; z-index: 2; }

.ro-hero-eyebrow { margin-bottom: 32px; }

.ro-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 32px;
  max-width: 1100px;
}

.ro-hero-sub {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ro-gray);
  max-width: 640px;
  margin-bottom: 48px;
}

.ro-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ro-hero--small {
  padding: 80px 0 64px;
}
.ro-hero--small h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 24px;
}
.ro-hero--small .ro-hero-sub {
  margin-bottom: 0;
}

/* ============================================================
   HERO METRICS
   ============================================================ */

.ro-hero-metrics {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ro-line);
  border-bottom: 1px solid var(--ro-line);
}
.ro-metric {
  padding: 32px 28px;
  border-right: 1px solid var(--ro-line);
}
.ro-metric:last-child { border-right: none; }
.ro-metric-num {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.ro-metric-num .ro-unit {
  font-size: 0.55em;
  color: var(--ro-blue-bright);
  margin-left: 4px;
}
.ro-metric-label {
  font-size: 14px;
  color: var(--ro-gray);
}
@media (max-width: 900px) {
  .ro-hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .ro-metric:nth-child(2n) { border-right: none; }
  .ro-metric:nth-child(-n+2) { border-bottom: 1px solid var(--ro-line); }
}
@media (max-width: 500px) {
  .ro-hero-metrics { grid-template-columns: 1fr; }
  .ro-metric { border-right: none !important; border-bottom: 1px solid var(--ro-line); }
  .ro-metric:last-child { border-bottom: none; }
}

/* ============================================================
   PAIN GRID (used on homepage + why-us)
   ============================================================ */

.ro-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--ro-line-light);
  border-radius: var(--ro-radius-lg);
  overflow: hidden;
}
.ro-pain-card {
  padding: 48px 40px;
  border-right: 1px solid var(--ro-line-light);
  border-bottom: 1px solid var(--ro-line-light);
  background: white;
  transition: background 0.2s;
}
.ro-pain-card:nth-child(2n) { border-right: none; }
.ro-pain-card:nth-last-child(-n+2) { border-bottom: none; }
.ro-pain-card:hover { background: #FAFAFA; }
.ro-pain-num {
  font-family: var(--ro-font-mono);
  font-size: 13px;
  color: var(--ro-blue);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.ro-pain-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.ro-pain-card p {
  color: var(--ro-gray-2);
  line-height: 1.6;
  font-size: 16px;
}
.ro-pain-cta {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: var(--ro-ink);
  color: white;
  border-radius: var(--ro-radius-lg);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.ro-pain-cta .ro-accent { color: var(--ro-blue-bright); }
@media (max-width: 700px) {
  .ro-pain-grid { grid-template-columns: 1fr; }
  .ro-pain-card { border-right: none !important; padding: 36px 28px; }
  .ro-pain-card:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--ro-line-light); }
}

/* ============================================================
   SOLUTION + CHANNEL LIST
   ============================================================ */

.ro-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .ro-two-col { grid-template-columns: 1fr; gap: 48px; }
}

.ro-price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 24px 32px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--ro-radius-md);
}
.ro-price-block .ro-from {
  font-size: 14px;
  color: var(--ro-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ro-price-block .ro-num {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.ro-price-block .ro-unit {
  font-size: 16px;
  color: var(--ro-gray);
}

.ro-channel-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-lg);
  overflow: hidden;
}
.ro-channel-item {
  padding: 18px 22px;
  font-size: 15px;
  color: white;
  font-weight: 500;
  border-right: 1px solid var(--ro-line);
  border-bottom: 1px solid var(--ro-line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ro-channel-item:nth-child(2n) { border-right: none; }
.ro-channel-item:nth-last-child(-n+2) { border-bottom: none; }
.ro-channel-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ro-blue-bright);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================================
   DIFFERENTIATORS GRID (3-col)
   ============================================================ */

.ro-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ro-diff-card {
  padding: 40px 32px;
  background: white;
  border: 1px solid var(--ro-line-light);
  border-radius: var(--ro-radius-lg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ro-diff-card:hover {
  border-color: var(--ro-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(37, 99, 235, 0.2);
}
.ro-diff-card.ro-featured {
  background: var(--ro-ink);
  color: white;
  border-color: var(--ro-ink);
}
.ro-diff-card.ro-featured:hover { border-color: var(--ro-blue-bright); }
.ro-diff-num {
  font-family: var(--ro-font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--ro-blue);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.ro-diff-card.ro-featured .ro-diff-num { color: var(--ro-blue-bright); }
.ro-diff-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.ro-diff-card p {
  color: var(--ro-gray-2);
  font-size: 15px;
  line-height: 1.6;
}
.ro-diff-card.ro-featured p { color: var(--ro-gray); }
@media (max-width: 1000px) { .ro-diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .ro-diff-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING CARDS
   ============================================================ */

.ro-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .ro-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ro-pricing-grid { grid-template-columns: 1fr; } }

.ro-pricing-card {
  background: white;
  border: 1px solid var(--ro-line-light);
  border-radius: var(--ro-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ro-pricing-card:hover {
  border-color: var(--ro-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(37, 99, 235, 0.2);
}
.ro-pricing-card.ro-featured {
  border: 2px solid var(--ro-blue);
}
.ro-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ro-blue);
  color: white;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ro-pricing-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--ro-ink);
}
.ro-pricing-tag {
  font-size: 13px;
  color: var(--ro-gray-2);
  margin-bottom: 24px;
  min-height: 36px;
}
.ro-pricing-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ro-ink);
  margin-bottom: 4px;
}
.ro-pricing-price .ro-cents {
  font-size: 18px;
  font-weight: 600;
  color: var(--ro-gray-2);
  margin-left: 4px;
}
.ro-pricing-period {
  font-size: 13px;
  color: var(--ro-gray-2);
  margin-bottom: 24px;
}
.ro-pricing-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ro-blue);
  color: white !important;
  padding: 14px;
  border-radius: var(--ro-radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 24px;
  transition: background 0.15s;
}
.ro-pricing-cta:hover { background: var(--ro-blue-bright); color: white !important; }
.ro-pricing-cta--secondary {
  background: transparent;
  color: var(--ro-ink) !important;
  border: 1px solid var(--ro-line-light);
}
.ro-pricing-cta--secondary:hover { background: var(--ro-line-soft); color: var(--ro-ink) !important; }
.ro-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.ro-pricing-features li {
  font-size: 13px;
  color: var(--ro-gray-3);
  padding: 7px 0 7px 22px;
  position: relative;
  line-height: 1.4;
}
.ro-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ro-blue);
  font-weight: 700;
}
.ro-pricing-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ro-gray-2);
  font-weight: 600;
  padding: 14px 0 6px;
  border-top: 1px solid var(--ro-line-soft);
  margin-top: 12px;
}
.ro-pricing-features li:first-child + .ro-pricing-section-title {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* ============================================================
   MULTI-LOCATION TABLE
   ============================================================ */

.ro-multiloc {
  background: var(--ro-ink);
  color: white;
  border-radius: var(--ro-radius-lg);
  padding: 56px 48px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.ro-multiloc::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 60%);
  pointer-events: none;
}
.ro-multiloc > * { position: relative; z-index: 2; }
.ro-multiloc h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ro-multiloc-sub {
  color: var(--ro-gray);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 640px;
}
.ro-multiloc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .ro-multiloc-grid { grid-template-columns: 1fr; } }
.ro-multiloc-tier {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-md);
  padding: 24px;
}
.ro-multiloc-tier-name {
  font-family: var(--ro-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ro-blue-bright);
  margin-bottom: 8px;
}
.ro-multiloc-tier-price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.ro-multiloc-tier-period { color: var(--ro-gray); font-size: 13px; }
.ro-multiloc .ro-btn { background: white; color: var(--ro-ink); }
.ro-multiloc .ro-btn:hover { background: var(--ro-blue-50); }

/* ============================================================
   FAQ
   ============================================================ */

.ro-faq {
  max-width: 820px;
  margin: 0 auto;
}
.ro-faq-item {
  border-bottom: 1px solid var(--ro-line-light);
}
.ro-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ro-ink);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.015em;
}
.ro-faq-q::after {
  content: '+';
  font-size: 28px;
  font-weight: 400;
  color: var(--ro-blue);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ro-faq-item.ro-open .ro-faq-q::after { transform: rotate(45deg); }
.ro-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ro-gray-3);
  font-size: 16px;
  line-height: 1.65;
}
.ro-faq-item.ro-open .ro-faq-a {
  max-height: 600px;
  padding: 0 0 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.ro-footer {
  background: var(--ro-ink-2);
  color: var(--ro-gray);
  padding: 80px 0 40px;
  border-top: 1px solid var(--ro-line);
}
.ro-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .ro-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .ro-footer-grid { grid-template-columns: 1fr; }
}
.ro-footer-brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 12px;
}
.ro-footer-brand span { color: var(--ro-blue-bright); }
.ro-footer-tag {
  font-size: 14px;
  color: var(--ro-gray);
  max-width: 320px;
  line-height: 1.6;
}
.ro-footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 16px;
  font-weight: 600;
}
.ro-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ro-gray);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.ro-footer-col a:hover { color: white; }

.ro-footer-bottom {
  border-top: 1px solid var(--ro-line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ro-gray);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   FORMS (Contact)
   ============================================================ */

.ro-form {
  background: white;
  border: 1px solid var(--ro-line-light);
  border-radius: var(--ro-radius-lg);
  padding: 40px;
  max-width: 560px;
}
.ro-form-row { margin-bottom: 20px; }
.ro-form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ro-ink);
  margin-bottom: 8px;
}
.ro-form-row input,
.ro-form-row textarea,
.ro-form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ro-line-light);
  border-radius: var(--ro-radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--ro-ink);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ro-form-row textarea { min-height: 120px; resize: vertical; }
.ro-form-row input:focus,
.ro-form-row textarea:focus,
.ro-form-row select:focus {
  outline: none;
  border-color: var(--ro-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.ro-form button[type="submit"] {
  width: 100%;
  background: var(--ro-blue);
  color: white;
  padding: 14px;
  border-radius: var(--ro-radius-md);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.ro-form button[type="submit"]:hover { background: var(--ro-blue-bright); }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */

.ro-final-cta {
  padding: 140px 0;
  background: var(--ro-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ro-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 60%);
}
.ro-final-cta > * { position: relative; z-index: 2; }
.ro-final-cta h2 {
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.ro-final-cta p {
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.ro-final-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.ro-final-trust span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ============================================================
   PLATFORM PAGE - Feature blocks
   ============================================================ */

.ro-feature-block {
  padding: 100px 0;
  border-top: 1px solid var(--ro-line);
}
.ro-feature-block:first-of-type { border-top: none; }
.ro-feature-block .ro-two-col { gap: 96px; }
.ro-feature-block h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ro-feature-block p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ro-gray);
  margin-bottom: 24px;
}
.ro-feature-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ro-feature-block ul li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--ro-gray);
  font-size: 15px;
}
.ro-feature-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 6px;
  background: var(--ro-blue-bright);
  border-radius: 2px;
}
.ro-feature-visual {
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-lg);
  padding: 40px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ro-feature-visual-eyebrow {
  font-family: var(--ro-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ro-blue-bright);
  margin-bottom: 12px;
}
.ro-feature-visual-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: white;
}
.ro-feature-visual-stat {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
  margin: 12px 0;
}
.ro-feature-visual-detail {
  font-size: 14px;
  color: var(--ro-gray);
}

/* ============================================================
   SERVICES PAGE — service categories
   ============================================================ */

.ro-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 1000px) { .ro-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .ro-services-grid { grid-template-columns: 1fr; } }

.ro-service-card {
  background: white;
  border: 1px solid var(--ro-line-light);
  border-radius: var(--ro-radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ro-service-card:hover {
  border-color: var(--ro-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(37, 99, 235, 0.15);
}
.ro-service-icon {
  font-family: var(--ro-font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ro-blue);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ro-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.ro-service-card p {
  font-size: 14px;
  color: var(--ro-gray-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ro-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ro-service-card ul li {
  font-size: 13px;
  color: var(--ro-gray-3);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}
.ro-service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ro-blue);
  font-weight: 600;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.ro-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ro-reveal.ro-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ro-reveal,
  .ro-reveal.ro-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.ro-text-center { text-align: center; }
.ro-mt-0 { margin-top: 0; }
.ro-mt-2 { margin-top: 16px; }
.ro-mt-4 { margin-top: 32px; }
.ro-mt-6 { margin-top: 48px; }
.ro-mt-8 { margin-top: 64px; }
.ro-mb-0 { margin-bottom: 0; }
.ro-mb-2 { margin-bottom: 16px; }
.ro-mb-4 { margin-bottom: 32px; }
.ro-mb-6 { margin-bottom: 48px; }
.ro-block { display: block; }

/* ============================================================
   TRUSTPILOT SOCIAL PROOF BAR
   ============================================================ */

.ro-trustbar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ro-line);
  border-radius: 100px;
  text-decoration: none;
  color: white;
  font-size: 13px;
  transition: background 0.15s, border-color 0.15s;
}
.ro-trustbar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.ro-trustbar-stars {
  display: inline-flex;
  gap: 2px;
  color: #00B67A;
  font-size: 14px;
  letter-spacing: 1px;
}
.ro-trustbar-text { color: var(--ro-gray); }
.ro-trustbar-text strong { color: white; font-weight: 700; }

.ro-trustbar--light {
  background: white;
  border-color: var(--ro-line-light);
  color: var(--ro-ink);
}
.ro-trustbar--light:hover {
  background: var(--ro-line-soft);
  color: var(--ro-ink);
}
.ro-trustbar--light .ro-trustbar-text { color: var(--ro-gray-3); }
.ro-trustbar--light .ro-trustbar-text strong { color: var(--ro-ink); }

/* ============================================================
   APPEND TO BOTTOM OF css/styles.css
   All new component styles added May 2026 session
   ============================================================ */


/* ── LOGO WALL ─────────────────────────────────────────────── */

.ro-logo-wall {
  background: white;
  padding: 44px 0 0;
  border-top: 1px solid var(--ro-line-light);
}

.ro-logo-wall-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.ro-logo-wall-label {
  font-family: var(--ro-font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ro-gray-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.ro-logo-wall-line {
  flex: 1;
  height: 1px;
  background: var(--ro-line-light);
}

.ro-logo-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ro-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
  flex-shrink: 0;
}

.ro-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.ro-logo-item img {
  height: 36px;
  width: auto;
  display: block;
  max-width: 160px;
  object-fit: contain;
}

.ro-logo-item--icon img {
  height: 48px;
}

.ro-logo-wall-trustbar {
  margin-top: 32px;
  border-top: 1px solid var(--ro-line-light);
  padding: 16px 0;
}

.ro-tp-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ro-tp-stars {
  color: #00B67A;
  font-size: 16px;
  letter-spacing: -0.5px;
}

.ro-tp-text {
  font-size: 14px;
  color: var(--ro-gray-2);
}

.ro-tp-text strong {
  color: var(--ro-ink);
}

@media (max-width: 768px) {
  .ro-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 12px;
    justify-items: center;
  }
  .ro-logo-item img { height: 28px; max-width: 72px; }
  .ro-logo-item--icon img { height: 36px; }
}


/* ── FOUNDER INTRO (About page) ────────────────────────────── */

.ro-founder-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

.ro-founder-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.ro-founder-photo {
  width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
}

.ro-founder-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ro-ink);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 2px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ro-founder-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ro-blue-bright);
  box-shadow: 0 0 8px var(--ro-blue-bright);
  flex-shrink: 0;
}

.ro-founder-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ro-ink);
  margin-bottom: 28px;
  line-height: 1.1;
}

.ro-founder-text p {
  font-size: 17px;
  color: var(--ro-gray-3);
  line-height: 1.8;
  margin-bottom: 20px;
}

.ro-founder-text p strong {
  color: var(--ro-ink);
  font-weight: 600;
}

.ro-founder-sig {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--ro-line-light);
  display: flex;
  align-items: center;
  gap: 16px;
}

.ro-founder-sig-line {
  width: 32px;
  height: 2px;
  background: var(--ro-blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.ro-founder-sig-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ro-ink);
}

.ro-founder-sig-title {
  font-size: 13px;
  color: var(--ro-gray-2);
  font-family: var(--ro-font-mono);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .ro-founder-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ro-founder-photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ro-founder-photo {
    width: 200px;
    height: 240px;
  }
}


/* ── FOUNDER ARC TIMELINE ──────────────────────────────────── */

.ro-arc-section-wrap {
  padding-top: 0;
  border-top: none;
}

.ro-arc-label {
  font-family: var(--ro-font-mono);
  font-size: 11px;
  color: var(--ro-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ro-arc-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ro-line-light);
}

.ro-arc-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.ro-arc-track::before {
  content: '';
  position: absolute;
  top: 10px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(90deg, var(--ro-blue) 0%, var(--ro-blue-bright) 50%, var(--ro-blue) 100%);
  opacity: 0.2;
  z-index: 0;
}

.ro-arc-milestone {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}

.ro-arc-milestone:last-child { padding-right: 0; }

.ro-arc-dot-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ro-arc-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--ro-blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ro-arc-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ro-blue);
}

.ro-arc-dot--active {
  background: var(--ro-blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

.ro-arc-dot--active::after {
  background: white;
}

.ro-arc-year {
  font-family: var(--ro-font-mono);
  font-size: 12px;
  color: var(--ro-blue);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.ro-arc-tag {
  display: inline-block;
  font-family: var(--ro-font-mono);
  font-size: 10px;
  color: var(--ro-gray-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #F1F5F9;
  border: 1px solid var(--ro-line-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.ro-arc-tag--active {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.2);
  color: var(--ro-blue);
}

.ro-arc-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ro-ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.ro-arc-title--active {
  color: var(--ro-blue);
}

.ro-arc-body {
  font-size: 14px;
  color: var(--ro-gray-2);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .ro-arc-track {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ro-arc-track::before { display: none; }
  .ro-arc-milestone {
    padding: 0 0 28px 32px;
    position: relative;
  }
  .ro-arc-milestone::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: var(--ro-line-light);
  }
  .ro-arc-milestone:last-child::before { display: none; }
  .ro-arc-dot-row { position: absolute; left: 0; top: 0; }
  .ro-arc-tag { display: inline-block; margin-top: 2px; }
}


/* ── LEGAL PAGES ─────────────────────────────────────────────── */

.ro-legal-notice {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-left: 4px solid var(--ro-blue);
  border-radius: var(--ro-radius-md);
  padding: 20px 24px;
  font-size: 15px;
  color: var(--ro-ink);
  line-height: 1.6;
  margin-bottom: 56px;
}

.ro-legal-notice strong { color: var(--ro-blue-dark); }

.ro-legal-body { color: var(--ro-ink); padding-bottom: 80px; }

.ro-legal-body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ro-ink);
  margin-top: 56px;
  margin-bottom: 16px;
  padding-top: 56px;
  border-top: 1px solid var(--ro-line-light);
}

.ro-legal-body h2:first-child {
  margin-top: 0; padding-top: 0; border-top: none;
}

.ro-legal-body h3 {
  font-size: 17px; font-weight: 700; letter-spacing: -0.015em;
  color: var(--ro-ink); margin-top: 32px; margin-bottom: 10px;
}

.ro-legal-body p {
  font-size: 15px; color: var(--ro-gray-3); line-height: 1.75; margin-bottom: 16px;
}

.ro-legal-body ul {
  margin: 0 0 20px 0; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}

.ro-legal-body ul li {
  font-size: 15px; color: var(--ro-gray-3); line-height: 1.6;
  padding-left: 24px; position: relative;
}

.ro-legal-body ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ro-blue); opacity: 0.5;
}

.ro-legal-body a {
  color: var(--ro-blue); text-decoration: underline;
  text-decoration-color: rgba(37,99,235,0.3); text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.ro-legal-body a:hover { color: var(--ro-blue-dark); text-decoration-color: var(--ro-blue-dark); }

.ro-legal-body address {
  font-style: normal; font-size: 15px; color: var(--ro-gray-3); line-height: 1.9;
  background: #F8FAFC; border: 1px solid var(--ro-line-light);
  border-radius: var(--ro-radius-md); padding: 20px 24px; margin-bottom: 20px; display: block;
}

.ro-legal-body strong { color: var(--ro-ink); font-weight: 600; }

.ro-legal-divider { height: 1px; background: var(--ro-line-light); margin: 56px 0; }

/* ============================================================
   NAV DROPDOWN — added May 2026
   APPEND THIS to the bottom of styles.css
   (after the existing logo wall / founder / arc / legal blocks)
   ============================================================ */

.ro-nav-dropdown-wrap {
  position: relative;
}

.ro-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--ro-gray);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.ro-nav-dropdown-trigger:hover,
.ro-nav-dropdown-wrap:hover .ro-nav-dropdown-trigger,
.ro-nav-dropdown-wrap.ro-dropdown-open .ro-nav-dropdown-trigger {
  color: white;
}
.ro-nav-dropdown-trigger.ro-active { color: white; }

.ro-nav-chevron {
  width: 13px;
  height: 13px;
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s;
  flex-shrink: 0;
  display: inline-block;
}
.ro-nav-dropdown-wrap.ro-dropdown-open .ro-nav-chevron,
.ro-nav-dropdown-wrap:hover .ro-nav-chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}

.ro-nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  background: #0F1623;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(37, 99, 235, 0.08);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.ro-nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #0F1623;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(-50%) rotate(45deg);
}

.ro-nav-dropdown-wrap.ro-dropdown-open .ro-nav-dropdown,
.ro-nav-dropdown-wrap:hover .ro-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ro-nav-dropdown-label {
  font-family: var(--ro-font-mono);
  font-size: 10px;
  color: var(--ro-gray-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ro-nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.ro-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ro-gray);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.ro-nav-dropdown-item:hover {
  background: rgba(37, 99, 235, 0.12);
  color: white;
}

.ro-nav-dropdown-icon {
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Mobile: dropdown → accordion */
@media (max-width: 960px) {
  .ro-nav-dropdown {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: none !important;
    margin-top: 8px !important;
    padding: 12px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: opacity 0.2s, max-height 0.3s ease, visibility 0.2s !important;
  }
  .ro-nav-dropdown::before { display: none !important; }

  .ro-nav-dropdown-wrap.ro-dropdown-open .ro-nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    max-height: 400px !important;
  }

  /* Disable hover on mobile — touch only */
  .ro-nav-dropdown-wrap:hover .ro-nav-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    max-height: 0 !important;
  }
  .ro-nav-dropdown-wrap.ro-dropdown-open:hover .ro-nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    max-height: 400px !important;
  }

  .ro-nav-dropdown-trigger {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 0 !important;
  }

  .ro-nav-dropdown-grid {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
  }

  .ro-nav-dropdown-item {
    padding: 8px 10px !important;
    font-size: 14px !important;
  }

  .ro-nav-cta {
    display: inline-flex !important;
  }
}

/* CTA always visible — overrides old mobile-hide class */
.ro-nav-cta--mobile-hide {
  display: inline-flex !important;
}

/* ============================================================
   NAV DROPDOWN — QUICK FIXES
   Append to very bottom of styles.css
   ============================================================ */

/* Fix 1: Scope the nav toggle SVG size so it doesn't
   bleed into the chevron inside the dropdown trigger */
.ro-nav-toggle svg {
  width: 28px !important;
  height: 28px !important;
}
.ro-nav-chevron {
  width: 13px !important;
  height: 13px !important;
}

/* Fix 2: Make the dropdown wrap sit inline with other nav links */
.ro-nav-dropdown-wrap {
  display: inline-flex !important;
  align-items: center !important;
}

/* Fix 3: Ensure the nav links flex row includes the dropdown wrap */
.ro-nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
}
