.desoft-rs-dashboard {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

.desoft-rs-dashboard--inline {
  padding: 2.25rem 0;
}

.desoft-rs-dashboard--tint {
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.05) 0%, rgba(255, 255, 255, 0.6) 100%);
}

@media (min-width: 1024px) {
  .desoft-rs-dashboard--inline {
    padding: 2.75rem 0;
  }
}

.desoft-rs-dashboard__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.desoft-rs-dashboard__inner--inline {
  max-width: 56rem;
}

@media (min-width: 640px) {
  .desoft-rs-dashboard__inner {
    padding: 0 1.5rem;
  }
}

.desoft-rs-dashboard__header {
  text-align: center;
  margin-bottom: 2rem;
}

.desoft-rs-dashboard__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c41e3a;
  background: rgba(196, 30, 58, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.desoft-rs-dashboard__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.75rem;
}

.desoft-rs-dashboard__subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.desoft-rs-kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .desoft-rs-kpi-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.desoft-rs-kpi {
  background: #fff;
  border: 1px solid rgba(196, 30, 58, 0.25);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.06);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-rs-kpi.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.desoft-rs-kpi__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #c41e3a;
  line-height: 1.1;
}

.desoft-rs-kpi__label {
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 0.35rem;
  line-height: 1.35;
}

.desoft-rs-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .desoft-rs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.desoft-rs-card {
  background: #fff;
  border: 1px solid rgba(196, 30, 58, 0.18);
  border-radius: 1.25rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-rs-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.desoft-rs-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}

.desoft-rs-bar-row + .desoft-rs-bar-row {
  margin-top: 0.75rem;
}

.desoft-rs-bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #374151;
  margin-bottom: 0.35rem;
}

.desoft-rs-bar-meta span:last-child {
  font-weight: 700;
  color: #c41e3a;
}

.desoft-rs-bar-track {
  height: 0.55rem;
  background: rgba(196, 30, 58, 0.12);
  border-radius: 9999px;
  overflow: hidden;
}

.desoft-rs-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e63946, #c41e3a);
  border-radius: 9999px;
  transition: none;
}

.desoft-rs-bar-value {
  font-weight: 700;
  color: #c41e3a;
  min-width: 2.75rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.desoft-rs-bar-fill.is-animated {
  width: var(--rs-width, 0%);
}

.desoft-rs-table-wrap {
  overflow-x: auto;
}

.desoft-rs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.desoft-rs-table th,
.desoft-rs-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(196, 30, 58, 0.12);
}

.desoft-rs-table th {
  font-weight: 700;
  color: #c41e3a;
  background: rgba(196, 30, 58, 0.05);
}

.desoft-rs-table tbody tr {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.desoft-rs-table tbody tr.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.desoft-rs-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: rgba(196, 30, 58, 0.12);
  color: #c41e3a;
  font-size: 0.75rem;
  font-weight: 700;
}

.desoft-rs-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.desoft-rs-badge--old {
  background: #f3f4f6;
  color: #6b7280;
}

.desoft-rs-badge--new {
  background: rgba(196, 30, 58, 0.12);
  color: #c41e3a;
}

.desoft-rs-source-hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .desoft-rs-kpi,
  .desoft-rs-card,
  .desoft-rs-bar-fill,
  .desoft-rs-table tbody tr {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .desoft-rs-bar-fill.is-animated {
    width: var(--rs-width, 0%);
  }
}

.redseal-sectors-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.redseal-sectors-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: redseal-sectors-scroll var(--rs-marquee-duration, 107s) linear infinite;
  animation-delay: 0s;
  will-change: transform;
}

.redseal-sectors-marquee--fit {
  -webkit-mask-image: none;
  mask-image: none;
}

.redseal-sectors-marquee--fit .redseal-sectors-track {
  width: 100%;
  justify-content: center;
}

.redseal-sectors-marquee--fit .redseal-sectors-set {
  width: 100%;
  max-width: 72rem;
  justify-content: space-between;
  gap: 1.25rem;
}

.redseal-sectors-set {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
}

.redseal-sector-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(196, 30, 58, 0.22);
  background: rgba(196, 30, 58, 0.06);
  color: #c41e3a;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes redseal-sectors-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--rs-marquee-shift, 50%)), 0, 0);
  }
}

@media (min-width: 640px) {
  .redseal-sector-pill {
    font-size: 0.9375rem;
    padding: 0.65rem 1.25rem;
  }

  .redseal-sectors-set {
    gap: 3rem;
  }

  .redseal-sectors-track {
    gap: 4rem;
  }

  .redseal-sectors-marquee--fit .redseal-sectors-set {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .redseal-sectors-set {
    gap: 3.5rem;
  }

  .redseal-sectors-track {
    gap: 5rem;
  }

  .redseal-sectors-marquee--fit .redseal-sectors-set {
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .redseal-sectors-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .redseal-sectors-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
  }

  .redseal-sectors-set {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1.25rem;
  }

  .redseal-sectors-set[aria-hidden="true"] {
    display: none;
  }
}

/* Network Digital Twin highlight */
.desoft-rs-twin {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-rs-twin.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.desoft-rs-twin__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .desoft-rs-twin__inner {
    padding: 0 1.5rem;
  }
}

.desoft-rs-twin__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.25);
  color: #c41e3a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desoft-rs-twin__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

.desoft-rs-twin__lead {
  max-width: 46rem;
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4b5563;
}

.desoft-rs-twin__layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .desoft-rs-twin__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.desoft-rs-twin__viz {
  position: relative;
  padding: calc(1.25rem + 0.45rem) calc(1rem + 0.45rem) calc(2.5rem + 0.45rem);
  border-radius: 1.25rem;
  background: #9a263d;
  border: 0;
  box-shadow: 0 14px 30px rgba(104, 20, 43, 0.16);
  overflow: hidden;
}

.desoft-rs-twin__viz::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, rgba(196, 30, 58, 0.06) 0%, rgba(255, 255, 255, 0.98) 55%);
  pointer-events: none;
}

.desoft-rs-twin__viz > * {
  position: relative;
  z-index: 1;
}

/* Why RedSeal audience cards: light version of the platform visual frame. */
.desoft-rs-audience-card-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid #9a263d !important;
  box-shadow: 0 10px 24px rgba(104, 20, 43, 0.16) !important;
  background: #fff !important;
  padding: 0 !important;
}

.desoft-rs-audience-card-frame::before {
  content: none;
}

.desoft-rs-audience-card-frame > * {
  position: relative;
  z-index: 1;
}

/* Fallback for the source cards before their script enhancement runs. */
section.py-16.bg-white\/50 .grid.md\:grid-cols-2.lg\:grid-cols-4.gap-6 > div {
  border: 3px solid #9a263d !important;
  box-shadow: 0 10px 24px rgba(104, 20, 43, 0.16) !important;
}

.desoft-rs-twin__svg {
  width: 100%;
  height: auto;
  display: block;
}

.desoft-rs-twin__core {
  animation: desoft-rs-twin-pulse 2.8s ease-in-out infinite;
  transform-origin: center;
}

.desoft-rs-twin__flow {
  animation: desoft-rs-twin-flow 2.4s linear infinite;
}

.desoft-rs-twin__flow--2 {
  animation-delay: 0.35s;
}

.desoft-rs-twin__flow--3 {
  animation-delay: 0.7s;
}

.desoft-rs-twin__flow--4 {
  animation-delay: 0.2s;
}

.desoft-rs-twin__flow--5 {
  animation-delay: 0.55s;
}

.desoft-rs-twin__flow--6 {
  animation-delay: 0.9s;
}

.desoft-rs-twin__lane circle {
  animation: desoft-rs-twin-node 2.8s ease-in-out infinite;
}

.desoft-rs-twin__lane--right circle:nth-child(2) {
  animation-delay: 0.3s;
}

.desoft-rs-twin__lane--right circle:nth-child(3) {
  animation-delay: 0.6s;
}

.desoft-rs-twin__viz-labels {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0 0.25rem;
}

.desoft-rs-twin__viz-label {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}

.desoft-rs-twin__viz-label--core {
  color: #c41e3a;
}

.desoft-rs-twin__features {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .desoft-rs-twin__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.desoft-rs-twin__feat {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(196, 30, 58, 0.16);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.desoft-rs-twin__feat:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 30, 58, 0.35);
  box-shadow: 0 12px 28px rgba(196, 30, 58, 0.1);
}

.desoft-rs-twin__feat-title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #c41e3a;
}

.desoft-rs-twin__feat-desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #4b5563;
}

@keyframes desoft-rs-twin-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(196, 30, 58, 0));
  }

  50% {
    filter: drop-shadow(0 0 14px rgba(196, 30, 58, 0.35));
  }
}

@keyframes desoft-rs-twin-flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -28;
  }
}

@keyframes desoft-rs-twin-node {
  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desoft-rs-twin {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .desoft-rs-twin__core,
  .desoft-rs-twin__flow,
  .desoft-rs-twin__lane circle {
    animation: none;
  }
}

/* Sales sections */
.desoft-rs-sales__eyebrow {
  margin: 0 auto 0.75rem;
  max-width: 44rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c41e3a;
  text-align: center;
}

.desoft-rs-sales__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  text-align: center;
}

.desoft-rs-sales__lead {
  margin: 0 auto 2rem;
  max-width: 44rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4b5563;
  text-align: center;
}

.desoft-rs-sales--tint {
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.06) 0%, rgba(255, 245, 245, 0.55) 100%);
}

.desoft-rs-sales--accent {
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.08) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.desoft-rs-sales__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .desoft-rs-sales__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .desoft-rs-sales__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.desoft-rs-sales__card {
  background: #fff;
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 10px 28px rgba(196, 30, 58, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.desoft-rs-sales__card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 30, 58, 0.35);
  box-shadow: 0 14px 32px rgba(196, 30, 58, 0.12);
}

.desoft-rs-sales__card-title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: #c41e3a;
}

.desoft-rs-sales__card-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
}

.desoft-rs-sales__list {
  margin: 0 auto 0;
  padding: 0;
  list-style: none;
  max-width: 44rem;
}

.desoft-rs-sales__list-item {
  position: relative;
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #374151;
}

.desoft-rs-sales__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e63946, #c41e3a);
}

.desoft-rs-sales__stat {
  margin: 0 auto 2rem;
  max-width: 20rem;
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 2px solid rgba(196, 30, 58, 0.2);
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.08);
}

.desoft-rs-sales__stat-value {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: #c41e3a;
}

.desoft-rs-sales__stat-label {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #6b7280;
}

.desoft-rs-trust__quotes {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .desoft-rs-trust__quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.desoft-rs-trust__quote {
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(196, 30, 58, 0.16);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.desoft-rs-trust__quote-text {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.65;
  font-style: italic;
  color: #374151;
  font-family: Georgia, "Times New Roman", serif;
}

.desoft-rs-trust__quote-role {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c41e3a;
}

.desoft-rs-sales__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.desoft-rs-sales__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.desoft-rs-sales__btn--primary {
  background: #c41e3a;
  color: #fff;
}

.desoft-rs-sales__btn--primary:hover {
  background: #a81832;
  transform: translateY(-1px);
}

.desoft-rs-sales__btn--secondary {
  background: transparent;
  color: #c41e3a;
  border: 2px solid rgba(196, 30, 58, 0.45);
}

.desoft-rs-sales__btn--secondary:hover {
  background: rgba(196, 30, 58, 0.08);
  transform: translateY(-1px);
}

/* Platform video inline (RedSeal Nedir? yanında) */
.desoft-rs-whatis-enhanced {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

@media (min-width: 1024px) {
  .desoft-rs-whatis-enhanced {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

.desoft-rs-whatis-enhanced > div {
  max-width: 84rem !important;
}

.desoft-rs-whatis-grid {
  align-items: center !important;
  gap: 2rem !important;
}

@media (min-width: 1024px) {
  .desoft-rs-whatis-enhanced .desoft-rs-whatis-grid {
    gap: 3rem !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: center !important;
    overflow: visible !important;
  }

  .desoft-rs-whatis-enhanced,
  .desoft-rs-whatis-enhanced > div,
  .desoft-rs-whatis-enhanced .desoft-rs-whatis-grid > div {
    overflow: visible !important;
  }
}

.desoft-rs-whatis-enhanced h2 {
  font-size: clamp(1.55rem, 2.45vw, 2.15rem) !important;
  line-height: 1.16 !important;
  margin-bottom: 1rem !important;
  letter-spacing: -0.02em;
}

.desoft-rs-whatis-enhanced .prose,
.desoft-rs-whatis-enhanced .prose-lg {
  max-width: none !important;
  font-size: 0.92rem !important;
}

.desoft-rs-whatis-enhanced .prose p,
.desoft-rs-whatis-enhanced .prose-lg p {
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
  margin-bottom: 0.9rem !important;
  color: #374151 !important;
}

@media (min-width: 768px) {
  .desoft-rs-whatis-enhanced .prose p,
  .desoft-rs-whatis-enhanced .prose-lg p {
    font-size: 0.96rem !important;
    line-height: 1.72 !important;
  }
}

@media (min-width: 1280px) {
  .desoft-rs-whatis-enhanced .prose p,
  .desoft-rs-whatis-enhanced .prose-lg p {
    font-size: 1rem !important;
  }
}

.desoft-rs-whatis-copy {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 2px solid #e63946;
  border-left-width: 0.45rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(230, 57, 70, 0.28), transparent 40%),
    linear-gradient(145deg, #340b14 0%, #68182a 100%);
  box-shadow:
    0 20px 44px rgba(72, 13, 28, 0.24),
    0 5px 14px rgba(196, 30, 58, 0.16);
}

.desoft-rs-whatis-enhanced .desoft-rs-whatis-grid > .desoft-rs-whatis-copy {
  overflow: hidden !important;
}

.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy h2 {
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin-bottom: 1.35rem !important;
}

.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose,
.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose-lg,
.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose p,
.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose-lg p {
  color: rgba(255, 255, 255, 0.92) !important;
}

.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose p,
.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose-lg p {
  font-size: clamp(1rem, 1.35vw, 1.075rem) !important;
  line-height: 1.8 !important;
  letter-spacing: 0.005em;
  margin-bottom: 1.05rem !important;
}

.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose p:last-child,
.desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose-lg p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  .desoft-rs-whatis-copy {
    padding: 1.35rem 1.15rem 1.5rem;
    border-left-width: 0.3rem;
    border-radius: 1.15rem;
  }

  .desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose p,
  .desoft-rs-whatis-enhanced .desoft-rs-whatis-copy .prose-lg p {
    font-size: 1rem !important;
    line-height: 1.72 !important;
  }
}

.desoft-rs-platform-video-inline {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  min-width: 0;
  overflow: visible;
  display: block;
}

.desoft-rs-platform-video-inline.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.desoft-rs-platform-video__frame--inline {
  max-width: none;
  margin: 0;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  min-height: 0;
  padding: clamp(0.35rem, 0.75vw, 0.625rem);
  border-radius: 1.35rem;
  border: 0;
  box-shadow: 0 18px 38px rgba(104, 20, 43, 0.24);
  background: #821c35;
  line-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.desoft-rs-platform-video__player--inline {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 0.75rem;
}

@media (min-width: 1024px) {
  .desoft-rs-whatis-enhanced .desoft-rs-platform-video-inline {
    width: 105%;
    max-width: 105%;
    margin-left: 0;
    position: relative;
    z-index: 1;
  }

  .desoft-rs-whatis-enhanced .desoft-rs-platform-video__frame--inline {
    width: 100%;
  }

  .min-h-screen.overflow-hidden:has(.desoft-rs-whatis-enhanced) {
    overflow: visible !important;
  }
}

@media (max-width: 1023px) {
  .desoft-rs-platform-video-inline {
    margin-top: 2rem;
  }

  .desoft-rs-platform-video__frame--inline {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desoft-rs-platform-video-inline {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.desoft-rs-platform-video__frame {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(0.35rem, 0.75vw, 0.625rem);
  border-radius: 1.35rem;
  overflow: hidden;
  background: #821c35;
  border: 0;
  box-shadow: 0 18px 38px rgba(104, 20, 43, 0.24);
  aspect-ratio: 16 / 9;
}

.desoft-rs-platform-video__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  border-radius: 0.75rem;
}

.desoft-rs-platform-video__frame--inline.desoft-rs-platform-video__frame {
  aspect-ratio: auto;
  max-width: none;
  height: auto;
}

.desoft-rs-platform-video__frame--inline .desoft-rs-platform-video__player--inline {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  object-fit: contain !important;
  object-position: center;
}

/* Ag Dijital Ikizi diyagrami mobilde 228x90 piksele siginca etiketler 4,1 px
   olarak ciziliyor ve okunmuyor. Diyagram zaten aria-hidden (dekoratif); mobilde
   gizleniyor. Altindaki MODELLE / ANALIZ ET / SALDIRI YOLLARI etiketleri SVG'nin
   disinda oldugu icin kaliyor ve akisi tek basina anlatiyor. */
@media (max-width: 767px) {
  .desoft-rs-twin__svg {
    display: none;
  }
}
