/* =========================================================
   CLOTHING FABRIC LANDING – PASTEL BLUE FAMILY (v2)
   Background stays the same, all accents are pastel shades
   of that blue-ish base.
   (Header/footer styles live in another CSS file)
   ========================================================= */

:root {
  /* Base background (unchanged) */
  --dx-bg: #ffffff;

  /* Pastel palette in the same family */
  --dx-primary: #327179; /* #5b7492; /* main pastel blue */
  --dx-mint: #e6f4f1; /* icy mint-blue */
  --dx-ink: #1f2738; /* main text */
  --dx-contrast-text: #ffffff;
  --dx-contrast-text-p: #adbdcc;

  /* Surfaces & decorations */
  --dx-radius: 16px;
  --dx-radius-sm: 12px;
  --dx-hairline: rgba(15, 23, 42, 0.08);
  --dx-shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.12);
  --dx-shadow-strong: 0 18px 40px rgba(15, 23, 42, 0.16);

  --dx-t: 0.22s cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* RESET & BASE -------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--dx-ink);
}

/* Main wrapper background – keep same pastel blue-ish base */
main {
  background: var(--dx-bg);
}

/* Base anchors */
a {
  color: inherit;
  text-decoration: none;
}

/* HEADINGS */
h1,
h2,
h3 {
  font-weight: 700;
}

/* =========================================================
   HERO SECTION (NEW)
   ========================================================= */

.dx-hero {
  padding: 3.25rem 1.5rem 2.25rem;
}

.dx-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.dx-hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: 0.7rem;
}

.dx-hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.dx-hero-lead {
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.1rem;
}

/* HERO BUTTONS */

.dx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: transform var(--dx-t), box-shadow var(--dx-t),
    background var(--dx-t), color var(--dx-t);
}

.dx-btn-primary {
  background: var(--dx-primary);

  color: #ffffff;
}

.dx-btn-primary:hover {
  transform: translateY(-0.5px);
}

.dx-btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--dx-ink);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.dx-btn-ghost:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.dx-btn-full {
  width: 100%;
  justify-content: center;
}

.dx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

/* HERO METRICS */

.dx-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.dx-metric {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  font-size: 0.82rem;
}

.dx-metric-label {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--dx-ink);
}

.dx-metric strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.dx-metric-detail {
  display: block;
}

/* HERO INFO SIDE */

.dx-hero-info {
  position: relative;
  padding-top: 0.3rem;
}

.dx-hero-note {
  background: var(--dx-mint);
  border-radius: var(--dx-radius);
  padding: 1.2rem 1.3rem 1.1rem;
  box-shadow: var(--dx-shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.dx-hero-note h2 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--dx-ink);
}

.dx-hero-note p {
  color: var(--dx-ink);
}

.dx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.dx-hero-tags li {
  list-style: none;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
}

.dx-hero-regions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  font-size: 0.86rem;
}

.dx-hero-regions h3 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

/* =========================================================
   SHARED SECTION HEAD
   ========================================================= */

.dx-section-head {
  text-align: center;
}

.dx-section-head h2 {
  margin: 0 0 0.45rem 0;
  color: var(--dx-ink);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
  line-height: 1.15;
  position: relative;
  display: inline-block;
}

.dx-section-head p {
  margin: 0.35rem auto 0 auto;
  max-width: 780px;
  font-size: 0.93rem;
}

/* =========================================================
   FABRIC CATEGORY MAP
   ========================================================= */

.dx-fabric-map {
  max-width: 1200px;
  margin: 2.7rem auto 2.3rem;
  padding: 0 1.5rem;
}

.dx-fabric-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.dx-fabric-card {
  border-radius: var(--dx-radius);
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--dx-shadow-soft);
  font-size: 0.9rem;
}

.dx-fabric-card header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.dx-fabric-card h3 {
  font-size: 1rem;
}

.dx-fabric-card p {
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
}

.dx-fabric-card ul {
  list-style: none;
  font-size: 0.84rem;
  color: var(--dx-ink);
}

.dx-fabric-card li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
}

.dx-fabric-card li::before {
  content: "•";
  position: absolute;
  left: 0.1rem;
  top: 0;
  color: var(--dx-primary);
}

/* Pills */
.dx-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.95);
}

.dx-pill-sky {
  background: var(--dx-mint);
}

.dx-pill-lilac {
  background: var(--dx-mint);
}

.dx-pill-mint {
  background: var(--dx-mint);
}

.dx-pill-peach {
  background: var(--dx-mint);
}

/* =========================================================
   FULLSCREEN LANDING CAROUSEL (HERO IMAGERY)
   ========================================================= */

.landing-page {
  height: 90vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto 2.6rem;
  border-radius: var(--dx-radius);
  box-shadow: var(--dx-shadow-strong);
  position: relative;
}

/* Slightly stronger type on landing page */
.landing-page * {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 600;
}

/* Slider wrapper */
.landing-page .landing-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.landing-page .landing-item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.25) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

/* Active slides (1 & 2) fill viewport */
.landing-page .landing-item:nth-child(1),
.landing-page .landing-item:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: var(--dx-radius);
  box-shadow: none;
  opacity: 1;
}

/* Peeking slides on the right */
.landing-page .landing-item:nth-child(3) {
  left: 50%;
}
.landing-page .landing-item:nth-child(4) {
  left: calc(50% + 220px);
}
.landing-page .landing-item:nth-child(5) {
  left: calc(50% + 440px);
}
.landing-page .landing-item:nth-child(6) {
  left: calc(50% + 660px);
  opacity: 0;
}

/* Slide caption */
.landing-page .landing-content {
  width: min(30vw, 400px);
  position: absolute;
  top: 75%;
  left: 3rem;
  transform: translateY(-50%);
  font: 400 0.9rem "Lato", system-ui, sans-serif;
  color: #ffffff;
  text-shadow: 0 3px 8px rgba(15, 23, 42, 0.8);
  opacity: 0;
  display: none;
}

.landing-page .landing-content .landing-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  margin-bottom: 0.25rem;
}

.landing-page .landing-content .landing-description {
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.landing-page .landing-content button {
  width: fit-content;
  background-color: rgba(15, 23, 42, 0.3);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  font-size: 0.86rem;
  backdrop-filter: blur(4px);
}

/* Only visible content on active slide */
.landing-page .landing-item:nth-of-type(2) .landing-content {
  display: block;
  animation: landing-show 0.75s ease-in-out 0.3s forwards;
}

@keyframes landing-show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* Carousel controls */
.landing-page .landing-nav {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;
  display: flex;
  gap: 0.6rem;
}

.landing-page .landing-nav .landing-btn {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(15, 23, 42, 0.7);
  padding: 0.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: bottom;
}

/* =========================================================
   BIG FABRIC GALLERY CAROUSEL – VERTICAL VIDEOS
   ========================================================= */

.dx-gallery {
  max-width: 1180px;
  margin: 2.8rem auto;
  padding: 1.6rem;
  border-radius: var(--dx-radius);
  background: #ebeced;
  box-shadow: var(--dx-shadow-strong);
}

.dx-gallery-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--dx-radius);
  background: #ebeced;
}

/* Track slides horizontally, each slide holds one centered video + caption */
.dx-gallery-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.6s var(--dx-t);
}

.dx-gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 1.4rem;
}

/* VERTICAL VIDEO STYLE
   - Centered
   - Portrait aspect ratio
   - Non-stretched
*/
.dx-gallery-media {
  width: auto;
  max-width: min(100%, 580px); /* narrow vertical on desktop */
  aspect-ratio: 4 / 5; /* Instagram portrait-ish */
  max-height: 840px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: black; /* looks nicer while loading */
  margin-bottom: 2rem;
}

/* Gallery navigation arrows */

.dx-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform var(--dx-t), box-shadow var(--dx-t),
    background var(--dx-t);
  z-index: 2;
}

.dx-gallery-nav.prev {
  left: 1rem;
}

.dx-gallery-nav.next {
  right: 1rem;
}

.dx-gallery-nav:hover {
  transform: translateY(-50%) translateY(-1px);
  background: #ffffff;
}

/* Dots */

.dx-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  margin-top: 2rem;
}

.dx-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  transition: transform var(--dx-t), background var(--dx-t),
    box-shadow var(--dx-t);
}

.dx-gallery-dot.is-active {
  transform: scale(1.4);
  background: var(--dx-primary);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .dx-gallery-slide {
    padding: 1.2rem 0 1.1rem;
  }

  .dx-gallery-media {
    max-width: 75%;
    max-height: 420px;
  }

  .dx-gallery-slide figcaption {
    max-width: 80%;
    font-size: 0.86rem;
  }
}

/* =========================================================
   GLOBAL STRUCTURE (CHINA & BERLIN)
   ========================================================= */

.dx-global {
  background: var(--dx-primary);
  max-width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: auto;
  margin-right: 1rem;
  margin-left: 1rem;
}

.dx-section-head-global {
  text-align: center;
}

.dx-global h2 {
  margin-top: 1.5rem;
  color: var(--dx-contrast-text);
  font-size: 3rem;
}

.dx-global p {
  margin-top: 1.5rem;
  color: var(--dx-contrast-text-p);
}

.dx-global-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dx-global-card {
  background: var(--dx-mint); /* rgba(255, 255, 255, 0.98); */
  border-radius: var(--dx-radius);
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--dx-shadow-soft);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.dx-global-card h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.dx-global-card p {
  font-size: 0.88rem;
  color: var(--dx-ink);
  margin-bottom: 0.45rem;
}

.dx-global-card ul {
  list-style: none;
  font-size: 0.84rem;
}

.dx-global-card li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
}

.dx-global-card li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  top: 0;
  color: var(--dx-primary);
}

/* =========================================================
   PROCESS & SERVICE GRID
   ========================================================= */

.dx-steps {
  max-width: 1180px;
  margin: 2.8rem auto 2.7rem;
  padding: 0 1.5rem;
}

.dx-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.dx-step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--dx-shadow-soft);
  font-size: 0.9rem;
  text-align: left;
}

.dx-step-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.dx-step-card p {
  font-size: 0.88rem;
}

/* Step number badge */
.dx-step-num {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--dx-primary);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.3);
}

/* Service grid under steps */
.dx-service-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dx-service-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--dx-radius-sm);
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
}

.dx-service-card h3 {
  font-size: 0.96rem;
  margin-bottom: 0.25rem;
}

.dx-service-card p {
  font-size: 0.88rem;
}

/* =========================================================
   FAQ – dé Fabrics
   ========================================================= */

.dx-faq {
  max-width: 980px;
  margin: 3rem auto 3.5rem;
  padding: 0 1.5rem;
}

.dx-faq .dx-section-head {
  text-align: center;
}

.dx-faq .dx-section-head h2 {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.dx-faq .dx-section-head p {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 32rem;
}

/* FAQ cards */

.faqs-container {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq {
  position: relative;
  padding: 1rem 1.1rem 0.9rem 1.1rem;
  border-radius: var(--dx-radius-md, 0.75rem);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--dx-shadow-soft, 0 14px 30px rgba(15, 23, 42, 0.08));
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.15s ease;
}

.faq.active {
  border-color: var(--dx-primary);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* Optional subtle background flourish when active */
.faq.active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dx-mint);
  pointer-events: none;
  z-index: 0;
}

/* Titles & text */

.faq-title {
  margin: 0 2.4rem 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
  position: relative;
  z-index: 1;
}

.faq-text {
  display: none;
  margin: 0.55rem 0 0.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
  position: relative;
  z-index: 1;
}

.faq.active .faq-text {
  display: block;
}

/* Toggle button */

.faq-toggle {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  height: 30px;
  width: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background-color: #f9fafb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0;
  z-index: 2;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    transform 0.12s ease;
}

.faq-toggle:focus {
  outline-offset: 2px;
}

.faq-toggle .fa-times {
  display: none;
}

.faq-toggle .fa-chevron-down {
  color: #6b7280;
}

.faq.active .faq-toggle {
  background-color: var(--dx-primary);
  border-color: #111827;
  transform: translateY(-1px);
}

.faq.active .faq-toggle .fa-times {
  display: block;
  color: #e5e7eb;
}

.faq.active .faq-toggle .fa-chevron-down {
  display: none;
}

/* Responsive tweaks */

@media (max-width: 640px) {
  .dx-faq {
    padding: 0 1.1rem;
  }

  .faq {
    padding: 0.95rem 0.85rem 0.85rem 0.85rem;
  }

  .faq-title {
    margin-right: 2.1rem;
    font-size: 0.96rem;
  }

  .faq-text {
    font-size: 0.88rem;
  }
}

/* =========================================================
   CONTACT BAND
   ========================================================= */

.dx-contact-band {
  max-width: 1180px;
  margin: 2.8rem auto 3.4rem;
  padding: 0 1.5rem;
}

.dx-contact-inner {
  border-radius: var(--dx-radius);
  background: var(--dx-primary);
  color: var(--dx-contrast-text);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--dx-shadow-strong);
  padding: 1.6rem 1.7rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 1.8rem;
}

.dx-contact-copy h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.dx-contact-copy p {
  font-size: 0.94rem;
  color: var(--dx-contrast-text-p);
  margin-bottom: 0.8rem;
}

.dx-contact-points {
  list-style: none;
  font-size: 0.88rem;
  color: var(--dx-contrast-text-p);
}

.dx-contact-points li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.dx-contact-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  font-size: 0.76rem;
  color: var(--dx-primary);
}

/* Contact form */
.dx-contact-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--dx-radius-sm);
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--dx-shadow-soft);
  font-size: 0.9rem;
}

.dx-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.dx-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.6rem;
}

.dx-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dx-ink);
}

.dx-field input,
.dx-field select,
.dx-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 0.5rem 0.6rem;
  font-size: 0.86rem;
  font-family: inherit;
  outline: none;
  background: #f9fbff;
  transition: border-color var(--dx-t), box-shadow var(--dx-t),
    background var(--dx-t);
}

.dx-field input:focus,
.dx-field select:focus,
.dx-field textarea:focus {
  border-color: var(--dx-primary);
  box-shadow: 0 0 0 1px rgba(125, 157, 255, 0.6);
  background: #ffffff;
}

.dx-field textarea {
  resize: vertical;
  min-height: 120px;
}

.dx-contact-footnote {
  font-size: 0.8rem;
  margin-top: 0.6rem;
}

.dx-contact-message {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.dx-contact-message--success {
  color: var(--dx-primary);
}

.dx-contact-message--error {
  color: #b91c1c; /* red */
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .dx-hero-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  }

  .dx-fabric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dx-global-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dx-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dx-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dx-contact-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 800px) {
  .dx-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }

  .dx-hero-info {
    order: 2;
  }

  .landing-page {
    height: 70vh;
    max-width: 94%;
  }

  .dx-global-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dx-service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dx-contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .dx-hero {
    padding-inline: 1.1rem;
  }

  .dx-fabric-map,
  .dx-global,
  .dx-steps,
  .dx-faq,
  .dx-contact-band {
    padding-inline: 1.1rem;
  }

  .dx-fabric-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dx-steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dx-service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dx-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dx-contact-inner {
    padding: 1.2rem 1.1rem;
  }

  .dx-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-page .landing-content {
    visibility: hidden;
  }

  .dx-gallery {
    margin-inline: 1.1rem;
  }

  .dx-gallery-slide img {
    max-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
