/* ==========================================================================
   Reddactor Landing Page Styles
   TAREA Brand Compliant | Mobile-First | BEM Naming
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --rdct-primary: #FEBA12;
  --rdct-primary-dark: #E5A810;
  --rdct-secondary: #595A5C;
  --rdct-success: #4CAF50;
  --rdct-info: #1565C0;
  --rdct-dark: #1A1A2E;
  --rdct-light: #FFFFFF;
  --rdct-text: #333333;
  --rdct-text-muted: #666666;
  --rdct-text-light: #999999;
  --rdct-border: #E0E0E0;
  --rdct-bg-light: #F8F9FA;

  /* Typography */
  --rdct-font-family: 'Ubuntu', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --rdct-font-size-base: 16px;
  --rdct-line-height: 1.6;

  /* Spacing */
  --rdct-space-xs: 4px;
  --rdct-space-sm: 8px;
  --rdct-space-md: 16px;
  --rdct-space-lg: 32px;
  --rdct-space-xl: 64px;
  --rdct-space-xxl: 120px;

  /* Container */
  --rdct-container-max: 1200px;
  --rdct-container-padding: 20px;

  /* Shadows */
  --rdct-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --rdct-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --rdct-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* Borders */
  --rdct-radius-sm: 4px;
  --rdct-radius-md: 8px;
  --rdct-radius-lg: 16px;
  --rdct-radius-full: 9999px;

  /* Transitions */
  --rdct-transition-fast: 150ms ease;
  --rdct-transition-base: 300ms ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--rdct-font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--rdct-font-family);
  font-size: 1rem;
  line-height: var(--rdct-line-height);
  color: var(--rdct-text);
  background-color: var(--rdct-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rdct-primary);
  text-decoration: none;
  transition: color var(--rdct-transition-fast);
}

a:hover {
  color: var(--rdct-primary-dark);
}

/* --------------------------------------------------------------------------
   3. Utility Classes
   -------------------------------------------------------------------------- */
.rdct-container {
  width: 100%;
  max-width: var(--rdct-container-max);
  margin: 0 auto;
  padding: 0 var(--rdct-container-padding);
}

.rdct-text-highlight {
  background-color: var(--rdct-primary);
  color: var(--rdct-dark);
  padding: 2px 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border: none;
  outline: none;
  box-shadow: none;
}


/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.rdct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rdct-space-sm);
  padding: 12px 24px;
  font-family: var(--rdct-font-family);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--rdct-radius-md);
  cursor: pointer;
  transition: all var(--rdct-transition-fast);
  white-space: nowrap;
}

.rdct-btn--primary {
  background-color: var(--rdct-primary);
  color: var(--rdct-dark);
  border-color: var(--rdct-primary);
}

.rdct-btn--primary:hover {
  background-color: var(--rdct-primary-dark);
  border-color: var(--rdct-primary-dark);
  color: var(--rdct-dark);
}

.rdct-btn--ghost {
  background-color: transparent;
  color: var(--rdct-light);
  border-color: var(--rdct-light);
}

.rdct-btn--ghost:hover {
  background-color: var(--rdct-light);
  color: var(--rdct-dark);
}

.rdct-btn--lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.rdct-btn--full {
  width: 100%;
}

.rdct-btn--secondary {
  background-color: transparent;
  color: var(--rdct-dark);
  border-color: var(--rdct-dark);
}

.rdct-btn--secondary:hover {
  background-color: var(--rdct-dark);
  color: var(--rdct-light);
  border-color: var(--rdct-dark);
}

.rdct-btn--white {
  background-color: var(--rdct-light);
  color: var(--rdct-dark);
  border-color: transparent;
}

.rdct-btn--white:hover {
  background-color: var(--rdct-dark);
  color: var(--rdct-light);
  border-color: var(--rdct-dark);
}

/* --------------------------------------------------------------------------
   5. Badge
   -------------------------------------------------------------------------- */
.rdct-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rdct-primary);
  background-color: rgba(254, 186, 18, 0.15);
  border-radius: var(--rdct-radius-full);
  margin-bottom: var(--rdct-space-md);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.rdct-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--rdct-transition-base);
}

.rdct-header.is-scrolled {
  background-color: var(--rdct-dark);
  box-shadow: var(--rdct-shadow-md);
}

.rdct-header>.rdct-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.rdct-logo img {
  height: 36px;
  width: auto;
}

.rdct-nav {
  display: none;
  gap: var(--rdct-space-lg);
}

.rdct-nav a {
  color: var(--rdct-light);
  font-weight: 500;
  opacity: 0.9;
}

.rdct-nav a:hover {
  opacity: 1;
  color: var(--rdct-primary);
}

.rdct-header__cta {
  display: none;
}

.rdct-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.rdct-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--rdct-light);
  transition: all var(--rdct-transition-fast);
}

.rdct-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.rdct-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.rdct-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.rdct-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--rdct-dark);
  padding: var(--rdct-space-lg);
  gap: var(--rdct-space-md);
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.rdct-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 var(--rdct-space-xl);
  background-color: var(--rdct-dark);
  overflow: hidden;
}

.rdct-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: right center;
  opacity: 1;
}

.rdct-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(26, 26, 46, 0.8) 0%,
      rgba(26, 26, 46, 0.7) 40%,
      rgba(26, 26, 46, 0.15) 70%,
      transparent 100%);
}

.rdct-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: var(--rdct-light);
}

.rdct-hero__headline {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--rdct-space-md);
}

.rdct-hero__subheadline {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--rdct-space-lg);
  line-height: 1.7;
}

.rdct-hero__subheadline-secondary {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: var(--rdct-space-lg);
  line-height: 1.8;
  max-width: 650px;
}

.rdct-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--rdct-space-md);
}

/* --------------------------------------------------------------------------
   8. Section Base
   -------------------------------------------------------------------------- */
.rdct-section {
  padding: var(--rdct-space-xl) 0;
}

.rdct-section__title {
  font-family: 'Bricolage Grotesque', var(--rdct-font-family);
  font-size: 1.75rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: var(--rdct-space-xl);
  color: var(--rdct-ds-dark, #1A1A1A);
  position: relative;
  display: inline-block;
}

.rdct-section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-section__title--left {
  text-align: left;
}

/* Light title variant for dark backgrounds */
.rdct-section__title--light {
  color: var(--rdct-light, #FFFFFF);
}

.rdct-section__title--light::after {
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

/* Centered title variant (for special cases) */
.rdct-section__title--center {
  text-align: center;
  display: block;
}

.rdct-section__title--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.rdct-section__subtitle {
  font-family: 'Work Sans', var(--rdct-font-family);
  text-align: left;
  max-width: 700px;
  margin: 0 0 var(--rdct-space-lg) 0;
  color: var(--rdct-ds-mid-gray, #888888);
  line-height: 1.7;
}

.rdct-section__subtitle--wide {
  max-width: 100%;
}

.rdct-section__intro {
  font-family: 'Work Sans', var(--rdct-font-family);
  text-align: left;
  max-width: 800px;
  margin: 0 0 var(--rdct-space-xl) 0;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--rdct-ds-mid-gray, #888888);
}

/* --------------------------------------------------------------------------
   9. Problem Section
   -------------------------------------------------------------------------- */
.rdct-problem {
  position: relative;
  background-image: url('../images/problem-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.rdct-problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.rdct-the-problem__image img {
  transform: scaleX(-1);
}

.rdct-problem .rdct-container {
  position: relative;
  z-index: 2;
}

.rdct-problem__risk-box {
  background-color: var(--rdct-primary);
  color: var(--rdct-dark);
  padding: var(--rdct-space-lg);
  margin-top: var(--rdct-space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--rdct-radius-md);
}

.rdct-problem__risk-box p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}

.rdct-problem__risk-box strong {
  display: block;
  margin-bottom: var(--rdct-space-sm);
  font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   9.5 The Problem Section (Detailed)
   -------------------------------------------------------------------------- */
.rdct-the-problem {
  background-color: var(--rdct-light);
}

.rdct-the-problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: var(--rdct-space-lg);
}

.rdct-the-problem__image {
  position: relative;
  width: 56%;
  margin-left: 0;
  margin-right: auto;
}

.rdct-img-premium {
  width: 100%;
  height: auto;
  display: block;
}

.rdct-problem__content {
  padding: var(--rdct-space-lg) 0;
}

.rdct-problem__content-inner {
  max-width: 100%;
}

.rdct-the-problem__list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--rdct-space-lg);
}

.rdct-the-problem__list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--rdct-space-md);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--rdct-text);
}

.rdct-the-problem__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rdct-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.rdct-the-problem__summary {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--rdct-text-muted);
  border-top: 1px solid var(--rdct-border);
  padding-top: var(--rdct-space-lg);
}

@media (min-width: 768px) {
  .rdct-the-problem__grid {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: var(--rdct-space-xl);
    align-items: center;
  }

  .rdct-the-problem__image {
    width: 100%;
    max-width: 330px;
    margin: 0;
  }

  .rdct-the-problem .rdct-problem__content {
    padding: 0;
  }
}



.rdct-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rdct-space-md);
  margin-bottom: var(--rdct-space-lg);
}

.rdct-stat-card {
  background-color: var(--rdct-light);
  padding: var(--rdct-space-lg);
  border-radius: var(--rdct-radius-md);
  text-align: center;
  box-shadow: var(--rdct-shadow-sm);
}

.rdct-stat-card__value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rdct-primary);
  line-height: 1;
  margin-bottom: var(--rdct-space-sm);
}

.rdct-stat-card__label {
  display: block;
  font-size: 0.875rem;
  color: var(--rdct-text-muted);
}

.rdct-problem__content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--rdct-text);
  margin-bottom: var(--rdct-space-lg);
}

.rdct-problem__content p:last-child {
  margin-bottom: 0;
}

.rdct-problem__quote {
  font-size: 1.125rem;
  font-style: italic;
  text-align: center;
  color: var(--rdct-text-muted);
  padding: var(--rdct-space-md);
  border-left: 4px solid var(--rdct-primary);
  background-color: var(--rdct-light);
  border-radius: 0 var(--rdct-radius-md) var(--rdct-radius-md) 0;
}

/* --------------------------------------------------------------------------
   10. Solution Section
   -------------------------------------------------------------------------- */
.rdct-solution {
  background-color: #3c3d3e;
}

.rdct-solution .rdct-section__title {
  color: var(--rdct-light);
}

.rdct-solution .rdct-section__title::after {
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-solution .rdct-section__subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.rdct-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rdct-space-md);
}

.rdct-feature-card {
  background-color: var(--rdct-light);
  padding: var(--rdct-space-lg);
  border-radius: var(--rdct-radius-md);
  box-shadow: var(--rdct-shadow-sm);
  text-align: center;
  transition: transform var(--rdct-transition-base), box-shadow var(--rdct-transition-base);
}

.rdct-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rdct-shadow-md);
}

.rdct-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--rdct-primary);
  border-radius: var(--rdct-radius-lg);
  color: #3c3d3e;
  margin-bottom: var(--rdct-space-md);
}

.rdct-feature-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--rdct-space-sm);
  color: var(--rdct-text);
}

.rdct-feature-card__desc {
  font-size: 0.9375rem;
  color: var(--rdct-text-muted);
  margin-bottom: var(--rdct-space-md);
}

.rdct-feature-card__benefits {
  list-style: none;
  text-align: left;
  margin-top: var(--rdct-space-md);
}

.rdct-feature-card__benefits li {
  position: relative;
  padding-left: 24px;
  margin-bottom: var(--rdct-space-sm);
  font-size: 0.875rem;
  color: var(--rdct-text);
  line-height: 1.6;
}

.rdct-feature-card__benefits li:last-child {
  margin-bottom: 0;
}

.rdct-feature-card__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rdct-primary);
  font-weight: 700;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   11. Process Section
   -------------------------------------------------------------------------- */
.rdct-process {
  background-color: #3c3d3e;
  color: var(--rdct-light);
}

.rdct-process .rdct-section__title {
  color: var(--rdct-light);
}

.rdct-process .rdct-section__intro {
  color: rgba(255, 255, 255, 0.85);
}

.rdct-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rdct-space-md);
}

.rdct-step {
  text-align: center;
  padding: var(--rdct-space-lg);
  position: relative;
}

.rdct-step__icon {
  color: var(--rdct-primary);
  margin-bottom: var(--rdct-space-md);
}

.rdct-step__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--rdct-space-sm);
}

.rdct-step__desc {
  font-size: 0.9375rem;
  opacity: 0.8;
  max-width: 250px;
}

.rdct-steps__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rdct-primary);
  opacity: 0.6;
}

.rdct-steps__arrow {
  width: 32px;
  height: 32px;
  transform: rotate(90deg);
  /* Points down on mobile */
}

/* --------------------------------------------------------------------------
   14. Social Proof Section
   -------------------------------------------------------------------------- */
.rdct-social-proof {
  background-color: var(--rdct-bg-light);
}

.rdct-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--rdct-space-xl);
  margin-bottom: var(--rdct-space-xl);
}

.rdct-social-proof__logo {
  display: block;
  max-width: 160px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--rdct-transition-base);
}

.rdct-social-proof__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.rdct-testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.rdct-testimonial__quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--rdct-text);
  margin-bottom: var(--rdct-space-md);
  position: relative;
  padding: var(--rdct-space-lg);
}

.rdct-testimonial__quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 4rem;
  color: var(--rdct-primary);
  opacity: 0.3;
  line-height: 1;
}

.rdct-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: var(--rdct-space-xs);
}

.rdct-testimonial__name {
  font-weight: 600;
  color: var(--rdct-text);
}

.rdct-testimonial__role {
  font-size: 0.875rem;
  color: var(--rdct-text-muted);
}

/* --------------------------------------------------------------------------
   15. CTA Inline Components
   -------------------------------------------------------------------------- */
.rdct-cta-inline {
  padding: var(--rdct-space-xl) 0;
  background-color: var(--rdct-bg-light);
}

.rdct-cta-inline--dark {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4A 100%);
}

.rdct-cta-inline--primary {
  background-color: var(--rdct-primary);
}

.rdct-cta-inline--primary .rdct-cta-inline__title,
.rdct-cta-inline--primary .rdct-cta-inline__text {
  color: var(--rdct-dark);
}

.rdct-cta-inline__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.rdct-cta-inline__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--rdct-space-md);
  color: var(--rdct-text);
}

.rdct-cta-inline--dark .rdct-cta-inline__title {
  color: var(--rdct-light);
}

.rdct-cta-inline__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--rdct-text-muted);
  margin-bottom: var(--rdct-space-lg);
}

.rdct-cta-inline--dark .rdct-cta-inline__text {
  color: rgba(255, 255, 255, 0.85);
}

.rdct-cta-inline__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--rdct-space-md);
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   16. Demo Section
   -------------------------------------------------------------------------- */
.rdct-demo {
  position: relative;
  background: linear-gradient(135deg, var(--rdct-dark) 0%, #2D2D4A 100%);
  color: var(--rdct-light);
  overflow: hidden;
}

.rdct-demo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/cta-documents.png');
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 85%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.rdct-demo .rdct-container {
  position: relative;
  z-index: 2;
}


.rdct-demo .rdct-section__title {
  color: var(--rdct-light);
}

.rdct-demo .rdct-section__title::after {
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-demo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rdct-space-xl);
}

.rdct-demo__info p {
  opacity: 0.9;
  margin-bottom: var(--rdct-space-lg);
}

.rdct-demo__contact {
  display: flex;
  flex-direction: column;
  gap: var(--rdct-space-md);
}

.rdct-contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--rdct-space-sm);
  color: var(--rdct-light);
  font-weight: 500;
}

.rdct-contact-link:hover {
  color: var(--rdct-primary);
}

.rdct-contact-link--whatsapp {
  color: #25D366;
}

.rdct-contact-link--whatsapp:hover {
  color: #128C7E;
}

/* Form */
.rdct-form {
  background-color: var(--rdct-light);
  padding: var(--rdct-space-lg);
  border-radius: var(--rdct-radius-lg);
  color: var(--rdct-text);
}

.rdct-form__group {
  margin-bottom: var(--rdct-space-md);
}

.rdct-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--rdct-space-xs);
  color: var(--rdct-text);
}

.rdct-form__input,
.rdct-form__select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--rdct-font-family);
  font-size: 1rem;
  border: 2px solid var(--rdct-border);
  border-radius: var(--rdct-radius-md);
  background-color: var(--rdct-light);
  color: var(--rdct-text);
  transition: border-color var(--rdct-transition-fast);
}

.rdct-form__input:focus,
.rdct-form__select:focus {
  outline: none;
  border-color: var(--rdct-primary);
}

.rdct-form__input.is-invalid {
  border-color: #DC3545;
}

.rdct-form__error {
  display: block;
  font-size: 0.75rem;
  color: #DC3545;
  margin-top: var(--rdct-space-xs);
  min-height: 1rem;
}

.rdct-form__select {
  appearance: none;
  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 fill='%23595A5C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.rdct-form__privacy {
  font-size: 0.75rem;
  color: var(--rdct-text-muted);
  text-align: center;
  margin-top: var(--rdct-space-md);
}

.rdct-form__privacy a {
  color: var(--rdct-primary);
}

/* Form Success */
.rdct-form-success {
  text-align: center;
  padding: var(--rdct-space-xl);
}

.rdct-form-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--rdct-success);
  color: var(--rdct-light);
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: var(--rdct-space-md);
}

.rdct-form-success h3 {
  font-size: 1.5rem;
  color: var(--rdct-light);
  margin-bottom: var(--rdct-space-sm);
}

.rdct-form-success p {
  color: var(--rdct-light);
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   15. FAQ Section
   -------------------------------------------------------------------------- */
.rdct-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.rdct-accordion__item {
  border-bottom: 1px solid var(--rdct-border);
}

.rdct-accordion__item:last-child {
  border-bottom: none;
}

.rdct-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rdct-space-md);
  padding: var(--rdct-space-md) 0;
  font-family: var(--rdct-font-family);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--rdct-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--rdct-transition-fast);
}

.rdct-accordion__trigger:hover {
  color: var(--rdct-primary);
}

.rdct-accordion__trigger[aria-expanded="true"] {
  color: var(--rdct-primary);
}

.rdct-accordion__icon {
  flex-shrink: 0;
  transition: transform var(--rdct-transition-base);
}

.rdct-accordion__trigger[aria-expanded="true"] .rdct-accordion__icon {
  transform: rotate(180deg);
}

.rdct-accordion__content {
  padding-bottom: var(--rdct-space-md);
}

.rdct-accordion__content p {
  color: var(--rdct-text-muted);
  line-height: 1.7;
}

.rdct-accordion__content ul {
  list-style: disc;
  margin: var(--rdct-space-md) 0 var(--rdct-space-md) 1.5rem;
  padding-left: 0;
}

.rdct-accordion__content li {
  color: var(--rdct-text-muted);
  margin-bottom: var(--rdct-space-xs);
  line-height: 1.7;
  padding-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.rdct-footer {
  background-color: var(--rdct-dark);
  color: var(--rdct-light);
  padding: var(--rdct-space-xl) 0 var(--rdct-space-lg);
}

.rdct-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rdct-space-xl);
  margin-bottom: var(--rdct-space-xl);
}

.rdct-footer__brand img {
  margin-bottom: var(--rdct-space-md);
}

.rdct-footer__brand p {
  font-size: 0.875rem;
  opacity: 0.8;
  max-width: 300px;
}

.rdct-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rdct-space-lg);
}

.rdct-footer__col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--rdct-space-md);
  color: var(--rdct-light);
}

.rdct-footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--rdct-light);
  opacity: 0.7;
  margin-bottom: var(--rdct-space-sm);
  transition: opacity var(--rdct-transition-fast);
}

.rdct-footer__col a:hover {
  opacity: 1;
  color: var(--rdct-primary);
}

.rdct-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rdct-space-md);
  padding-top: var(--rdct-space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rdct-footer__bottom p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.rdct-footer__social {
  display: flex;
  gap: var(--rdct-space-md);
}

.rdct-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--rdct-radius-md);
  color: var(--rdct-light);
  transition: all var(--rdct-transition-fast);
}

.rdct-footer__social a:hover {
  background-color: var(--rdct-primary);
  color: var(--rdct-dark);
}

/* --------------------------------------------------------------------------
   17. Responsive: Tablet (768px+)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .rdct-nav {
    display: flex;
  }

  .rdct-header__cta {
    display: inline-flex;
  }

  .rdct-nav-toggle {
    display: none;
  }

  .rdct-hero__headline {
    font-size: 3rem;
  }

  .rdct-hero__ctas {
    flex-direction: row;
  }

  .rdct-section {
    padding: var(--rdct-space-xxl) 0;
  }

  .rdct-section__title {
    font-size: 2.25rem;
  }

  .rdct-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .rdct-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .rdct-steps {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .rdct-steps__connector {
    margin: 0 var(--rdct-space-md);
  }

  .rdct-steps__arrow {
    transform: rotate(0deg);
    /* Points right on desktop */
  }

  .rdct-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .rdct-demo__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .rdct-demo__info {
    order: 2;
  }

  .rdct-form {
    order: 1;
  }

  .rdct-footer__grid {
    grid-template-columns: 2fr 3fr;
  }

  .rdct-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .rdct-roi-calculation {
    grid-template-columns: repeat(3, 1fr);
  }

  .rdct-onpremise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rdct-cta-inline__buttons {
    flex-direction: row;
  }

  .rdct-cta-inline__title {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   18. Responsive: Desktop (1024px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .rdct-hero {
    min-height: 90vh;
  }

  .rdct-hero__bg {
    opacity: 1;
  }

  .rdct-hero__overlay {
    background: linear-gradient(90deg,
        rgba(26, 26, 46, 0.8) 0%,
        rgba(26, 26, 46, 0.7) 40%,
        rgba(26, 26, 46, 0.15) 70%,
        transparent 100%);
  }

  .rdct-hero__headline {
    font-size: 3.5rem;
  }

  .rdct-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .rdct-form {
    padding: var(--rdct-space-xl);
  }

  .rdct-onpremise-card__title {
    font-size: 1.75rem;
  }

  .rdct-roi-value {
    font-size: 3rem;
  }
}

/* --------------------------------------------------------------------------
   19. Accessibility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--rdct-primary);
  outline-offset: 2px;
}

/* Skip link */
.rdct-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--rdct-primary);
  color: var(--rdct-dark);
  padding: var(--rdct-space-md);
  z-index: 9999;
}

.rdct-skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   20. Print Styles
   -------------------------------------------------------------------------- */
@media print {

  .rdct-header,
  .rdct-nav-toggle,
  .rdct-hero__bg,
  .rdct-hero__overlay,
  .rdct-form,
  .rdct-footer__social {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .rdct-hero {
    min-height: auto;
    background: #fff;
    color: #000;
  }

  .rdct-section {
    padding: 20px 0;
  }
}

/* --------------------------------------------------------------------------
   XX. Global V2 Section Pattern (Continuity Base)
   -------------------------------------------------------------------------- */
.rdct-section-v2__title {
  font-family: 'Bricolage Grotesque', var(--rdct-font-family);
  font-weight: 700;
  color: var(--rdct-ds-dark, #1A1A1A);
  text-align: left;
  position: relative;
  display: inline-block;
}

.rdct-section-v2__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-section-v2__intro {
  font-family: 'Work Sans', var(--rdct-font-family);
  text-align: left;
  max-width: 100%;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--rdct-ds-mid-gray, #888888);
}


/* --------------------------------------------------------------------------
   21. Process Section V2 (Card-Based Design System - Infographic Match)
   -------------------------------------------------------------------------- */

/* Process V2 Section */
.rdct-process-v2 {
  background-color: #EFEFEF;
  padding: var(--rdct-space-xl) 0;
}

.rdct-process-v2__title {
  font-family: 'Bricolage Grotesque', var(--rdct-font-family);
  font-weight: 700;
  color: var(--rdct-ds-dark, #1A1A1A);
  text-align: left;
  position: relative;
  display: inline-block;
  font-size: 1.75rem;
  margin-bottom: var(--rdct-space-xl);
}

.rdct-process-v2__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-process-v2__intro {
  font-family: 'Work Sans', var(--rdct-font-family);
  text-align: left;
  max-width: 100%;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--rdct-ds-mid-gray, #888888);
  margin: 0 0 var(--rdct-space-lg) 0;
}



/* Process Cards Container */
.rdct-process-v2__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rdct-space-lg);
  margin-top: var(--rdct-space-lg);
  margin-bottom: 0;
}

/* Individual Process Card */
.rdct-process-card {
  background-color: var(--rdct-ds-white, #FFFFFF);
  position: relative;
  width: 100%;
  max-width: 380px;
}

.rdct-process-card__accent {
  height: 6px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-process-card__content {
  padding: var(--rdct-space-lg) var(--rdct-space-lg) var(--rdct-space-xl);
  padding-top: calc(var(--rdct-space-lg) + 20px);
  text-align: left;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.rdct-process-card__number {
  font-family: 'Outfit', var(--rdct-font-family);
  font-weight: 700;
  font-size: 3rem;
  color: var(--rdct-ds-white, #FFFFFF);
  line-height: 1;
  width: 56px;
  height: 56px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  /* Offset number downward for cutout effect */
  position: absolute;
  top: 20px;
  left: 20px;
  overflow: hidden;
}

.rdct-process-card__icon {
  margin: var(--rdct-space-md) 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdct-process-card__icon svg {
  max-width: 100px;
  max-height: 120px;
}

.rdct-process-card__title {
  font-family: 'Bricolage Grotesque', var(--rdct-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rdct-ds-dark, #1A1A1A);
  margin-bottom: var(--rdct-space-sm);
  line-height: 1.2;
}

.rdct-process-card__desc {
  font-family: 'Work Sans', var(--rdct-font-family);
  font-size: 0.9375rem;
  color: var(--rdct-ds-mid-gray, #888888);
  line-height: 1.6;
  flex-grow: 1;
}

.rdct-process-card__label {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--rdct-ds-gray, #595A5C);
  margin-top: var(--rdct-space-md);
  position: relative;
  padding-bottom: 6px;
}

.rdct-process-card__label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

/* Arrows between cards */
.rdct-process-v2__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  opacity: 0.5;
}

/* Stats Footer */
.rdct-process-v2__stats {
  background-color: var(--rdct-ds-dark, #1A1A1A);
  padding: var(--rdct-space-xl) var(--rdct-space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rdct-space-lg);
}

.rdct-process-v2__stats-left {
  display: flex;
  flex-direction: column;
  gap: var(--rdct-space-lg);
  width: 100%;
}

.rdct-process-v2__stat {
  text-align: left;
}

.rdct-process-v2__stat-value {
  display: block;
  font-family: 'Outfit', var(--rdct-font-family);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--rdct-ds-yellow, #FEBA12);
  line-height: 1;
}

.rdct-process-v2__stat-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--rdct-ds-mid-gray, #888888);
  margin-top: var(--rdct-space-xs);
}

.rdct-process-v2__cta-link {
  font-family: 'Bricolage Grotesque', var(--rdct-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rdct-ds-yellow, #FEBA12);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.rdct-process-v2__cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-process-v2__cta-link:hover {
  color: #E5A810;
}

.rdct-process-v2__cta-link:hover::after {
  background-color: #E5A810;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .rdct-process-v2 {
    padding: var(--rdct-space-xxl) 0;
  }

  .rdct-process-v2__title {
    font-size: 2rem;
  }

  .rdct-process-v2__cards {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
  }

  .rdct-process-card {
    flex: 1;
    max-width: 340px;
  }

  .rdct-process-card__content {
    min-height: 400px;
  }

  .rdct-process-v2__arrow {
    transform: rotate(0deg);
    margin: 0;
    align-self: center;
    padding: 0 var(--rdct-space-sm);
  }

  .rdct-process-v2__stats {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--rdct-space-xl);
  }

  .rdct-process-v2__stats-left {
    flex-direction: row;
    gap: var(--rdct-space-xl);
    width: auto;
  }

  .rdct-process-v2__stat-value {
    font-size: 2.75rem;
  }

  .rdct-process-v2__cta-link {
    font-size: 1.75rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .rdct-process-v2__title {
    font-size: 2.25rem;
  }

  .rdct-process-card {
    max-width: 380px;
  }

  .rdct-process-card__number {
    width: 64px;
    height: 64px;
    font-size: 3.5rem;
    padding-top: 36px;
    top: 20px;
    left: 20px;
  }

  .rdct-process-card__content {
    padding: var(--rdct-space-xl);
    min-height: 420px;
  }

  .rdct-process-card__icon {
    height: 140px;
  }

  .rdct-process-card__icon svg {
    max-width: 120px;
    max-height: 140px;
  }

  .rdct-process-card__title {
    font-size: 1.75rem;
  }

  .rdct-process-v2__stats {
    padding: var(--rdct-space-xl) var(--rdct-space-xxl);
  }

  .rdct-process-v2__stats-left {
    gap: var(--rdct-space-xxl);
  }

  .rdct-process-v2__stat-value {
    font-size: 3rem;
  }

  .rdct-process-v2__cta-link {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   22. Benefits Section V2 (Dark Continuity Variation)
   -------------------------------------------------------------------------- */
.rdct-benefits-v2 {
  position: relative;
  background-image: url('../images/problem-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--rdct-space-xl) 0;
  color: var(--rdct-light);
  overflow: hidden;
}

.rdct-benefits-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 26, 0.85);
  /* Deep Charcoal Overlay */
  z-index: 1;
}

.rdct-benefits-v2 .rdct-container {
  position: relative;
  z-index: 2;
}


.rdct-benefits-v2__title {
  font-family: 'Bricolage Grotesque', var(--rdct-font-family);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--rdct-light);
  text-align: left;
  margin-bottom: var(--rdct-space-xl);
  position: relative;
  display: inline-block;
}

.rdct-benefits-v2__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-benefits-v2__intro {
  font-family: 'Work Sans', var(--rdct-font-family);
  text-align: left;
  max-width: 100%;
  margin: 0 0 var(--rdct-space-lg) 0;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

/* Metrics Grid - Matching Process V2 geometry */
.rdct-benefits-v2__metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rdct-space-lg);
  margin-top: var(--rdct-space-lg);
  margin-bottom: var(--rdct-space-xl);
}

/* Metric Card - Matching Process Card geometry */
.rdct-metric-card-v2 {
  background-color: #262626;
  /* Darker Card */
  position: relative;
  width: 100%;
  max-width: 380px;
}

.rdct-metric-card-v2__accent {
  height: 6px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

.rdct-metric-card-v2__content {
  padding: var(--rdct-space-lg) var(--rdct-space-lg) var(--rdct-space-xl);
  text-align: left;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.rdct-metric-card-v2__value {
  font-family: 'Outfit', var(--rdct-font-family);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--rdct-ds-yellow, #FEBA12);
  line-height: 1;
  margin-bottom: var(--rdct-space-md);
}

.rdct-metric-card-v2__label {
  font-family: 'Bricolage Grotesque', var(--rdct-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rdct-light);
  margin-bottom: var(--rdct-space-sm);
  line-height: 1.2;
}

.rdct-metric-card-v2__desc {
  font-family: 'Work Sans', var(--rdct-font-family);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  flex-grow: 1;
}

.rdct-metric-card-v2__note {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--rdct-space-md);
  position: relative;
  padding-bottom: 6px;
  width: fit-content;
}

.rdct-metric-card-v2__note::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--rdct-ds-yellow, #FEBA12);
}

/* ROI Block - Matching Section 5 Stats Footer Pattern */
.rdct-benefits-v2__roi {
  background-color: var(--rdct-ds-yellow, #FEBA12);
  padding: var(--rdct-space-xl) var(--rdct-space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rdct-space-lg);
  margin-top: var(--rdct-space-xl);
}

.rdct-benefits-v2__roi-info {
  width: 100%;
}

.rdct-benefits-v2__roi-title {
  font-family: 'Bricolage Grotesque', var(--rdct-font-family);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--rdct-ds-dark, #1A1A1A);
  margin-bottom: 4px;
}

.rdct-benefits-v2__roi-text {
  font-family: 'Work Sans', var(--rdct-font-family);
  font-size: 0.9375rem;
  color: rgba(26, 26, 46, 0.7);
}

.rdct-benefits-v2__roi-grid {
  display: flex;
  flex-direction: column;
  gap: var(--rdct-space-lg);
  width: 100%;
}

.rdct-benefits-v2__roi-item {
  text-align: left;
}

.rdct-benefits-v2__roi-value {
  display: block;
  font-family: 'Outfit', var(--rdct-font-family);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--rdct-ds-dark, #1A1A1A);
  line-height: 1;
}

.rdct-benefits-v2__roi-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(26, 26, 46, 0.6);
  margin-top: var(--rdct-space-xs);
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .rdct-benefits-v2 {
    padding: var(--rdct-space-xxl) 0;
  }

  .rdct-benefits-v2__title {
    font-size: 2rem;
  }

  .rdct-benefits-v2__metrics {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: var(--rdct-space-lg);
    /* Using gap instead of arrows here */
  }

  .rdct-metric-card-v2 {
    flex: 1;
    max-width: 340px;
  }

  .rdct-benefits-v2__roi {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--rdct-space-xl);
  }

  .rdct-benefits-v2__roi-grid {
    flex-direction: row;
    gap: var(--rdct-space-xl);
    width: auto;
  }

  .rdct-benefits-v2__roi-value {
    font-size: 2.75rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .rdct-benefits-v2__title {
    font-size: 2.25rem;
  }

  .rdct-metric-card-v2 {
    max-width: 380px;
  }

  .rdct-metric-card-v2__content {
    padding: var(--rdct-space-xl);
    min-height: 320px;
  }

  .rdct-metric-card-v2__value {
    font-size: 4rem;
  }

  .rdct-metric-card-v2__label {
    font-size: 1.75rem;
  }

  .rdct-benefits-v2__roi {
    padding: var(--rdct-space-xl) var(--rdct-space-xxl);
  }

  .rdct-benefits-v2__roi-grid {
    gap: var(--rdct-space-xxl);
  }

  .rdct-benefits-v2__roi-value {
    font-size: 3rem;
  }
}