/* =========================================================
   HERO
========================================================= */

.home-hero {
  position: relative;

  overflow: hidden;

  padding: 108px 0 82px;

  isolation: isolate;
}

.home-hero::before,
.home-hero::after {
  content: "";

  position: absolute;
  z-index: -1;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);
}

.home-hero::before {
  top: -260px;
  left: -230px;

  width: 600px;
  height: 600px;

  background:
    radial-gradient(
      circle,
      rgba(139, 0, 255, 0.2),
      transparent 68%
    );
}

.home-hero::after {
  right: -230px;
  bottom: -290px;

  width: 650px;
  height: 650px;

  background:
    radial-gradient(
      circle,
      rgba(182, 255, 0, 0.11),
      transparent 68%
    );
}

.home-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(420px, 0.95fr);

  align-items: center;
  gap: 58px;
}

.home-hero-content {
  position: relative;
  z-index: 2;
}

.home-hero-content h1 {
  max-width: 760px;

  margin: 15px 0 22px;

  font-size: clamp(48px, 6.4vw, 82px);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.home-hero-content h1 span {
  color: var(--ddcs-lime);

  text-shadow:
    0 0 30px rgba(182, 255, 0, 0.18);
}

.home-hero-content p {
  max-width: 690px;

  margin: 0;

  color: var(--ddcs-text-soft);

  font-size: 16px;
  line-height: 1.8;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;

  margin-top: 28px;
}

.home-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;

  margin-top: 25px;
}

.home-hero-points span {
  min-height: 31px;

  display: inline-flex;
  align-items: center;

  padding: 0 11px;

  border: 1px solid var(--ddcs-border);
  border-radius: 999px;

  color: var(--ddcs-text-muted);

  background: rgba(255, 255, 255, 0.025);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero-points span::before {
  content: "";

  width: 6px;
  height: 6px;

  margin-right: 7px;

  border-radius: 50%;

  background: var(--ddcs-lime);

  box-shadow:
    0 0 10px rgba(182, 255, 0, 0.65);
}

/* =========================================================
   CUSTOMER HUB PREVIEW
========================================================= */

.home-feature-window {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(182, 255, 0, 0.14);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      transparent 45%
    ),
    var(--ddcs-surface);

  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.52),
    0 0 70px rgba(139, 0, 255, 0.08);

  transform:
    perspective(1200px)
    rotateY(-2deg)
    rotateX(1deg);

  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.home-feature-window:hover {
  border-color: rgba(182, 255, 0, 0.27);

  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.58),
    0 0 80px rgba(139, 0, 255, 0.13);

  transform:
    perspective(1200px)
    rotateY(0deg)
    rotateX(0deg)
    translateY(-5px);
}

.home-feature-window::before {
  content: "";

  position: absolute;
  top: -120px;
  right: -100px;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(139, 0, 255, 0.18),
      transparent 70%
    );

  pointer-events: none;
}

.home-feature-window-top {
  min-height: 49px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding: 0 16px;

  border-bottom: 1px solid var(--ddcs-border);

  color: var(--ddcs-text-muted);

  background: rgba(7, 7, 11, 0.58);

  font-size: 8px;
  font-weight: 850;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-window-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-window-controls span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);
}

.home-window-controls span:nth-child(1) {
  background: #ff5f57;
}

.home-window-controls span:nth-child(2) {
  background: #febc2e;
}

.home-window-controls span:nth-child(3) {
  background: #28c840;
}

.home-window-status {
  justify-self: end;

  color: var(--ddcs-lime);
}

.home-window-status::before {
  content: "";

  width: 6px;
  height: 6px;

  display: inline-block;

  margin-right: 6px;

  border-radius: 50%;

  background: var(--ddcs-lime);

  box-shadow:
    0 0 10px rgba(182, 255, 0, 0.7);
}

.home-feature-window-body {
  min-height: 390px;

  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
}

.home-feature-sidebar {
  display: grid;
  align-content: start;
  gap: 7px;

  padding: 18px 11px;

  border-right: 1px solid var(--ddcs-border);

  background: rgba(7, 7, 11, 0.34);
}

.home-feature-sidebar strong {
  width: 49px;
  height: 49px;

  display: grid;
  place-items: center;

  margin-bottom: 10px;

  border: 1px solid rgba(182, 255, 0, 0.16);
  border-radius: 14px;

  color: var(--ddcs-lime);

  background: var(--ddcs-lime-soft);

  font-size: 9px;

  box-shadow:
    0 0 24px rgba(182, 255, 0, 0.08);
}

.home-feature-sidebar span {
  padding: 10px;

  border-radius: 9px;

  color: var(--ddcs-text-muted);

  font-size: 8px;
}

.home-feature-sidebar span.active {
  color: var(--ddcs-lime);

  background: var(--ddcs-lime-soft);
}

.home-feature-dashboard {
  position: relative;

  padding: 22px;
}

.home-feature-dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.home-feature-dashboard-heading span,
.home-feature-dashboard-heading strong {
  display: block;
}

.home-feature-dashboard-heading span {
  color: var(--ddcs-text-muted);

  font-size: 8px;
}

.home-feature-dashboard-heading strong {
  margin-top: 5px;

  font-size: 19px;
}

.home-feature-stats {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 9px;

  margin-top: 19px;
}

.home-feature-stats article {
  padding: 13px;

  border: 1px solid var(--ddcs-border);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      transparent
    );

  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.home-feature-stats article:hover {
  transform: translateY(-3px);

  border-color: rgba(182, 255, 0, 0.2);
}

.home-feature-stats span,
.home-feature-stats strong {
  display: block;
}

.home-feature-stats span {
  color: var(--ddcs-text-muted);

  font-size: 7px;
  text-transform: uppercase;
}

.home-feature-stats strong {
  margin-top: 7px;

  color: var(--ddcs-lime);

  font-size: 24px;
}

.home-feature-list {
  display: grid;
  gap: 9px;

  margin-top: 17px;
}

.home-feature-item {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr) auto;

  align-items: center;
  gap: 10px;

  padding: 12px;

  border: 1px solid var(--ddcs-border);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.022);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.home-feature-item:hover {
  transform: translateX(3px);

  border-color: rgba(182, 255, 0, 0.18);

  background: rgba(255, 255, 255, 0.035);
}

.home-feature-icon {
  width: 37px;
  height: 37px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  color: var(--ddcs-lime);
  background: var(--ddcs-lime-soft);
}

.home-feature-icon.purple {
  color: #d9adff;
  background: var(--ddcs-purple-soft);
}

.home-feature-item strong,
.home-feature-item span {
  display: block;
}

.home-feature-item strong {
  font-size: 9px;
}

.home-feature-item span {
  margin-top: 3px;

  color: var(--ddcs-text-muted);

  font-size: 7px;
}

.home-feature-item small {
  color: var(--ddcs-lime);

  font-size: 7px;
  font-weight: 900;
}

/* =========================================================
   STATISTICS
========================================================= */

.home-stats-section {
  position: relative;

  border-top: 1px solid var(--ddcs-border);
  border-bottom: 1px solid var(--ddcs-border);

  background: rgba(255, 255, 255, 0.012);
}

.home-stats-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}

.home-stat-card {
  position: relative;

  min-height: 126px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 24px;

  text-align: center;
}

.home-stat-card:not(:last-child) {
  border-right: 1px solid var(--ddcs-border);
}

.home-stat-card strong {
  color: var(--ddcs-lime);

  font-size: clamp(25px, 4vw, 38px);
  line-height: 1;

  letter-spacing: -0.04em;
}

.home-stat-card span {
  margin-top: 9px;

  color: var(--ddcs-text-muted);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   SERVICES
========================================================= */

.home-services-grid {
  align-items: stretch;
}

.home-service-card {
  position: relative;

  overflow: hidden;

  min-height: 275px;

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-service-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--ddcs-lime),
      var(--ddcs-purple),
      transparent
    );

  opacity: 0;

  transition: opacity 220ms ease;
}

.home-service-card:hover {
  transform: translateY(-7px);

  border-color: rgba(182, 255, 0, 0.21);

  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.3);
}

.home-service-card:hover::before {
  opacity: 1;
}

.home-service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.home-service-card-top > span {
  color: var(--ddcs-text-muted);

  font-size: 9px;
  font-weight: 900;
}

.home-service-card h3 {
  margin: 18px 0 10px;

  font-size: 18px;
}

.home-service-card p {
  min-height: 78px;

  margin: 0;

  color: var(--ddcs-text-soft);

  font-size: 11px;
  line-height: 1.7;
}

.home-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 18px;

  color: var(--ddcs-lime);

  font-size: 10px;
  font-weight: 850;
  text-decoration: none;

  transition:
    transform 180ms ease,
    color 180ms ease;
}

.home-service-card a:hover {
  transform: translateX(4px);

  color: #d0ff5c;
}

.home-service-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(182, 255, 0, 0.14);
  border-radius: 14px;

  color: var(--ddcs-lime);
  background: var(--ddcs-lime-soft);

  box-shadow:
    0 0 24px rgba(182, 255, 0, 0.06);
}

.home-service-icon.purple {
  color: #d9adff;

  border-color: rgba(139, 0, 255, 0.24);

  background: var(--ddcs-purple-soft);
}

/* =========================================================
   ECOSYSTEM
========================================================= */

.home-ecosystem-section {
  position: relative;

  overflow: hidden;

  border-top: 1px solid var(--ddcs-border);
  border-bottom: 1px solid var(--ddcs-border);

  background:
    linear-gradient(
      180deg,
      rgba(139, 0, 255, 0.025),
      rgba(182, 255, 0, 0.018)
    );
}

.home-ecosystem-grid {
  position: relative;

  display: grid;
  grid-template-columns:
    repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.home-ecosystem-grid::before {
  content: "";

  position: absolute;
  top: 53px;
  right: 8%;
  left: 8%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(182, 255, 0, 0.35),
      rgba(139, 0, 255, 0.35),
      transparent
    );
}

.home-ecosystem-card {
  position: relative;
  z-index: 1;

  min-height: 230px;

  padding: 21px;

  border: 1px solid var(--ddcs-border);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      transparent
    ),
    var(--ddcs-surface);

  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.home-ecosystem-card:hover {
  transform: translateY(-6px);

  border-color: rgba(182, 255, 0, 0.21);
}

.home-ecosystem-number {
  display: block;

  color: var(--ddcs-text-muted);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.1em;
}

.home-ecosystem-icon {
  width: 53px;
  height: 53px;

  display: grid;
  place-items: center;

  margin-top: 18px;

  border: 1px solid rgba(182, 255, 0, 0.2);
  border-radius: 50%;

  color: var(--ddcs-lime);
  background: var(--ddcs-lime-soft);

  box-shadow:
    0 0 0 7px var(--ddcs-background),
    0 0 25px rgba(182, 255, 0, 0.08);
}

.home-ecosystem-icon.purple {
  color: #d9adff;

  border-color: rgba(139, 0, 255, 0.3);

  background: var(--ddcs-purple-soft);
}

.home-ecosystem-card h3 {
  margin: 20px 0 9px;

  font-size: 16px;
}

.home-ecosystem-card p {
  margin: 0;

  color: var(--ddcs-text-soft);

  font-size: 10px;
  line-height: 1.65;
}

/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.home-products-section {
  border-top: 1px solid var(--ddcs-border);
  border-bottom: 1px solid var(--ddcs-border);

  background: rgba(255, 255, 255, 0.015);
}

.home-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.home-product-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.home-product-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  border: 1px solid var(--ddcs-border);
  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025),
      transparent
    ),
    var(--ddcs-surface);

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-product-card:hover {
  transform: translateY(-7px);

  border-color: rgba(182, 255, 0, 0.22);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32);
}

.home-product-image {
  position: relative;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-bottom: 1px solid var(--ddcs-border);

  background: var(--ddcs-background-soft);
}

.home-product-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 350ms ease;
}

.home-product-card:hover
.home-product-image img {
  transform: scale(1.045);
}

.home-product-image-placeholder {
  width: 100%;
  height: 100%;

  display: grid;
  place-items: center;

  color: var(--ddcs-lime);

  background:
    radial-gradient(
      circle,
      rgba(182, 255, 0, 0.1),
      transparent 66%
    );

  font-size: 34px;
}

.home-product-content {
  padding: 19px;
}

.home-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-product-category {
  color: var(--ddcs-text-muted);

  font-size: 8px;
  font-weight: 850;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin: 14px 0 8px;

  font-size: 18px;
}

.home-product-card p {
  min-height: 57px;

  margin: 0;

  color: var(--ddcs-text-soft);

  font-size: 10px;
  line-height: 1.7;
}

.home-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-top: 18px;
}

.home-product-price {
  color: var(--ddcs-lime);

  font-size: 16px;
  font-weight: 900;
}

.home-product-loading {
  grid-column: 1 / -1;

  min-height: 240px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  border: 1px dashed var(--ddcs-border);
  border-radius: 16px;

  color: var(--ddcs-text-muted);
}

/* =========================================================
   CUSTOMER HUB
========================================================= */

.home-hub-banner {
  position: relative;

  overflow: hidden;

  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(390px, 0.95fr);

  gap: 38px;

  padding: 40px;

  border: 1px solid rgba(182, 255, 0, 0.19);
  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(182, 255, 0, 0.065),
      rgba(139, 0, 255, 0.085)
    ),
    var(--ddcs-surface);

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.25);
}

.home-hub-banner::before {
  content: "";

  position: absolute;
  right: -140px;
  bottom: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(139, 0, 255, 0.16),
      transparent 68%
    );

  pointer-events: none;
}

.home-hub-content {
  position: relative;
  z-index: 1;
}

.home-hub-banner h2 {
  margin: 11px 0 14px;

  font-size: clamp(30px, 4vw, 51px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.home-hub-banner p {
  margin: 0;

  color: var(--ddcs-text-soft);

  font-size: 13px;
  line-height: 1.75;
}

.home-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 23px;
}

.home-hub-features {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  align-content: center;
  gap: 10px;
}

.home-hub-feature {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);

  align-items: center;
  gap: 12px;

  min-height: 88px;

  padding: 14px;

  border: 1px solid var(--ddcs-border);
  border-radius: 13px;

  background: rgba(7, 7, 11, 0.35);

  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.home-hub-feature:hover {
  transform: translateY(-3px);

  border-color: rgba(182, 255, 0, 0.21);
}

.home-hub-feature > span {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  color: var(--ddcs-lime);
  background: var(--ddcs-lime-soft);
}

.home-hub-feature strong,
.home-hub-feature small {
  display: block;
}

.home-hub-feature strong {
  font-size: 10px;
}

.home-hub-feature small {
  margin-top: 4px;

  color: var(--ddcs-text-muted);

  font-size: 8px;
  line-height: 1.5;
}

/* =========================================================
   WHY DDCS
========================================================= */

.home-why-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-why-card {
  position: relative;

  min-height: 230px;

  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.home-why-card:hover {
  transform: translateY(-6px);

  border-color: rgba(182, 255, 0, 0.21);
}

.home-why-number {
  color: var(--ddcs-lime);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.12em;
}

.home-why-card h3 {
  margin: 22px 0 11px;

  font-size: 17px;
}

.home-why-card p {
  margin: 0;

  color: var(--ddcs-text-soft);

  font-size: 10px;
  line-height: 1.7;
}

/* =========================================================
   FINAL CTA
========================================================= */

.home-final-cta-section {
  padding-top: 30px;
}

.home-final-cta {
  position: relative;

  overflow: hidden;

  min-height: 380px;

  display: grid;
  place-items: center;

  padding: 55px 30px;

  border: 1px solid rgba(182, 255, 0, 0.2);
  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(182, 255, 0, 0.065),
      rgba(139, 0, 255, 0.09)
    ),
    var(--ddcs-surface);

  text-align: center;

  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.3);
}

.home-final-cta-glow {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 25% 100%,
      rgba(139, 0, 255, 0.22),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(182, 255, 0, 0.13),
      transparent 40%
    );

  pointer-events: none;
}

.home-final-cta-content {
  position: relative;
  z-index: 1;

  max-width: 790px;
}

.home-final-cta h2 {
  margin: 14px 0 15px;

  font-size: clamp(34px, 5vw, 59px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-final-cta p {
  max-width: 680px;

  margin: 0 auto;

  color: var(--ddcs-text-soft);

  font-size: 13px;
  line-height: 1.75;
}

.home-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-top: 25px;
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.ddcs-reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.ddcs-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .home-hero-grid,
  .home-hub-banner {
    grid-template-columns: 1fr;
  }

  .home-feature-window {
    max-width: 760px;

    margin: 0 auto;

    transform: none;
  }

  .home-ecosystem-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .home-ecosystem-grid::before {
    display: none;
  }

  .home-why-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-stats-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .home-stat-card:nth-child(2) {
    border-right: 0;
  }

  .home-stat-card:nth-child(-n + 2) {
    border-bottom:
      1px solid var(--ddcs-border);
  }

  .home-product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .home-hub-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .home-hero {
    padding: 66px 0 55px;
  }

  .home-hero-content h1 {
    font-size: clamp(42px, 13vw, 61px);
  }

  .home-hero-content p {
    font-size: 14px;
  }

  .home-feature-window-body {
    grid-template-columns: 1fr;
  }

  .home-feature-sidebar {
    display: none;
  }

  .home-feature-dashboard {
    padding: 17px;
  }

  .home-feature-stats {
    grid-template-columns: 1fr;
  }

  .home-feature-stats article {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .home-feature-stats strong {
    margin-top: 0;
  }

  .home-products-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-product-grid,
  .home-ecosystem-grid,
  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .home-hub-banner {
    padding: 25px;
  }

  .home-hero-actions,
  .home-hub-actions,
  .home-final-cta-actions {
    flex-direction: column;
  }

  .home-hero-actions .ddcs-button,
  .home-hub-actions .ddcs-button,
  .home-final-cta-actions .ddcs-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .home-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-card {
    min-height: 105px;

    border-right: 0 !important;
    border-bottom:
      1px solid var(--ddcs-border);
  }

  .home-stat-card:last-child {
    border-bottom: 0;
  }

  .home-feature-window-top {
    grid-template-columns: auto 1fr;

    gap: 12px;
  }

  .home-feature-window-top > span:nth-child(2) {
    text-align: right;
  }

  .home-window-status {
    display: none;
  }

  .home-feature-item small {
    display: none;
  }

  .home-feature-item {
    grid-template-columns:
      auto minmax(0, 1fr);
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-final-cta {
    min-height: 330px;

    padding: 42px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ddcs-reveal,
  .home-feature-window,
  .home-product-card,
  .home-service-card,
  .home-ecosystem-card,
  .home-why-card {
    transition: none;
  }

  .ddcs-reveal {
    opacity: 1;

    transform: none;
  }
}