html {
  scroll-padding-bottom: 12rem;
  overflow-x: clip;
}

body {
  overflow-x: clip;
  overflow-y: auto !important;
}

.mxd-page-content,
#mxd-page-content {
  overflow-x: clip;
  max-width: 100%;
}

/* Digital Fusion brand — orange accent in light mode (logo color) */
html[color-scheme="light"] {
  --accent: #FF7A00;
  --accent-rgb: 255, 122, 0;
}

@media (prefers-color-scheme: light) {
  html:not([color-scheme="dark"]) {
    --accent: #FF7A00;
    --accent-rgb: 255, 122, 0;
  }
}

#mxd-footer .footer-socials__link {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  #mxd-footer .footer-socials__link {
    font-size: 1.6rem;
  }
}

html[color-scheme="dark"] .mxd-logo {
  filter: brightness(0) invert(1) !important;
}

.mxd-logo {
  transition: filter 0.3s ease-in-out !important;
}

/* Smaller headings site-wide */
h1:not(.df-hero-headline),
.inner-headline__title {
  font-size: 4.2rem !important;
}

@media (min-width: 768px) {
  h1:not(.df-hero-headline),
  .inner-headline__title {
    font-size: 5.5rem !important;
  }
}

@media (min-width: 1200px) {
  h1:not(.df-hero-headline),
  .inner-headline__title {
    font-size: 6.5rem !important;
  }
}

h2,
h2.reveal-type,
.mxd-promo__caption.reveal-type {
  font-size: 3.2rem !important;
}

@media (min-width: 768px) {
  h2,
  h2.reveal-type,
  .mxd-promo__caption.reveal-type {
    font-size: 4.5rem !important;
  }
}

h3 {
  font-size: 2.6rem !important;
}

@media (min-width: 768px) {
  h3 {
    font-size: 3rem !important;
  }
}

/* Hero heading — legacy override (premium hero uses .df-hero-headline) */
.hero-01-title {
  font-size: 3.8rem !important;
}

@media (min-width: 768px) {
  .hero-01-title {
    font-size: 5.5rem !important;
  }
}

@media (min-width: 1200px) {
  .hero-01-title {
    font-size: 7.5rem !important;
  }
}

@media (min-width: 1600px) {
  .hero-01-title {
    font-size: 9rem !important;
  }
}

/* ── Premium Homepage Hero ── */
.df-hero-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.df-hero-premium .mxd-hero-01 {
  position: relative;
  z-index: 1;
}

.df-hero-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(var(--accent-rgb), 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 8% 75%, rgba(var(--accent-rgb), 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 92% 85%, rgba(var(--accent-rgb), 0.08) 0%, transparent 50%),
    linear-gradient(165deg, var(--base) 0%, var(--base-tint) 50%, var(--base) 100%);
  pointer-events: none;
}

html[color-scheme="dark"] .df-hero-premium__bg {
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(var(--accent-rgb), 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 8% 75%, rgba(var(--accent-rgb), 0.08) 0%, transparent 55%),
    linear-gradient(165deg, var(--base) 0%, var(--base-tint) 50%, var(--base) 100%);
}

.df-hero-premium__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

.df-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-medium);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.7rem 1.6rem;
  border-radius: 10rem;
  margin: 0;
}

html[color-scheme="dark"] .df-hero-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.df-hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font: normal var(--fw-medium) 3.6rem/1.15 var(--_font-accent) !important;
  letter-spacing: -0.04rem;
  color: var(--t-bright);
  margin: 0;
  width: 100%;
}

.df-hero-headline__line {
  display: block;
  white-space: normal;
}

.df-hero-headline em {
  font-style: normal;
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
}

.df-hero-desc {
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--t-medium);
  max-width: 620px;
  margin: 0;
}

.df-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.df-hero-tags span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--t-bright);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.5rem 1.2rem;
  border-radius: 10rem;
  white-space: nowrap;
}

html[color-scheme="dark"] .df-hero-tags span {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Hero layout fixes */
.df-hero-premium .mxd-hero-01__top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
  min-height: 55vh;
  padding: 8rem 0 4rem;
}

.df-hero-premium .mxd-hero-01__title-wrap {
  width: 100% !important;
  padding-bottom: 0 !important;
}

.df-hero-premium .mxd-hero-01__images,
.df-hero-premium .mxd-hero-01__marquee {
  display: none !important;
}

.df-hero-premium .mxd-hero-01__data-wrap {
  padding: 4rem 0 8rem !important;
}

.df-hero-premium .mxd-hero-01__bottom {
  height: auto !important;
}

@media (min-width: 768px) {
  .df-hero-headline {
    font-size: 5rem !important;
    gap: 0.6rem;
  }

  .df-hero-desc {
    font-size: 1.8rem;
  }

  .df-hero-premium .mxd-hero-01__top {
    min-height: 60vh;
    padding: 10rem 0 5rem;
  }
}

@media (min-width: 1200px) {
  .df-hero-headline {
    font-size: 6.2rem !important;
  }

  .df-hero-premium__content {
    max-width: 960px;
    gap: 2.4rem;
  }
}

@media (min-width: 1600px) {
  .df-hero-headline {
    font-size: 7rem !important;
  }
}

/* Hero decorative visuals */
.df-hero-premium__visuals {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.df-hero-float {
  position: absolute;
  border-radius: var(--_radius-l, 1.6rem);
  overflow: hidden;
  opacity: 0.55;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  animation: df-hero-float 6s ease-in-out infinite;
}

.df-hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.df-hero-float--left {
  width: 140px;
  height: 140px;
  left: 2%;
  top: 28%;
  animation-delay: 0s;
}

.df-hero-float--right {
  width: 130px;
  height: 130px;
  right: 2%;
  top: 32%;
  animation-delay: 1.5s;
}

.df-hero-side {
  position: absolute;
  display: none;
  flex-direction: column;
  gap: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.df-hero-side--left {
  left: 3%;
}

.df-hero-side--right {
  right: 3%;
}

.df-hero-stat-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.4rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.df-hero-side--right .df-hero-stat-card:nth-child(2),
.df-hero-side--left .df-hero-stat-card:nth-child(2) {
  margin-left: 1.5rem;
}

html[color-scheme="dark"] .df-hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.df-hero-stat-card img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
  flex-shrink: 0;
}

.df-hero-stat-card span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--t-bright);
  white-space: nowrap;
}

@keyframes df-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.df-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

/* Hero height — prevent overlap with next section */
.df-hero-premium.mxd-hero-fullheight {
  min-height: 100vh;
  height: auto !important;
}

.df-hero-premium .mxd-hero-01 {
  min-height: inherit;
}

.df-hero-premium .df-hero-premium__content {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .df-hero-float--left {
    width: 180px;
    height: 180px;
    left: 4%;
  }

  .df-hero-float--right {
    width: 170px;
    height: 170px;
    right: 4%;
  }

  .df-hero-side {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .df-hero-float--left {
    width: 200px;
    height: 200px;
    left: 5%;
    top: 26%;
  }

  .df-hero-float--right {
    width: 190px;
    height: 190px;
    right: 5%;
    top: 30%;
  }

  .df-hero-side--left {
    left: 1.5%;
  }

  .df-hero-side--right {
    right: 1.5%;
  }
}

@media (min-width: 1600px) {
  .df-hero-float--left {
    width: 220px;
    height: 220px;
    left: 6%;
  }

  .df-hero-float--right {
    width: 210px;
    height: 210px;
    right: 6%;
  }
}

@media (max-width: 991px) {
  .df-hero-float {
    opacity: 0.35;
  }

  .df-hero-float--left {
    width: 90px;
    height: 90px;
    left: -1%;
    top: 18%;
  }

  .df-hero-float--right {
    width: 80px;
    height: 80px;
    right: -1%;
    top: 20%;
  }
}

/* About section — clean separation from hero */
.df-about-home {
  position: relative;
  z-index: 3;
  background-color: var(--base);
  padding-top: 8rem !important;
  margin-top: 0;
}

.df-about-home .mxd-manifest.reveal-type {
  line-height: 1.4 !important;
  overflow: visible;
  font-size: 2.4rem !important;
}

.df-about-home .mxd-manifest.reveal-type .word,
.df-about-home .mxd-manifest.reveal-type .char {
  display: inline;
  white-space: normal;
}

@media (min-width: 768px) {
  .df-about-home {
    padding-top: 10rem !important;
  }

  .df-about-home .mxd-manifest.reveal-type {
    font-size: 3.6rem !important;
  }
}

@media (min-width: 1200px) {
  .df-about-home .mxd-manifest.reveal-type {
    font-size: 4rem !important;
    line-height: 1.35 !important;
  }
}

/* Footer — smaller nav text & full visibility */
.footer-nav__link {
  font-size: 2rem !important;
}

.footer-nav__link .btn-caption {
  height: 1.3em !important;
  line-height: 1.3 !important;
  overflow: hidden !important;
}

@media (min-width: 768px) {
  .footer-nav__link {
    font-size: 2.4rem !important;
  }
}

.footer-blocks__title-l {
  font-size: 2.2rem !important;
}

@media (min-width: 768px) {
  .footer-blocks__title-l {
    font-size: 2.6rem !important;
  }
}

.footer-blocks__column {
  height: auto !important;
}

.footer-blocks__card.fullheight-card {
  height: auto !important;
  min-height: unset !important;
}

#mxd-footer.df-footer-v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 100%;
  padding: 0 0 8rem !important;
  margin-top: 4rem;
}

/* ── Footer v2 — bento + particles ── */
.df-footer-v2__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.df-footer-v2__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.df-footer-v2__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(var(--accent-rgb), 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 5% 85%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--base) 0%, var(--base-tint) 55%, var(--base) 100%);
}

html[color-scheme="dark"] .df-footer-v2__mesh {
  background:
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(var(--accent-rgb), 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 5% 85%, rgba(var(--accent-rgb), 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--base) 0%, var(--base-tint) 100%);
}

.df-footer-v2__float-icons {
  position: absolute;
  inset: 0;
}

.df-footer-v2__float-icon {
  position: absolute;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: rgba(var(--accent-rgb), 0.12);
  animation: df-footer-icon-drift 18s ease-in-out infinite;
  animation-delay: calc(var(--i) * -2.2s);
}

.df-footer-v2__float-icon:nth-child(1) { top: 12%; left: 8%; }
.df-footer-v2__float-icon:nth-child(2) { top: 28%; left: 72%; }
.df-footer-v2__float-icon:nth-child(3) { top: 55%; left: 15%; }
.df-footer-v2__float-icon:nth-child(4) { top: 18%; left: 45%; }
.df-footer-v2__float-icon:nth-child(5) { top: 65%; left: 58%; }
.df-footer-v2__float-icon:nth-child(6) { top: 40%; left: 88%; }
.df-footer-v2__float-icon:nth-child(7) { top: 78%; left: 32%; }
.df-footer-v2__float-icon:nth-child(8) { top: 8%; left: 92%; }

@keyframes df-footer-icon-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.35; }
  33% { transform: translate(12px, -18px) rotate(8deg); opacity: 0.7; }
  66% { transform: translate(-8px, 10px) rotate(-5deg); opacity: 0.5; }
}

.df-footer-v2__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .df-footer-v2__inner {
    padding: 0 4rem;
  }
}

/* Ticker — CSS only, clipped */
.df-footer-v2__ticker {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 2rem 0 1.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.df-footer-v2__ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: df-footer-ticker 28s linear infinite;
}

.df-footer-v2__ticker-track span {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-muted);
  white-space: nowrap;
}

.df-footer-v2__ticker-track span::after {
  content: "◆";
  margin-left: 3rem;
  font-size: 0.6rem;
  color: var(--accent);
  vertical-align: middle;
}

@keyframes df-footer-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Brand hero row */
.df-footer-v2__hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
}

@media (min-width: 768px) {
  .df-footer-v2__hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0 3.5rem;
  }
}

.df-footer-v2__brand {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.df-footer-v2__logo {
  width: 5.6rem;
  height: auto;
  flex-shrink: 0;
  border-radius: 0.8rem;
  filter: drop-shadow(0 4px 12px rgba(var(--accent-rgb), 0.2));
}

html[color-scheme="dark"] .df-footer-v2__logo {
  border-radius: 0.8rem;
}

.df-footer-v2__tagline {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-muted);
  margin: 0 0 0.4rem;
}

.df-footer-v2__name {
  font: normal 800 clamp(2.8rem, 6vw, 4.8rem)/1.05 var(--_font-accent, 'Inter', sans-serif);
  letter-spacing: -0.03em;
  color: var(--t-bright);
  margin: 0;
  text-transform: lowercase;
}

.df-footer-v2__name span {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent) 0%, #FFB347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-footer-v2__hero-cta {
  flex-shrink: 0;
}

/* Bento grid */
.df-footer-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .df-footer-v2__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

@media (min-width: 1100px) {
  .df-footer-v2__grid {
    grid-template-columns: 1.1fr 1fr 1.2fr 1.3fr;
    gap: 1.6rem;
  }
}

.df-footer-v2__panel {
  position: relative;
  padding: 2.4rem 2.2rem;
  border-radius: var(--_radius-m, 1.2rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}

html[color-scheme="dark"] .df-footer-v2__panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(var(--accent-rgb), 0.16);
}

.df-footer-v2__panel:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.12);
  transform: translateY(-2px);
}

html[color-scheme="dark"] .df-footer-v2__panel:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.df-footer-v2__panel--audit {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(255, 255, 255, 0.5) 100%);
}

html[color-scheme="dark"] .df-footer-v2__panel--audit {
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.df-footer-v2__audit-ring {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  animation: df-footer-ring-spin 12s linear infinite;
}

.df-footer-v2__audit-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--accent-rgb), 0.2);
}

@keyframes df-footer-ring-spin {
  to { transform: rotate(360deg); }
}

.df-footer-v2__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.6rem;
}

.df-footer-v2__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.df-footer-v2__nav a {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--t-bright);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.df-footer-v2__nav a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.df-footer-v2__socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.df-footer-v2__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--t-bright);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.df-footer-v2__socials a:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.18);
}

.df-footer-v2__contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  font-size: 1.5rem;
  color: var(--t-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
  transition: color 0.25s ease;
}

.df-footer-v2__contact:last-of-type {
  border-bottom: none;
}

.df-footer-v2__contact i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.df-footer-v2__contact:hover {
  color: var(--accent);
}

.df-footer-v2__audit-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--t-bright);
  margin: 0 0 0.8rem;
}

.df-footer-v2__audit-desc {
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--t-medium);
  margin: 0 0 1.6rem;
}

.df-footer-v2__services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.df-footer-v2__services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  color: var(--t-medium);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.08);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.df-footer-v2__services a:hover {
  color: var(--accent);
  padding-left: 0.4rem;
}

.df-footer-v2__services a::after {
  content: "↗";
  font-size: 1.1rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: var(--accent);
}

.df-footer-v2__services a:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* Bottom bar */
.df-footer-v2__bar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--accent-rgb), 0.12);
}

@media (min-width: 768px) {
  .df-footer-v2__bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.df-footer-v2__legal {
  display: flex;
  gap: 2rem;
}

.df-footer-v2__legal a {
  font-size: 1.3rem;
  color: var(--t-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.df-footer-v2__legal a:hover {
  color: var(--accent);
}

.df-footer-v2__copy {
  font-size: 1.2rem;
  color: var(--t-muted);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .df-footer-v2__ticker-track,
  .df-footer-v2__float-icon,
  .df-footer-v2__audit-ring {
    animation: none !important;
  }
}

/* Testimonials → FAQ spacing */
.df-testimonials-section {
  padding-bottom: 4rem !important;
}

.df-faq-section {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
  border-top: 1px solid rgba(var(--accent-rgb), 0.12);
}

@media (min-width: 768px) {
  .df-testimonials-section {
    padding-bottom: 6rem !important;
  }

  .df-faq-section {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}

@media (min-width: 1200px) {
  .df-testimonials-section {
    padding-bottom: 8rem !important;
  }

  .df-faq-section {
    padding-top: 12rem !important;
    padding-bottom: 11rem !important;
  }

  .df-testimonials-section .testimonials-slider {
    padding-bottom: 4rem;
  }

  .df-testimonials-section .swiper-button-prev,
  .df-testimonials-section .swiper-button-next {
    margin-bottom: 1rem;
  }
}

/* About page — smaller horizontal scroll showcase images */
.page-about .marquee__item.item-large {
  width: 380px !important;
  height: 280px !important;
}

.page-about .marquee__item.item-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--_radius-l, 1.6rem);
}

@media (min-width: 768px) {
  .page-about .marquee__item.item-large {
    width: 440px !important;
    height: 320px !important;
  }
}

@media (min-width: 1200px) {
  .page-about .marquee__item.item-large {
    width: 480px !important;
    height: 350px !important;
  }
}

@media (min-width: 1400px) {
  .page-about .marquee__item.item-large {
    width: 520px !important;
    height: 380px !important;
  }
}

/* Homepage — smaller core expertise images */
#projects .mxd-project-item__media,
#projects .mxd-project-item__preview {
  height: 280px !important;
}

@media (min-width: 768px) {
  #projects .mxd-project-item__media,
  #projects .mxd-project-item__preview {
    height: 360px !important;
  }
}

@media (min-width: 1200px) {
  #projects .mxd-project-item__media,
  #projects .mxd-project-item__preview {
    height: 420px !important;
  }
}

@media (min-width: 1600px) {
  #projects .mxd-project-item__media,
  #projects .mxd-project-item__preview {
    height: 480px !important;
  }
}

/* ── Services stack (process cards) ── */
.df-stack-header {
  margin-bottom: 4rem;
}

.df-stack-header__desc p {
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--t-medium);
  max-width: 42rem;
}

@media (min-width: 768px) {
  .df-stack-header {
    margin-bottom: 5rem;
  }

  .df-stack-header__desc p {
    font-size: 1.8rem;
  }
}

.df-services-stack .df-stack-card {
  position: relative;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.df-services-stack .df-stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.06) 0%,
    transparent 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.df-services-stack .df-stack-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--accent-rgb), 0.07),
    transparent
  );
  animation: df-stack-shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes df-stack-shimmer {
  0%, 100% { left: -100%; opacity: 0; }
  45% { opacity: 1; }
  70% { left: 120%; opacity: 0; }
}

.df-stack-phase {
  position: absolute;
  top: 2.4rem;
  left: 3rem;
  z-index: 2;
  font: normal var(--fw-medium) 6rem/1 var(--_font-accent);
  color: rgba(var(--accent-rgb), 0.18);
  letter-spacing: -0.04em;
  pointer-events: none;
  animation: df-stack-phase-pulse 4s ease-in-out infinite;
}

.df-stack-phase--dark {
  color: rgba(0, 0, 0, 0.12);
}

@keyframes df-stack-phase-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.df-services-stack .mxd-services-stack__controls,
.df-services-stack .mxd-services-stack__title,
.df-services-stack .mxd-services-stack__info {
  position: relative;
  z-index: 2;
}

.df-services-stack .mxd-services-stack__title.width-60 {
  max-width: 52%;
}

.df-services-stack .mxd-services-stack__info.width-60 {
  max-width: 52%;
}

/* Smaller right-side images + gentle float */
.df-services-stack .df-stack-image .service-img {
  object-fit: contain;
  border-radius: var(--_radius-m, 1.2rem);
  animation: df-stack-img-float 5s ease-in-out infinite;
}

.df-services-stack .df-stack-image .service-img-s {
  max-width: 42%;
  max-height: 220px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 992px) {
  .df-services-stack .df-stack-image {
    width: 42% !important;
    left: auto !important;
    right: 0 !important;
    padding: 2rem 3rem 2rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .df-services-stack .df-stack-image .service-img {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    height: auto !important;
    max-height: 72% !important;
    max-width: 100% !important;
    width: auto !important;
  }

  .df-stack-phase {
    top: 3.6rem;
    left: 5rem;
    font-size: 7rem;
  }
}

@media (min-width: 1200px) {
  .df-services-stack .df-stack-image .service-img {
    max-height: 65% !important;
  }
}

@media (min-width: 1600px) {
  .df-services-stack .df-stack-image {
    width: 38% !important;
    padding-right: 4rem;
  }

  .df-services-stack .df-stack-image .service-img {
    max-height: 60% !important;
  }
}

@keyframes df-stack-img-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.df-services-stack .mxd-services-cards__tags {
  margin-bottom: 1rem;
}

.df-services-stack .mxd-services-stack__info p {
  line-height: 1.65;
  max-width: 38rem;
}

/* Hover reveal preview — smaller floating image on list hover */
.hover-reveal__content {
  width: 180px !important;
  height: 180px !important;
}

.hover-reveal__content.hover-reveal-260x260 {
  width: 150px !important;
  height: 150px !important;
}

.hover-reveal__content.hover-reveal-280x340 {
  width: 170px !important;
  height: 210px !important;
}

.hover-reveal__content.hover-reveal-360x440 {
  width: 200px !important;
  height: 245px !important;
}

@media (min-width: 1200px) {
  .hover-reveal__content {
    width: 200px !important;
    height: 200px !important;
  }

  .hover-reveal__content.hover-reveal-260x260 {
    width: 165px !important;
    height: 165px !important;
  }

  .hover-reveal__content.hover-reveal-280x340 {
    width: 185px !important;
    height: 225px !important;
  }

  .hover-reveal__content.hover-reveal-360x440 {
    width: 220px !important;
    height: 270px !important;
  }
}

@media (min-width: 1600px) {
  .hover-reveal__content.hover-reveal-260x260 {
    width: 180px !important;
    height: 180px !important;
  }
}

.hover-reveal__image {
  transform: scale(1, 1.1) !important;
}

.hover-reveal__item:hover .hover-reveal__image,
.hover-reveal__item:focus-visible .hover-reveal__image {
  transform: scale(1, 1) !important;
}

/* Contact form feedback */
.form__reply--error .reply__icon {
  color: var(--accent);
}

.form__reply--error .reply__text a {
  color: var(--accent);
  text-decoration: underline;
}

#contact-form button[type="submit"].is-loading {
  opacity: 0.75;
  pointer-events: none;
}

/* SEO internal links — readable in body copy */
.df-hero-desc a,
.mxd-manifest a,
.inner-headline__text a,
.mxd-section-title__descr a,
.mxd-services-list__descr a,
.mxd-approach-list__descr a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.4);
  text-underline-offset: 0.18em;
  transition: text-decoration-color 0.25s ease, color 0.25s ease;
}

.df-hero-desc a:hover,
.mxd-manifest a:hover,
.inner-headline__text a:hover,
.mxd-section-title__descr a:hover,
.mxd-services-list__descr a:hover,
.mxd-approach-list__descr a:hover,
.df-faq-section .mxd-section-title__hrdescr a:hover {
  text-decoration-color: var(--accent);
  color: var(--accent);
}

.df-faq-section .mxd-section-title__hrdescr a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.4);
  text-underline-offset: 0.18em;
}

/* Hero — animated background + floating stat pills */
.df-hero-premium__bg {
  animation: df-hero-bg-breathe 14s ease-in-out infinite alternate;
}

@keyframes df-hero-bg-breathe {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.92;
    transform: scale(1.02);
  }
}

.df-hero-badge {
  animation: df-badge-glow 4s ease-in-out infinite;
}

@keyframes df-badge-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(var(--accent-rgb), 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.15);
  }
}

.df-hero-stat-card {
  animation: df-hero-stat-float 5.5s ease-in-out infinite;
}

.df-hero-side--left .df-hero-stat-card:nth-child(1) {
  animation-delay: 0s;
}

.df-hero-side--left .df-hero-stat-card:nth-child(2) {
  animation-delay: 0.8s;
}

.df-hero-side--right .df-hero-stat-card:nth-child(1) {
  animation-delay: 0.4s;
}

.df-hero-side--right .df-hero-stat-card:nth-child(2) {
  animation-delay: 1.2s;
}

@keyframes df-hero-stat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .df-hero-premium__bg,
  .df-hero-badge,
  .df-hero-stat-card,
  .df-hero-float,
  .df-services-stack .df-stack-card::after,
  .df-services-stack .df-stack-image .service-img,
  .df-stack-phase {
    animation: none !important;
  }
}

/* Why choose us cards */
.df-why-section {
  position: relative;
}

.df-why-card {
  position: relative;
  height: 100%;
  padding: 3rem 2.8rem;
  border-radius: var(--_radius-m, 1.2rem);
  background: var(--base-tint);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.df-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(var(--accent-rgb), 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.df-why-card:hover,
.df-why-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

html[color-scheme="dark"] .df-why-card:hover,
html[color-scheme="dark"] .df-why-card:focus-within {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.df-why-card:hover::before,
.df-why-card:focus-within::before {
  opacity: 1;
}

.df-why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  animation: df-why-icon-pulse 3s ease-in-out infinite;
}

.df-why-card:nth-child(2) .df-why-card__icon,
.col-md-4:nth-child(2) .df-why-card__icon {
  animation-delay: 0.6s;
}

.col-md-4:nth-child(3) .df-why-card__icon {
  animation-delay: 1.2s;
}

@keyframes df-why-icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.df-why-card__title {
  font-size: 2.2rem !important;
  line-height: 1.25;
  color: var(--t-bright);
  margin: 0 0 1.2rem;
}

.df-why-card__text {
  font-size: 1.5rem;
  line-height: 1.65;
  color: var(--t-medium);
  margin: 0;
}

@media (min-width: 768px) {
  .df-why-card {
    padding: 3.6rem 3.2rem;
  }

  .df-why-card__title {
    font-size: 2.4rem !important;
  }

  .df-why-card__text {
    font-size: 1.6rem;
  }
}

/* FAQ accordion */
.df-faq-section .mxd-section-title__hrdescr p {
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--t-medium);
  max-width: 42rem;
}

.df-faq-list {
  border-top: 2px solid var(--st-bright);
}

.df-faq-item {
  border-bottom: 2px solid var(--st-bright);
}

.df-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 0;
  cursor: pointer;
  list-style: none;
  font: normal var(--fw-medium) 2rem/1.3 var(--_font-accent);
  color: var(--t-bright);
  transition: color 0.25s ease;
}

.df-faq-item__question::-webkit-details-marker {
  display: none;
}

.df-faq-item__question::marker {
  content: "";
}

.df-faq-item[open] .df-faq-item__question,
.df-faq-item__question:hover {
  color: var(--accent);
}

.df-faq-item__icon {
  flex-shrink: 0;
  font-size: 2rem;
  transition: transform 0.35s ease;
}

.df-faq-item[open] .df-faq-item__icon {
  transform: rotate(45deg);
}

.df-faq-item__answer {
  padding: 0 0 2.4rem;
  animation: df-faq-open 0.35s ease;
}

.df-faq-item__answer p {
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--t-medium);
  max-width: 56rem;
  margin: 0;
}

.df-faq-item__answer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.4);
  text-underline-offset: 0.18em;
}

.df-faq-item__answer a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

@keyframes df-faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .df-faq-item__question {
    font-size: 2.2rem;
    padding: 3rem 0;
  }

  .df-faq-item__answer {
    padding-bottom: 3rem;
  }

  .df-faq-item__answer p {
    font-size: 1.8rem;
  }
}

/* About page — internal links */
.page-about .inner-headline__text a,
.page-about .mxd-approach-list__descr a,
.page-about .mxd-res-list__descr a,
.page-about .df-why-orbit__node-card a,
.page-about .df-why-features__card a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.4);
  text-underline-offset: 0.18em;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.page-about .inner-headline__text a:hover,
.page-about .mxd-approach-list__descr a:hover,
.page-about .mxd-res-list__descr a:hover,
.page-about .df-why-orbit__node-card a:hover,
.page-about .df-why-features__card a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ── About: Why Choose Us Orbit Hub ── */
.page-about .df-about-showcase {
  padding-bottom: 5rem !important;
}

@media (min-width: 768px) {
  .page-about .df-about-showcase {
    padding-bottom: 6rem !important;
  }
}

@media (min-width: 1200px) {
  .page-about .df-about-showcase {
    padding-bottom: 7rem !important;
  }
}

.df-why-orbit-section {
  padding-top: 0 !important;
  padding-bottom: 8rem !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 768px) {
  .df-why-orbit-section {
    padding-bottom: 10rem !important;
  }
}

@media (min-width: 1200px) {
  .df-why-orbit-section {
    padding-bottom: 11rem !important;
  }
}

.page-about .df-about-philosophy {
  position: relative;
  z-index: 2;
  padding-top: 2rem !important;
}

@media (min-width: 1200px) {
  .page-about .df-about-philosophy {
    padding-top: 4rem !important;
  }
}

.df-why-orbit__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.df-why-orbit__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 20%, rgba(var(--accent-rgb), 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 75%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(var(--accent-rgb), 0.06) 0%, transparent 45%),
    linear-gradient(180deg, var(--base-tint) 0%, var(--base) 55%, var(--base) 100%);
}

html[color-scheme="dark"] .df-why-orbit__mesh {
  background:
    radial-gradient(ellipse 55% 45% at 12% 20%, rgba(var(--accent-rgb), 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 75%, rgba(var(--accent-rgb), 0.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--base-tint) 0%, var(--base) 55%, var(--base) 100%);
}

.df-why-orbit__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
}

.df-why-orbit__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: df-orbit-orb-drift 12s ease-in-out infinite;
}

.df-why-orbit__orb--1 {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 6%;
  background: rgba(var(--accent-rgb), 0.18);
}

.df-why-orbit__orb--2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 4%;
  background: rgba(var(--accent-rgb), 0.12);
  animation-delay: -4s;
}

.df-why-orbit__orb--3 {
  width: 140px;
  height: 140px;
  top: 45%;
  left: 42%;
  background: rgba(var(--accent-rgb), 0.08);
  animation-delay: -8s;
}

@keyframes df-orbit-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.05); }
  66% { transform: translate(-10px, 12px) scale(0.95); }
}

.df-why-orbit__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.df-why-orbit__panel {
  position: relative;
  z-index: 1;
  padding: 2.8rem 2rem 2.4rem;
  border-radius: 2rem;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(var(--accent-rgb), 0.04) 35%, rgba(255, 255, 255, 0.55) 100%);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.8) inset, 0 24px 64px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(var(--accent-rgb), 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

html[color-scheme="dark"] .df-why-orbit__panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(var(--accent-rgb), 0.05) 35%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.06) inset, 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(var(--accent-rgb), 0.1);
}

@media (min-width: 768px) {
  .df-why-orbit__panel {
    padding: 4rem 3.2rem 3.2rem;
    border-radius: 2.4rem;
  }
}

@media (min-width: 1200px) {
  .df-why-orbit__panel {
    padding: 4.8rem 4.4rem 3.6rem;
  }
}

.df-why-orbit__grid {
  row-gap: 3rem;
}

@media (min-width: 1200px) {
  .df-why-orbit__col-copy {
    padding-right: 2.4rem;
  }

  .df-why-orbit__col-stage {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.df-why-orbit__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.4rem 0.6rem 1rem;
  margin-bottom: 1.6rem;
  border-radius: 10rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.12);
  animation: df-orbit-badge-glow 3s ease-in-out infinite;
}

.df-why-orbit__badge i {
  font-size: 1.4rem;
}

@keyframes df-orbit-badge-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.1); }
  50% { box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.22); }
}

.df-why-orbit__title {
  font-size: 3.4rem !important;
  line-height: 1.08;
  color: var(--t-bright);
  margin: 0 0 1.4rem;
}

.df-why-orbit__title em {
  font-style: normal;
  color: var(--accent);
}

@media (min-width: 768px) {
  .df-why-orbit__title {
    font-size: 4.8rem !important;
  }
}

@media (min-width: 1200px) {
  .df-why-orbit__title {
    font-size: 5.2rem !important;
  }
}

.df-why-orbit__lead {
  font-size: 1.55rem;
  line-height: 1.65;
  color: var(--t-medium);
  margin: 0 0 2rem;
  max-width: 44rem;
}

.df-why-orbit__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(var(--accent-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
}

.df-why-orbit__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(var(--accent-rgb), 0.1);
}

.df-why-orbit__stat:last-child {
  border-right: none;
  padding-right: 0;
}

.df-why-orbit__stat strong {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: var(--t-bright);
  letter-spacing: -0.02em;
}

.df-why-orbit__stat span {
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--t-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .df-why-orbit__stat strong {
    font-size: 2.8rem;
  }
}

.df-why-orbit__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}

.df-why-orbit__regions span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-bright);
  padding: 0.5rem 1.1rem;
  border-radius: 10rem;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  background: rgba(var(--accent-rgb), 0.07);
  animation: df-orbit-pill-glow 4s ease-in-out infinite;
}

.df-why-orbit__regions span i {
  font-size: 1.1rem;
  color: var(--accent);
}

.df-why-orbit__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 2rem;
}

.df-why-orbit__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--t-bright);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.df-why-orbit__link i {
  transition: transform 0.25s ease;
}

.df-why-orbit__link:hover {
  color: var(--accent);
}

.df-why-orbit__link:hover i {
  transform: translateX(4px);
}

.df-why-orbit__stage-wrap {
  position: relative;
  padding: 1.6rem;
  border-radius: 1.8rem;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(var(--accent-rgb), 0.08) 0%, transparent 65%), rgba(var(--base-rgb), 0.4);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

html[color-scheme="dark"] .df-why-orbit__stage-wrap {
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(var(--accent-rgb), 0.06) 0%, transparent 65%), rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 1200px) {
  .df-why-orbit__stage-wrap {
    padding: 2rem;
  }
}

.df-why-orbit__regions span:nth-child(2) { animation-delay: 0.3s; }
.df-why-orbit__regions span:nth-child(3) { animation-delay: 0.6s; }
.df-why-orbit__regions span:nth-child(4) { animation-delay: 0.9s; }
.df-why-orbit__regions span:nth-child(5) { animation-delay: 1.2s; }

@keyframes df-orbit-pill-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(var(--accent-rgb), 0); }
  50% { box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.15); }
}

.df-why-orbit__stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 520px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

@media (min-width: 992px) {
  .df-why-orbit__stage {
    min-height: 580px;
  }
}

@media (min-width: 1200px) {
  .df-why-orbit__stage {
    min-height: 620px;
    max-width: 680px;
  }
}

.df-why-orbit__spokes {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 400px);
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.df-why-orbit__spoke-ring {
  fill: none;
  stroke: rgba(var(--accent-rgb), 0.12);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.df-why-orbit__spoke {
  stroke: rgba(var(--accent-rgb), 0.15);
  stroke-width: 1;
  stroke-dasharray: 3 8;
}

.df-why-orbit__fx {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.df-why-orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.df-why-orbit__ring--outer {
  width: min(82%, 400px);
  aspect-ratio: 1;
  border-color: rgba(var(--accent-rgb), 0.22);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.08);
  animation: df-orbit-ring-spin 40s linear infinite;
}

.df-why-orbit__ring--mid {
  width: min(68%, 330px);
  aspect-ratio: 1;
  border-style: dotted;
  border-color: rgba(var(--accent-rgb), 0.14);
  animation: df-orbit-ring-spin 32s linear infinite reverse;
}

.df-why-orbit__ring--inner {
  width: min(48%, 230px);
  aspect-ratio: 1;
  border-style: dashed;
  animation: df-orbit-ring-spin 24s linear infinite;
}

@keyframes df-orbit-ring-spin {
  to { transform: rotate(360deg); }
}

.df-why-orbit__sweep {
  position: absolute;
  width: min(82%, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(var(--accent-rgb), 0.16) 35deg, transparent 75deg);
  animation: df-orbit-sweep 5s linear infinite;
  opacity: 0.85;
}

@keyframes df-orbit-sweep {
  to { transform: rotate(360deg); }
}

.df-why-orbit__pulse {
  position: absolute;
  width: min(44%, 180px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.28) 0%, transparent 68%);
  animation: df-orbit-pulse 3s ease-in-out infinite;
}

@keyframes df-orbit-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.18); opacity: 1; }
}

.df-why-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--accent-rgb), 0.08) 100%);
  border: 2px solid rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.08), 0 0 48px rgba(var(--accent-rgb), 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

html[color-scheme="dark"] .df-why-orbit__core {
  background: linear-gradient(145deg, rgba(var(--base-rgb), 0.9) 0%, rgba(var(--accent-rgb), 0.12) 100%);
}

.df-why-orbit__core i {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
  animation: df-orbit-core-spin 10s linear infinite;
}

@keyframes df-orbit-core-spin {
  to { transform: rotate(360deg); }
}

.df-why-orbit__core strong {
  font-size: 1.35rem;
  color: var(--t-bright);
  line-height: 1.2;
}

.df-why-orbit__core span {
  font-size: 1rem;
  color: var(--t-muted);
  margin-top: 0.2rem;
}

/* Orbit nodes — desktop circular layout */
.df-why-orbit__node {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  --orbit-radius: clamp(200px, 22vw, 255px);
  --orbit-angle: calc(var(--orbit-i) * 72deg - 54deg);
  transform: rotate(var(--orbit-angle)) translateX(var(--orbit-radius)) rotate(calc(-1 * var(--orbit-angle)));
  transform-origin: center center;
  width: 14.5rem;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.4s ease, z-index 0s;
}

@media (min-width: 1200px) {
  .df-why-orbit__node {
    --orbit-radius: clamp(220px, 17vw, 275px);
    width: 15.5rem;
  }
}

.df-why-orbit__stage.is-live .df-why-orbit__node {
  opacity: 1;
  transition-delay: calc(var(--orbit-i) * 0.12s);
}

.df-why-orbit__node:hover,
.df-why-orbit__node.is-active {
  z-index: 12;
}

.df-why-orbit__node.is-active .df-why-orbit__node-dot {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.35);
}

.df-why-orbit__node-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--accent);
  background: var(--base);
  border: 2px solid rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.2);
  animation: df-orbit-node-bob 4s ease-in-out infinite;
  animation-delay: calc(var(--orbit-i) * 0.5s);
}

@keyframes df-orbit-node-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.df-why-orbit__node-card {
  padding: 1.2rem 1.3rem;
  border-radius: var(--_radius-m, 1.2rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

html[color-scheme="dark"] .df-why-orbit__node-card {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.df-why-orbit__node:hover .df-why-orbit__node-card,
.df-why-orbit__node.is-active .df-why-orbit__node-card {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 12px 36px rgba(var(--accent-rgb), 0.18);
  transform: scale(1.02);
  padding: 1.3rem 1.5rem;
}

.df-why-orbit__node-card h3 {
  font-size: 1.3rem !important;
  line-height: 1.25;
  color: var(--t-bright);
  margin: 0 0 0.4rem;
}

.df-why-orbit__node-card p {
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--t-medium);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.df-why-orbit__node:hover .df-why-orbit__node-card p,
.df-why-orbit__node.is-active .df-why-orbit__node-card p {
  -webkit-line-clamp: 6;
}

.df-why-orbit__stack-bar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--accent-rgb), 0.12);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.df-why-orbit__stack-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: df-orbit-stack-scroll 28s linear infinite;
}

.df-why-orbit__stack-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.65rem 1.3rem;
  border-radius: 10rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--t-bright);
  white-space: nowrap;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
}

.df-why-orbit__stack-track span i {
  font-size: 1.3rem;
  color: var(--accent);
}

@keyframes df-orbit-stack-scroll {
  to { transform: translateX(-50%); }
}

/* Mobile — vertical timeline instead of orbit */
@media (max-width: 1199px) {
  .df-why-orbit__stage-wrap {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .df-why-orbit__spokes {
    display: none;
  }

  .df-why-orbit__stage {
    min-height: auto;
    max-width: none;
    padding: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .df-why-orbit__fx,
  .df-why-orbit__core {
    display: none;
  }

  .df-why-orbit__node {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: 100%;
    display: grid;
    grid-template-columns: 4.4rem 1fr;
    gap: 1.2rem;
    align-items: start;
    opacity: 1;
  }

  .df-why-orbit__node-dot {
    margin: 0;
  }

  .df-why-orbit__node-card {
    padding: 1.4rem 1.6rem;
  }

  .df-why-orbit__node-card h3 {
    font-size: 1.7rem !important;
    margin: 0 0 0.5rem;
  }

  .df-why-orbit__node-card p {
    font-size: 1.35rem;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }

  .df-why-orbit__stat strong {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .df-why-orbit__stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .df-why-orbit__stat {
    border-right: none;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
    padding-bottom: 1rem;
    padding-right: 0;
  }

  .df-why-orbit__stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-why-orbit__ring,
  .df-why-orbit__sweep,
  .df-why-orbit__pulse,
  .df-why-orbit__core i,
  .df-why-orbit__node-dot,
  .df-why-orbit__regions span,
  .df-why-orbit__orb,
  .df-why-orbit__badge,
  .df-why-orbit__stack-track {
    animation: none !important;
  }

  .df-why-orbit__canvas {
    display: none;
  }
}

/* About: Why Choose Us — aligned feature rail (replaces orbit) */
.df-why-features {
  position: relative;
  width: 100%;
  max-width: 52rem;
  margin-left: auto;
}

.df-why-features__hub {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  margin-bottom: 2rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.03) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.08);
}

.df-why-features__hub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 2.2rem;
  color: var(--accent);
  background: var(--base);
  border: 2px solid rgba(var(--accent-rgb), 0.35);
  animation: df-orbit-core-spin 10s linear infinite;
}

.df-why-features__hub-text strong {
  display: block;
  font-size: 1.5rem;
  color: var(--t-bright);
  line-height: 1.2;
}

.df-why-features__hub-text span {
  font-size: 1.15rem;
  color: var(--t-muted);
}

.df-why-features__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.2rem;
  position: relative;
}

.df-why-features__list::before {
  content: "";
  position: absolute;
  left: 2.15rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.5) 0%, rgba(var(--accent-rgb), 0.12) 100%);
  border-radius: 2px;
}

.df-why-features__item {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 1.4rem;
  align-items: start;
  padding-bottom: 1.2rem;
}

.df-why-features__item:last-child {
  padding-bottom: 0;
}

.df-why-features__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--accent);
  background: var(--base);
  border: 2px solid rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.1);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.df-why-features__item.is-active .df-why-features__marker,
.df-why-features__item:hover .df-why-features__marker {
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.28);
  transform: scale(1.04);
}

.df-why-features__card {
  padding: 1.4rem 1.6rem;
  border-radius: var(--_radius-m, 1.2rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

html[color-scheme="dark"] .df-why-features__card {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.df-why-features__item.is-active .df-why-features__card,
.df-why-features__item:hover .df-why-features__card {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 10px 32px rgba(var(--accent-rgb), 0.12);
  transform: translateX(4px);
}

.df-why-features__card h3 {
  font-size: 1.45rem !important;
  line-height: 1.25;
  color: var(--t-bright);
  margin: 0 0 0.5rem;
}

.df-why-features__card p {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--t-medium);
  margin: 0;
}

@media (min-width: 1200px) {
  .df-why-features {
    margin-right: 0;
  }

  .df-why-features__card h3 {
    font-size: 1.5rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-why-features__hub-icon {
    animation: none !important;
  }
}

/* ── Global slide-in inquiry form ── */
body.df-slide-form-open {
  overflow: hidden;
}

.df-slide-form__trigger {
  position: fixed;
  right: 3rem;
  bottom: 10.2rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.4rem 0 1.1rem;
  height: 4.6rem;
  border: none;
  border-radius: 10rem;
  cursor: pointer;
  color: #fff;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(var(--accent-rgb), 0.85) 100%);
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.df-slide-form__trigger i {
  font-size: 2.2rem;
}

.df-slide-form__trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(var(--accent-rgb), 0.45);
}

.df-slide-form__trigger-label {
  display: none;
}

@media (min-width: 576px) {
  .df-slide-form__trigger-label {
    display: inline;
  }
}

@media (min-width: 768px) {
  .df-slide-form__trigger {
    bottom: 10.6rem;
  }
}

.df-slide-form {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.df-slide-form.is-open {
  pointer-events: auto;
}

.df-slide-form__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.df-slide-form.is-open .df-slide-form__backdrop {
  opacity: 1;
}

.df-slide-form__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 40rem;
  height: 100%;
  max-height: 100dvh;
  background: var(--base);
  border-left: 1px solid rgba(var(--accent-rgb), 0.12);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.12);
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

html[color-scheme="dark"] .df-slide-form__panel {
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
}

.df-slide-form.is-open .df-slide-form__panel {
  transform: translateX(0);
}

.df-slide-form__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
}

.df-slide-form__title {
  margin: 0;
  font-size: 2rem !important;
  line-height: 1.2;
  color: var(--t-bright);
}

.df-slide-form__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.2rem 1.6rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.df-slide-form__foot {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 1.6rem 1.4rem;
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
  background: var(--base);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

html[color-scheme="dark"] .df-slide-form__foot {
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.df-slide-form__foot[hidden] {
  display: none !important;
}

.df-slide-form__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--t-bright);
  cursor: pointer;
  font-size: 1.8rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.df-slide-form__close:hover {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.35);
  transform: rotate(90deg);
}

.df-slide-form__reply {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.df-slide-form__reply[hidden] {
  display: none !important;
}

.df-slide-form__reply i {
  font-size: 2rem;
  flex-shrink: 0;
}

.df-slide-form__reply--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--t-bright);
}

.df-slide-form__reply--success i {
  color: #22c55e;
}

.df-slide-form__reply--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--t-bright);
}

.df-slide-form__reply--error i {
  color: #ef4444;
}

.df-slide-form__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.df-slide-form__form[hidden] {
  display: none !important;
}

.df-slide-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 480px) {
  .df-slide-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.df-slide-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.df-slide-form__field span {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--t-bright);
}

.df-slide-form__field span em {
  font-style: normal;
  color: var(--accent);
}

.df-slide-form__field input,
.df-slide-form__field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--t-bright);
  background: var(--base-tint);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}

.df-slide-form__field textarea {
  min-height: 5.2rem;
}

.df-slide-form__field input:focus,
.df-slide-form__field textarea:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.df-slide-form__field input::placeholder,
.df-slide-form__field textarea::placeholder {
  color: var(--t-muted);
}

.df-slide-form__submit {
  width: 100%;
  justify-content: center;
}

.df-slide-form__submit.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.df-slide-form__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  border-radius: 10rem;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--t-bright);
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  transition: background 0.25s ease, transform 0.25s ease;
}

.df-slide-form__whatsapp:hover {
  background: rgba(37, 211, 102, 0.16);
  transform: translateY(-1px);
  color: var(--t-bright);
}

.df-slide-form__whatsapp i {
  font-size: 2.2rem;
  color: #25d366;
}

@media (max-width: 575px) {
  .df-slide-form__trigger {
    right: 1.6rem;
    bottom: 9.2rem;
    width: 4.6rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .btn-to-top {
    right: 1.6rem !important;
    bottom: 1.6rem !important;
  }

  .df-slide-form__panel {
    max-width: 100%;
  }

  .df-slide-form__head,
  .df-slide-form__body,
  .df-slide-form__foot {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-slide-form__panel,
  .df-slide-form__backdrop,
  .df-slide-form__trigger {
    transition: none !important;
  }

  .df-slide-form.is-open .df-slide-form__panel {
    transform: translateX(0);
  }
}
