/* ===== CUSTOM PROPERTIES ===== */
.ro-homepage {
  --ro-primary: #2563eb;
  --ro-primary-dark: #1d4ed8;
  --ro-primary-light: #dbeafe;
  --ro-accent: #f97316;
  --ro-accent-hover: #ea580c;
  --ro-dark: #0f172a;
  --ro-dark-light: #1e293b;
  --ro-text: #1e293b;
  --ro-text-secondary: #64748b;
  --ro-text-light: #64748b;
  --ro-bg-light: #f8fafc;
  --ro-bg-white: #ffffff;
  --ro-border: #e2e8f0;
  --ro-green: #047857;
  --ro-indigo: #6366f1;
  --ro-radius: 16px;
  --ro-radius-sm: 8px;
  --ro-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --ro-shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --ro-max-width: 1200px;
  --ro-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  font-family: var(--ro-font);
  color: var(--ro-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.ro-homepage a {
  color: var(--ro-primary);
  text-decoration: none;
  transition: color 0.2s;
}
.ro-homepage a:hover { color: var(--ro-primary-dark); }

/* ===== LAYOUT ===== */
.ro-container {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.ro-section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.ro-section-sub {
  font-size: 1.125rem;
  color: var(--ro-text-secondary);
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.ro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--ro-radius-sm);
  font-family: var(--ro-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  text-decoration: none !important;
}
.ro-btn--accent {
  background: var(--ro-accent);
  color: #431407 !important;
  border-color: var(--ro-accent);
}
.ro-btn--accent:hover {
  background: var(--ro-accent-hover);
  border-color: var(--ro-accent-hover);
  color: #431407 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.ro-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.9) !important;
  border-color: rgba(255,255,255,0.25);
}
.ro-btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   HERO
   ============================================================ */
.ro-hero {
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0),
    linear-gradient(135deg, #0c1222 0%, var(--ro-dark) 40%, var(--ro-dark-light) 100%);
  background-size: 32px 32px, 100% 100%;
  padding: 96px 0 112px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ro-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ro-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ro-hero .ro-container { position: relative; z-index: 1; }

.ro-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
}
.ro-hero__title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ro-hero__sub {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 44px;
}
.ro-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.ro-trust {
  padding: 0;
  transform: translateY(-48px);
  margin-bottom: -24px;
  position: relative;
  z-index: 2;
}
.ro-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ro-trust__item {
  background: var(--ro-bg-white);
  border-radius: var(--ro-radius);
  box-shadow: var(--ro-shadow-hover);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s;
}
.ro-trust__item:hover { transform: translateY(-2px); }
.ro-trust__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ro-primary);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.ro-trust__label {
  font-size: 0.8125rem;
  color: var(--ro-text-secondary);
  font-weight: 500;
}

/* ============================================================
   CRITERIA (success criteria from JTBD)
   ============================================================ */
.ro-criteria {
  padding: 80px 0;
  background: var(--ro-bg-white);
}
.ro-criteria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ro-criteria__card {
  background: var(--ro-bg-light);
  border-radius: var(--ro-radius);
  padding: 28px 24px;
  border-left: 4px solid var(--ro-green);
  transition: all 0.3s;
}
.ro-criteria__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ro-shadow-hover);
}
.ro-criteria__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  color: var(--ro-green);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.ro-criteria__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ro-text);
}
.ro-criteria__card p {
  font-size: 0.875rem;
  color: var(--ro-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.ro-services {
  padding: 80px 0;
  background: var(--ro-bg-light);
}
.ro-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ro-services__card {
  background: var(--ro-bg-white);
  border-radius: var(--ro-radius);
  padding: 36px 28px;
  box-shadow: var(--ro-shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.ro-services__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ro-shadow-hover);
  border-color: var(--ro-primary-light);
}
.ro-services__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
}
.ro-services__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.ro-services__card p {
  font-size: 0.9375rem;
  color: var(--ro-text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.ro-services__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ro-primary) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.ro-services__link:hover {
  gap: 10px;
  color: var(--ro-primary-dark) !important;
}

/* ============================================================
   AUDIENCE (Для кого)
   ============================================================ */
.ro-audience {
  padding: 80px 0;
  background: var(--ro-bg-white);
}
.ro-audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ro-audience__card {
  background: var(--ro-bg-light);
  border-radius: var(--ro-radius);
  padding: 28px 24px;
  border-top: 4px solid var(--ro-primary);
  transition: all 0.3s;
}
.ro-audience__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ro-shadow-hover);
}
.ro-audience__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.ro-audience__role {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ro-text);
}
.ro-audience__trigger {
  font-size: 0.875rem;
  color: var(--ro-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
  padding-left: 12px;
  border-left: 3px solid var(--ro-primary-light);
}
.ro-audience__need {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ro-primary);
  line-height: 1.5;
}

/* ============================================================
   PAINS -> SOLUTIONS (Боли -> Решения)
   ============================================================ */
.ro-pains {
  padding: 80px 0;
  background: var(--ro-bg-light);
}
.ro-pains__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.ro-pains__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  background: var(--ro-bg-white);
  border-radius: var(--ro-radius);
  padding: 24px 28px;
  box-shadow: var(--ro-shadow);
  transition: all 0.3s;
}
.ro-pains__item:hover {
  box-shadow: var(--ro-shadow-hover);
  transform: translateY(-1px);
}
.ro-pains__pain {
  position: relative;
}
.ro-pains__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}
.ro-pains__pain h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 6px;
}
.ro-pains__pain p {
  font-size: 0.8125rem;
  color: var(--ro-text-secondary);
  line-height: 1.55;
  font-style: italic;
}
.ro-pains__arrow {
  font-size: 1.5rem;
  color: var(--ro-green);
  font-weight: 700;
  flex-shrink: 0;
}
.ro-pains__solution h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ro-green);
  margin-bottom: 6px;
}
.ro-pains__solution p {
  font-size: 0.8125rem;
  color: var(--ro-text-secondary);
  line-height: 1.55;
}

/* ============================================================
   PROCESS
   ============================================================ */
.ro-process {
  padding: 80px 0;
  background: var(--ro-bg-white);
}
.ro-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.ro-process__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--ro-primary-light), var(--ro-primary), var(--ro-primary-light));
}
.ro-process__step {
  text-align: center;
  position: relative;
}
.ro-process__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ro-primary);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--ro-bg-white), 0 4px 12px rgba(37,99,235,0.2);
}
.ro-process__step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.ro-process__step p {
  font-size: 0.875rem;
  color: var(--ro-text-secondary);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   JOB CHAIN — Под ключ
   ============================================================ */
.ro-chain {
  padding: 80px 0;
  background: var(--ro-dark);
  color: #fff;
}
.ro-chain .ro-section-title {
  color: #fff;
}
.ro-chain .ro-section-sub {
  color: rgba(255,255,255,0.7);
}

/* Timeline container */
.ro-chain__timeline {
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Phase groups */
.ro-chain__group {
  margin-bottom: 8px;
}
.ro-chain__group:last-child {
  margin-bottom: 0;
}
.ro-chain__phase-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60a5fa;
  margin-bottom: 8px;
  padding-left: 72px;
}

/* Step row */
.ro-chain__step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: var(--ro-radius-sm);
  background: rgba(255,255,255,0.04);
  margin-bottom: 6px;
  transition: background 0.2s;
}
.ro-chain__step:hover {
  background: rgba(255,255,255,0.08);
}
.ro-chain__step--core {
  background: rgba(37,99,235,0.12);
  border-left: 3px solid var(--ro-primary);
}
.ro-chain__step--core:hover {
  background: rgba(37,99,235,0.18);
}

/* Number circle */
.ro-chain__num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--ro-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Body text */
.ro-chain__body {
  flex: 1;
}
.ro-chain__body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}
.ro-chain__body p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}

/* Green checkmark */
.ro-chain__check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--ro-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

/* Result card */
.ro-chain__result {
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border-radius: var(--ro-radius);
  background: rgba(249,115,22,0.1);
  border: 2px solid var(--ro-accent);
}
.ro-chain__result-icon {
  font-size: 2.5rem;
  line-height: 1;
}
.ro-chain__result-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.ro-chain__result-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ro-accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Stats row */
.ro-chain__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.ro-chain__stat {
  padding: 16px;
  border-radius: var(--ro-radius-sm);
  background: rgba(255,255,255,0.06);
}
.ro-chain__stat-num {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.ro-chain__stat-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   CONTENT HUB
   ============================================================ */
.ro-hub {
  padding: 80px 0;
  background: var(--ro-bg-light);
}
/* Introductory paragraph in hub (not the subtitle) */
.ro-hub > .ro-container > p:not(.ro-section-sub) {
  font-size: 1rem;
  color: var(--ro-text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: -32px auto 48px;
  text-align: center;
}
.ro-hub__group {
  margin-bottom: 48px;
}
.ro-hub__group:last-child { margin-bottom: 0; }
.ro-hub__group-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--ro-primary);
  line-height: 1.4;
}
.ro-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.ro-hub__card {
  background: var(--ro-bg-white);
  border-radius: var(--ro-radius);
  padding: 24px 22px;
  box-shadow: var(--ro-shadow);
  border-left: 4px solid var(--ro-border);
  transition: all 0.3s;
}
.ro-hub__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ro-shadow-hover);
}
.ro-hub__card[data-priority="highest"] { border-left-color: var(--ro-primary); }
.ro-hub__card[data-priority="high"]    { border-left-color: var(--ro-indigo); }
.ro-hub__card[data-priority="medium"]  { border-left-color: var(--ro-green); }
.ro-hub__card[data-priority="low"]     { border-left-color: var(--ro-text-light); }

.ro-hub__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ro-hub__card-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  line-height: 1;
}
.ro-hub__card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
}
.ro-hub__card-title a {
  color: var(--ro-text) !important;
}
.ro-hub__card-title a:hover {
  color: var(--ro-primary) !important;
}
.ro-hub__card-desc {
  font-size: 0.8475rem;
  color: var(--ro-text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}
.ro-hub__card-articles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--ro-border);
  padding-top: 14px;
}
.ro-hub__card-articles li a {
  font-size: 0.8475rem;
  color: var(--ro-primary) !important;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.ro-hub__card-articles li a::before {
  content: '\2192';
  flex-shrink: 0;
  font-weight: 600;
}
.ro-hub__card-articles li a:hover {
  color: var(--ro-primary-dark) !important;
}
.ro-hub__card-soon {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--ro-text-light);
  font-style: italic;
  padding-top: 6px;
}

/* ============================================================
   USP
   ============================================================ */
.ro-usp {
  padding: 80px 0;
  background: var(--ro-bg-white);
}
.ro-usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ro-usp__card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--ro-radius);
  transition: background 0.2s;
}
.ro-usp__card:hover { background: var(--ro-bg-light); }
.ro-usp__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--ro-primary-light);
  font-size: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  line-height: 1;
}
.ro-usp__card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.ro-usp__card p {
  font-size: 0.875rem;
  color: var(--ro-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.ro-faq {
  padding: 80px 0;
  background: var(--ro-bg-light);
}
/* Key takeaways block */
.ro-takeaways {
  max-width: 900px;
  margin: 0 auto 56px;
  padding: 36px 32px;
  background: var(--ro-bg-white);
  border-radius: var(--ro-radius);
  box-shadow: var(--ro-shadow);
  border-top: 4px solid var(--ro-primary);
}
.ro-takeaways__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--ro-text);
}
.ro-takeaways__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ro-takeaways__item {
  font-size: 0.9375rem;
  color: var(--ro-text-secondary);
  line-height: 1.65;
  padding: 14px 16px;
  background: var(--ro-bg-light);
  border-radius: var(--ro-radius-sm);
  border-left: 3px solid var(--ro-primary-light);
}
.ro-takeaways__item strong {
  color: var(--ro-text);
  display: block;
  margin-bottom: 4px;
}
.ro-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ro-faq__item {
  background: var(--ro-bg-white);
  border-radius: var(--ro-radius-sm);
  box-shadow: var(--ro-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.ro-faq__item:hover {
  box-shadow: var(--ro-shadow-hover);
}
.ro-faq__item[open] {
  box-shadow: var(--ro-shadow-hover);
}
.ro-faq__question {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ro-text);
  transition: color 0.2s;
  line-height: 1.45;
}
.ro-faq__question::-webkit-details-marker { display: none; }
.ro-faq__question::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 300;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ro-bg-light);
  color: var(--ro-primary);
  transition: all 0.2s;
}
.ro-faq__item[open] .ro-faq__question::after {
  content: '\2212';
  background: var(--ro-primary);
  color: #fff;
}
.ro-faq__question:hover {
  color: var(--ro-primary);
}
.ro-faq__answer {
  padding: 0 24px 20px;
}
.ro-faq__answer p {
  font-size: 0.9375rem;
  color: var(--ro-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   CTA + ACTION BLOCK
   ============================================================ */
.ro-cta {
  padding: 80px 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0),
    linear-gradient(135deg, var(--ro-dark) 0%, var(--ro-dark-light) 100%);
  background-size: 32px 32px, 100% 100%;
  color: #fff;
}
.ro-cta__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ro-cta__text {
  text-align: left;
}
.ro-cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.ro-cta__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.ro-cta__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ro-cta__benefits li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.ro-cta__benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--ro-green);
  font-weight: 700;
}

/* Action card (replaces form card — form is in footer via WP theme) */
.ro-cta__action {
  background: var(--ro-bg-white);
  border-radius: var(--ro-radius);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  color: var(--ro-text);
  text-align: left;
}
.ro-cta__action-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: var(--ro-text);
}
.ro-cta__action-desc {
  font-size: 0.9375rem;
  color: var(--ro-text-secondary);
  line-height: 1.7;
  text-align: center;
}

/* Legacy form styles (for footer form compatibility) */
.ro-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: var(--ro-text);
}
.ro-form__group {
  margin-bottom: 16px;
}
.ro-form__group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ro-text);
  margin-bottom: 6px;
}
.ro-form__group input,
.ro-form__group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ro-border);
  border-radius: var(--ro-radius-sm);
  font-family: var(--ro-font);
  font-size: 1rem;
  color: var(--ro-text);
  background: var(--ro-bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.ro-form__group input:focus,
.ro-form__group select:focus {
  outline: none;
  border-color: var(--ro-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.ro-form__group input::placeholder {
  color: var(--ro-text-light);
}
.ro-form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%2364748b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ro-form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}
.ro-form__note {
  font-size: 0.8125rem;
  color: var(--ro-text-light);
  text-align: center;
  margin-top: 12px;
}
.ro-form__success {
  text-align: center;
  padding: 24px 0;
}
.ro-form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  color: var(--ro-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.ro-form__success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ro-text);
}
.ro-form__success p {
  font-size: 0.9375rem;
  color: var(--ro-text-secondary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ro-hero { padding: 72px 0 88px; }
  .ro-hero__title { font-size: 2.5rem; }
  .ro-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .ro-criteria__grid { grid-template-columns: repeat(2, 1fr); }
  .ro-services__grid { grid-template-columns: repeat(2, 1fr); }
  .ro-process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ro-process__grid::before { display: none; }
  .ro-process__num { box-shadow: 0 4px 12px rgba(37,99,235,0.2); }
  .ro-usp__grid { grid-template-columns: repeat(2, 1fr); }
  .ro-cta__wrap { grid-template-columns: 1fr; gap: 32px; }
  .ro-cta__text { text-align: center; }
  .ro-cta__action { max-width: 480px; margin: 0 auto; }
  .ro-audience__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ro-hero { padding: 56px 0 72px; }
  .ro-hero__title { font-size: 1.875rem; }
  .ro-hero__sub { font-size: 1.0625rem; }
  .ro-hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .ro-hero__ctas .ro-btn {
    width: 100%;
    max-width: 320px;
  }
  .ro-section-title { font-size: 1.5rem; }
  .ro-section-sub { font-size: 1rem; margin-bottom: 36px; }
  .ro-trust { transform: translateY(-32px); margin-bottom: -16px; }
  .ro-trust__grid { gap: 12px; }
  .ro-trust__item { padding: 20px 14px; }
  .ro-trust__number { font-size: 1.375rem; }
  .ro-trust__label { font-size: 0.75rem; }
  .ro-criteria__grid,
  .ro-services__grid,
  .ro-process__grid,
  .ro-usp__grid { grid-template-columns: 1fr; }
  .ro-criteria,
  .ro-services, .ro-process, .ro-hub,
  .ro-usp, .ro-cta, .ro-audience, .ro-pains, .ro-faq { padding: 56px 0; }
  .ro-cta__title { font-size: 1.5rem; }
  .ro-cta__action { padding: 24px 20px; }
  .ro-hub__grid { grid-template-columns: 1fr; }
  .ro-cta__benefits li { font-size: 0.875rem; }
  .ro-hub__card-desc { font-size: 0.875rem; }
  .ro-hub__card-articles li a { font-size: 0.875rem; }
  .ro-pains__pain p,
  .ro-pains__solution p { font-size: 0.875rem; }
  .ro-pains__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
  .ro-pains__arrow {
    transform: rotate(90deg);
    text-align: center;
  }
  .ro-audience__grid { grid-template-columns: 1fr; }
  .ro-chain { padding: 56px 0; }
  .ro-chain__phase-label { padding-left: 0; }
  .ro-chain__step { padding: 12px 14px; gap: 12px; }
  .ro-chain__body h3 { font-size: 0.9375rem; }
  .ro-chain__result { flex-direction: column; text-align: center; padding: 20px; gap: 12px; }
  .ro-chain__result-value { font-size: 1.25rem; }
  .ro-chain__stats { grid-template-columns: 1fr; gap: 12px; }
  .ro-faq__question { font-size: 0.9375rem; padding: 16px 20px; }
  .ro-faq__answer { padding: 0 20px 16px; }
  .ro-faq__answer p { font-size: 0.875rem; }
  .ro-takeaways { padding: 24px 20px; }
  .ro-takeaways__grid { grid-template-columns: 1fr; }
  .ro-takeaways__item { font-size: 0.875rem; }
}

@media (max-width: 480px) {
  .ro-hero { padding: 44px 0 56px; }
  .ro-hero__title { font-size: 1.625rem; }
  .ro-hero .ro-container { padding: 0 16px; }
  .ro-trust__grid { gap: 8px; }
  .ro-trust__item { padding: 16px 10px; }
  .ro-trust__number { font-size: 1.25rem; }
  .ro-trust__label { font-size: 0.8125rem; }
  .ro-section-title { font-size: 1.375rem; }
  .ro-cta__action { padding: 20px 16px; border-radius: 12px; }
  .ro-faq__question { padding: 14px 16px; font-size: 0.875rem; }
  .ro-faq__answer { padding: 0 16px 14px; }
}

html { scroll-behavior: smooth; }
