/* =====================================================
   dercomputerladen – Haupt-Stylesheet
   ===================================================== */

:root {
  --orange: #FF6A00;
  --orange-bright: #FF8C2A;
  --orange-dim: #C04E00;
  --black: #0A0A0A;
  --black-mid: #111111;
  --black-light: #1A1A1A;
  --black-card: #161616;
  --white: #F0EDE8;
  --white-dim: #B0ADA8;
  --grid: rgba(255,106,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── TICKER ── */
.dcl-ticker {
  background: var(--orange);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.dcl-ticker__track {
  display: flex;
  gap: 0;
  animation: dcl-ticker 25s linear infinite;
  white-space: nowrap;
}
.dcl-ticker__item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}

/* ── NAVIGATION ── */
.dcl-nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,106,0,0.18);
  transition: top 0.3s;
}
.dcl-nav.scrolled { top: 0; }

.dcl-nav__logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}
.dcl-nav__logo span { color: var(--orange); }

.dcl-nav__menu {
  display: flex;
  gap: 36px;
  list-style: none;
}
.dcl-nav__menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.dcl-nav__menu a:hover,
.dcl-nav__menu .current-menu-item > a { color: var(--orange); }

.dcl-nav__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--orange);
  color: var(--black) !important;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.dcl-nav__cta:hover { background: var(--orange-bright); transform: scale(1.03); }

/* Hamburger */
.dcl-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.dcl-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.dcl-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dcl-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.dcl-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SHARED ── */
.dcl-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.dcl-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* ── BUTTONS ── */
.dcl-btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--orange);
  color: var(--black);
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.dcl-btn-primary:hover { background: var(--orange-bright); transform: translateY(-2px); }

.dcl-btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.dcl-btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.dcl-btn-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.dcl-btn-dark:hover { background: var(--black-light); }

/* ── HERO ── */
.dcl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 48px 80px;
  overflow: hidden;
}
.dcl-hero__glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,106,0,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.dcl-hero__glow-2 {
  position: absolute;
  bottom: -150px; left: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.dcl-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.dcl-hero__tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,106,0,0.4);
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: dcl-fadeUp 0.6s ease both;
}
.dcl-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  animation: dcl-fadeUp 0.6s 0.1s ease both;
}
.dcl-hero h1 .accent { color: var(--orange); }
.dcl-hero__sub {
  margin-top: 28px;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 480px;
  animation: dcl-fadeUp 0.6s 0.2s ease both;
}
.dcl-hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: dcl-fadeUp 0.6s 0.3s ease both;
}
.dcl-hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  animation: dcl-fadeUp 0.6s 0.4s ease both;
}
.dcl-hero__stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.dcl-hero__stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 4px;
}
.dcl-hero__visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dcl-fadeUp 0.8s 0.2s ease both;
}
.dcl-hero__pc-frame {
  width: min(460px, 42vw);
  height: min(460px, 42vw);
  border: 1px solid rgba(255,106,0,0.25);
  background: var(--black-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dcl-hero__pc-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255,106,0,0.4), transparent 50%, rgba(255,106,0,0.1));
  pointer-events: none;
}
.dcl-hero__pc-icon {
  font-size: 8rem;
  filter: drop-shadow(0 0 40px rgba(255,106,0,0.5));
  animation: dcl-pulse 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.dcl-hero__pc-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--orange);
  border-style: solid;
}
.dcl-hero__pc-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.dcl-hero__pc-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.dcl-hero__pc-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.dcl-hero__pc-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.dcl-hero__scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.6), transparent);
  animation: dcl-scan 3s linear infinite;
}

/* ── SERVICES ── */
.dcl-services {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  background: var(--black-mid);
  border-top: 1px solid rgba(255,106,0,0.12);
  border-bottom: 1px solid rgba(255,106,0,0.12);
}
.dcl-services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.dcl-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dcl-service-card {
  background: var(--black-card);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.dcl-service-card:hover {
  border-color: rgba(255,106,0,0.4);
  transform: translateY(-4px);
}
.dcl-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.dcl-service-card:hover::after { transform: scaleX(1); }
.dcl-service-card__icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.dcl-service-card__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: rgba(255,106,0,0.08);
  line-height: 1;
}
.dcl-service-card__title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--white);
}
.dcl-service-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--white-dim);
}

/* ── PRODUCTS / POSTS ── */
.dcl-products {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
}
.dcl-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.dcl-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dcl-product-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.dcl-product-card:hover {
  border-color: rgba(255,106,0,0.35);
  transform: translateY(-6px);
}
.dcl-product-card__img {
  height: 180px;
  background: var(--black-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.dcl-product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.dcl-product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--black-card));
}
.dcl-product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
  background: var(--orange);
  color: var(--black);
  z-index: 2;
}
.dcl-product-card__info { padding: 20px; }
.dcl-product-card__cat {
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px;
}
.dcl-product-card__name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.02em; margin-bottom: 12px;
  line-height: 1.3; color: var(--white);
  text-decoration: none; display: block;
}
.dcl-product-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--orange);
}
.dcl-product-card__price .old {
  font-size: 0.9rem; color: var(--white-dim);
  text-decoration: line-through;
  margin-left: 8px; font-weight: 400;
}

/* ── WHY US ── */
.dcl-why {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  background: var(--black-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid rgba(255,106,0,0.12);
}
.dcl-why__box {
  aspect-ratio: 4/3;
  background: var(--black-card);
  border: 1px solid rgba(255,106,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}
.dcl-why__box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,106,0,0.06), transparent, transparent);
  animation: dcl-rotate 8s linear infinite;
}
.dcl-why__float {
  position: absolute;
  background: var(--black);
  border: 1px solid rgba(255,106,0,0.35);
  padding: 16px 20px;
  font-family: 'Rajdhani', sans-serif;
}
.dcl-why__float.a { bottom: -20px; right: -20px; }
.dcl-why__float.b { top: -16px; left: -16px; }
.dcl-why__float-val { font-size: 1.8rem; font-weight: 700; color: var(--orange); line-height: 1; }
.dcl-why__float-lbl { font-size: 0.7rem; color: var(--white-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.dcl-why__points { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.dcl-why__point { display: flex; gap: 20px; align-items: flex-start; }
.dcl-why__point-icon {
  width: 44px; height: 44px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.dcl-why__point-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 4px;
}
.dcl-why__point-desc { font-size: 0.88rem; color: var(--white-dim); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.dcl-testimonials {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
}
.dcl-testimonials__header { text-align: center; margin-bottom: 56px; }
.dcl-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dcl-testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px;
  position: relative;
}
.dcl-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 6rem;
  color: rgba(255,106,0,0.1);
  line-height: 1;
}
.dcl-testimonial-card__stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.dcl-testimonial-card__text { font-size: 0.92rem; line-height: 1.75; color: var(--white-dim); margin-bottom: 24px; }
.dcl-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.dcl-testimonial-card__avatar {
  width: 40px; height: 40px;
  background: rgba(255,106,0,0.2);
  border: 1px solid rgba(255,106,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; overflow: hidden;
}
.dcl-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.dcl-testimonial-card__name { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; }
.dcl-testimonial-card__role { font-size: 0.75rem; color: var(--white-dim); }

/* ── CTA BAND ── */
.dcl-cta-band {
  margin: 0 48px 80px;
  background: var(--orange);
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.dcl-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.04) 10px, rgba(0,0,0,0.04) 20px);
}
.dcl-cta-band__text { position: relative; }
.dcl-cta-band__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: var(--black); line-height: 1.05;
}
.dcl-cta-band__sub { font-size: 1rem; color: rgba(0,0,0,0.65); margin-top: 6px; }

/* ── FOOTER ── */
.dcl-footer {
  background: var(--black-mid);
  border-top: 1px solid rgba(255,106,0,0.12);
  padding: 64px 48px 32px;
  position: relative;
  z-index: 1;
}
.dcl-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.dcl-footer__brand {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 1.6rem;
  letter-spacing: 0.04em; margin-bottom: 12px;
}
.dcl-footer__brand span { color: var(--orange); }
.dcl-footer__tagline { font-size: 0.88rem; color: var(--white-dim); line-height: 1.65; margin-bottom: 24px; }
.dcl-footer__socials { display: flex; gap: 10px; }
.dcl-footer__social {
  width: 36px; height: 36px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: var(--white-dim); text-decoration: none;
}
.dcl-footer__social:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }
.dcl-footer__col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.dcl-footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dcl-footer__links a { font-size: 0.88rem; color: var(--white-dim); text-decoration: none; transition: color 0.2s; }
.dcl-footer__links a:hover { color: var(--orange); }
.dcl-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}
.dcl-footer__bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.dcl-footer__bottom a:hover { color: var(--orange); }

/* ── BLOG / SINGLE ── */
.dcl-page-content {
  position: relative;
  z-index: 1;
  padding: 140px 48px 100px;
  max-width: 900px;
  margin: 0 auto;
}
.dcl-page-content h1, .dcl-page-content h2, .dcl-page-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.dcl-page-content h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--orange); }
.dcl-page-content h2 { font-size: 1.8rem; margin-top: 40px; }
.dcl-page-content h3 { font-size: 1.3rem; margin-top: 28px; }
.dcl-page-content p { font-size: 1rem; line-height: 1.8; color: var(--white-dim); margin-bottom: 20px; }
.dcl-page-content a { color: var(--orange); }
.dcl-page-content ul, .dcl-page-content ol {
  padding-left: 24px; color: var(--white-dim);
  font-size: 1rem; line-height: 1.8; margin-bottom: 20px;
}
.dcl-page-content img { max-width: 100%; height: auto; border: 1px solid rgba(255,106,0,0.2); margin: 24px 0; }
.dcl-page-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 12px 24px;
  background: var(--black-card);
  margin: 24px 0; color: var(--white-dim);
  font-style: italic;
}

/* ── ANIMATIONS ── */
@keyframes dcl-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dcl-pulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(255,106,0,0.4)); }
  50%       { filter: drop-shadow(0 0 60px rgba(255,106,0,0.7)); }
}
@keyframes dcl-scan {
  0%   { top: 0%; }
  100% { top: 100%; }
}
@keyframes dcl-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes dcl-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .dcl-products__grid { grid-template-columns: repeat(2, 1fr); }
  .dcl-hero__visual { display: none; }
  .dcl-hero__content { max-width: 100%; }
}
@media (max-width: 900px) {
  .dcl-services__grid { grid-template-columns: repeat(2, 1fr); }
  .dcl-why { grid-template-columns: 1fr; }
  .dcl-why__visual { display: none; }
  .dcl-testimonials__grid { grid-template-columns: 1fr; }
  .dcl-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dcl-cta-band { margin: 0 20px 60px; flex-direction: column; clip-path: none; padding: 40px 32px; }
}
@media (max-width: 768px) {
  .dcl-nav { padding: 0 20px; }
  .dcl-nav__menu { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 20px; gap: 0; border-bottom: 1px solid rgba(255,106,0,0.18); }
  .dcl-nav__menu.open { display: flex; }
  .dcl-nav__menu li { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .dcl-nav__menu a { display: block; padding: 14px 0; }
  .dcl-nav__hamburger { display: flex; }
  .dcl-nav__cta { display: none; }
  .dcl-hero { padding: 120px 20px 60px; }
  .dcl-services { padding: 60px 20px; }
  .dcl-services__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .dcl-services__grid { grid-template-columns: 1fr; }
  .dcl-products { padding: 60px 20px; }
  .dcl-products__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .dcl-products__grid { grid-template-columns: 1fr 1fr; }
  .dcl-testimonials { padding: 60px 20px; }
  .dcl-footer { padding: 48px 20px 24px; }
  .dcl-footer__grid { grid-template-columns: 1fr; }
  .dcl-hero__stats { gap: 24px; }
  .dcl-page-content { padding: 120px 20px 60px; }
}
