/*
Theme Name: Digital Commerce Agency
Theme URI: https://example.com
Author: Your Agency
Author URI: https://example.com
Description: A clean, Apple-inspired one-page agency theme with parallax scrolling, built for digital commerce agencies offering sourcing & quality management, management consulting, and custom development (PrestaShop, Magento, Shopware).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dca
*/

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  box-sizing: border-box;
}

:root {
  --dca-black: #0a0a0c;
  --dca-dark: #111113;
  --dca-gray-900: #1d1d1f;
  --dca-gray-700: #424245;
  --dca-gray-500: #6e6e73;
  --dca-gray-300: #d2d2d7;
  --dca-gray-100: #f5f5f7;
  --dca-white: #ffffff;
  --dca-blue: #0071e3;
  --dca-blue-dark: #0058b0;
  --dca-radius: 20px;
  --dca-max: 1200px;
  --dca-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--dca-font);
  color: var(--dca-gray-900);
  background: var(--dca-white);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

.dca-container {
  max-width: var(--dca-max);
  margin: 0 auto;
  padding: 0 24px;
}

.dca-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--dca-blue);
  margin-bottom: 14px;
  display: inline-block;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.dca-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

/* Black & white button system */
.dca-btn-primary {
  background: #000;
  color: #fff;
  border-color: #000;
}
.dca-btn-primary:hover {
  background: #2d2d2f;
  transform: translateY(-1px);
}

/* Inverted (white) primary — used on dark/photo backgrounds for contrast */
.dca-btn-invert {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.dca-btn-invert:hover {
  background: #e8e8ed;
  transform: translateY(-1px);
}

.dca-btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.dca-btn-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.dca-btn-dark {
  border-color: var(--dca-gray-900);
  color: var(--dca-gray-900);
}
.dca-btn-dark:hover {
  background: var(--dca-gray-900);
  color: #fff;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.dca-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.dca-nav-inner {
  max-width: var(--dca-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dca-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.dca-logo {
  display: flex;
  align-items: center;
  line-height: 0; /* prevents the image's line-height from adding extra vertical space in the nav */
}
.dca-logo a {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: normal;
  color: #fff;
  transition: color 0.35s ease;
}
.dca-nav.is-scrolled .dca-logo a { color: var(--dca-gray-900); }

/* Custom logo image: always capped to a sensible header size, no matter
   what resolution the uploaded file actually is */
.dca-logo img,
.dca-logo .custom-logo {
  display: block;
  max-height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.dca-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

@media (max-width: 700px) {
  .dca-logo img,
  .dca-logo .custom-logo {
    max-height: 32px;
    max-width: 160px;
  }
}

.dca-menu {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.dca-menu a {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.35s ease, opacity 0.2s ease;
}
.dca-menu a:hover { opacity: 0.7; }
.dca-nav.is-scrolled .dca-menu a { color: var(--dca-gray-900); }

.dca-nav-cta {
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 8px 18px;
  border-radius: 999px;
  transition: all 0.35s ease;
}
.dca-nav.is-scrolled .dca-nav-cta {
  color: #000;
  border-color: #000;
}
.dca-nav-cta:hover { background: #fff; color: #000; }
.dca-nav.is-scrolled .dca-nav-cta:hover { background: #000; color: #fff; }

.dca-burger {
  display: none;
  width: 26px;
  height: 20px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.dca-burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}
.dca-nav.is-scrolled .dca-burger span { background: var(--dca-gray-900); }
.dca-burger span:nth-child(1) { top: 0; }
.dca-burger span:nth-child(2) { top: 9px; }
.dca-burger span:nth-child(3) { top: 18px; }

/* ==========================================================================
   HERO / PARALLAX
   ========================================================================== */
/* Generic container: just establishes a clipped, positioned box.
   NOTE: we intentionally do NOT use CSS background-images or
   background-attachment:fixed here — background-attachment:fixed breaks
   the instant a transform exists anywhere on the same element (which our
   scroll-reveal animation adds), and it's not supported at all in mobile
   Safari. Instead every photo is a plain <img class="dca-parallax-img">
   (just like any other image on the page — so it can never silently fail
   to render), sized larger than its container and nudged up/down by JS
   on scroll for the parallax drift. */
.dca-parallax {
  position: relative;
  overflow: hidden;
}

.dca-parallax-img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  z-index: 0;
  display: block;
}

.dca-hero {
  position: relative;
  overflow: hidden;
  height: 100vh; /* must be an explicit height, not just min-height —
                    percentage heights on the absolutely positioned photo
                    inside only resolve against a definite height */
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #08080a;
}
@supports (height: 100dvh) {
  .dca-hero { height: 100dvh; }
}

.dca-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,7,0.55), rgba(5,5,7,0.85));
  z-index: 1;
  pointer-events: none;
}

.dca-hero-bg-layer {
  position: absolute;
  inset: -10%;
  z-index: 2;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.5) 0, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.35) 0, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255,255,255,0.4) 0, transparent 100%),
    radial-gradient(1px 1px at 85% 80%, rgba(255,255,255,0.3) 0, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 90%, rgba(255,255,255,0.35) 0, transparent 100%);
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.6;
  pointer-events: none;
  will-change: transform;
}

.dca-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 24px;
}

.dca-hero-content .dca-eyebrow { color: #e2e2e6; }

.dca-hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.dca-hero p.lead {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 36px;
}

.dca-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.dca-scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  z-index: 3;
}
.dca-scroll-cue::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: dca-scroll-cue 1.8s ease infinite;
}
@keyframes dca-scroll-cue {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */
.dca-section {
  padding: 130px 0;
  position: relative;
}
.dca-section-dark {
  background: var(--dca-black);
  color: #fff;
}
.dca-section-light {
  background: var(--dca-gray-100);
}
.dca-section-white {
  background: #fff;
}

.dca-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.dca-section-head h2 {
  font-size: clamp(30px, 4.2vw, 52px);
}
.dca-section-head p {
  font-size: 19px;
  color: var(--dca-gray-500);
}
.dca-section-dark .dca-section-head p { color: rgba(255,255,255,0.65); }

/* fade-in on scroll */
.dca-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.3,1), transform 0.9s cubic-bezier(.2,.7,.3,1);
}
.dca-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   DEPARTMENTS OVERVIEW CARDS
   ========================================================================== */
.dca-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dca-card {
  background: #fff;
  border-radius: var(--dca-radius);
  padding: 44px 34px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.dca-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}
.dca-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: #fff;
}
.dca-card-icon svg { width: 28px; height: 28px; }
.dca-card:nth-child(1) .dca-card-icon { background: linear-gradient(135deg,#0071e3,#00c6ff); }
.dca-card:nth-child(2) .dca-card-icon { background: linear-gradient(135deg,#8e2de2,#4a00e0); }
.dca-card:nth-child(3) .dca-card-icon { background: linear-gradient(135deg,#11998e,#38ef7d); }

.dca-card h3 { font-size: 22px; }
.dca-card p { color: var(--dca-gray-500); font-size: 16px; }
.dca-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.dca-card li {
  font-size: 15px;
  color: var(--dca-gray-700);
  padding: 7px 0 7px 24px;
  position: relative;
  border-top: 1px solid var(--dca-gray-100);
}
.dca-card li:first-child { border-top: none; }
.dca-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dca-blue);
}

/* ==========================================================================
   DEPARTMENT DEEP-DIVE (split parallax sections)
   ========================================================================== */
.dca-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.dca-split.reverse .dca-split-visual { order: 2; }
.dca-split.reverse .dca-split-text { order: 1; }

.dca-split-visual {
  border-radius: var(--dca-radius);
  min-height: 460px;
  position: relative;
  overflow: hidden;
  background: #111;
}
.dca-split-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.dca-split-visual .glass-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dca-gray-900);
}

.dca-split-text h3 {
  font-size: clamp(26px, 3vw, 38px);
}
.dca-split-text p {
  font-size: 17px;
  color: var(--dca-gray-500);
}
.dca-split-text .dca-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.dca-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--dca-gray-100);
  color: var(--dca-gray-700);
}
.dca-section-dark .dca-tag {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.dca-section-dark .dca-split-text p { color: rgba(255,255,255,0.65); }

.dca-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dca-gray-900);
  border-bottom: 1.5px solid var(--dca-gray-900);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.dca-learn-more:hover { opacity: 0.6; }
.dca-learn-more--light {
  color: #fff;
  border-bottom-color: #fff;
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.dca-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.dca-stat b {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--dca-blue);
}
.dca-stat span {
  font-size: 14px;
  color: var(--dca-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.dca-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dca-step {
  padding: 30px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
}
.dca-step .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--dca-blue);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.dca-step h4 { font-size: 18px; }
.dca-step p { font-size: 14.5px; color: var(--dca-gray-500); margin: 0; }

/* ==========================================================================
   DEPARTMENT PAGE — intro statement + highlights grid
   ========================================================================== */
.dca-intro-statement {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--dca-gray-900);
}

.dca-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dca-highlight-card {
  padding: 32px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
}
.dca-highlight-card .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--dca-blue);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.dca-highlight-card h4 { font-size: 18px; }
.dca-highlight-card p { font-size: 14.5px; color: var(--dca-gray-500); margin: 0; }

@media (max-width: 900px) {
  .dca-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dca-highlights-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA BAND (parallax)
   ========================================================================== */
.dca-cta-band {
  padding: 150px 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,113,227,0.4), transparent 60%),
    linear-gradient(180deg,#08080a,#000);
}
.dca-cta-band h2 { font-size: clamp(30px, 5vw, 54px); }
.dca-cta-band p { color: rgba(255,255,255,0.7); font-size: 19px; margin-bottom: 34px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.dca-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.dca-contact-info h3 { font-size: 26px; }
.dca-contact-info p { color: var(--dca-gray-500); }
.dca-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.dca-contact-item .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--dca-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dca-contact-item strong { display: block; font-size: 15px; }
.dca-contact-item span { color: var(--dca-gray-500); font-size: 14.5px; }

.dca-contact-locations .dca-location-block {
  margin-top: 12px;
}
.dca-contact-locations .dca-location-block:first-of-type {
  margin-top: 8px;
}
.dca-contact-locations .dca-location-block strong {
  font-size: 14.5px;
  margin-bottom: 2px;
}
.dca-location-line {
  display: block;
  color: var(--dca-gray-500);
  font-size: 14px;
  line-height: 1.6;
}
.dca-location-line a {
  color: var(--dca-gray-700);
  text-decoration: none;
}
.dca-location-line a:hover {
  color: var(--dca-blue);
  text-decoration: underline;
}

.dca-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--dca-radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.dca-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dca-gray-700);
  display: block;
  margin-bottom: 6px;
}
.dca-form input,
.dca-form select,
.dca-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--dca-gray-300);
  font-family: var(--dca-font);
  font-size: 15px;
  margin-bottom: 20px;
  background: var(--dca-gray-100);
  transition: border-color 0.2s ease;
}
.dca-form input:focus,
.dca-form select:focus,
.dca-form textarea:focus {
  outline: none;
  border-color: var(--dca-blue);
  background: #fff;
}
.dca-form textarea { min-height: 120px; resize: vertical; }
.dca-form button { width: 100%; justify-content: center; border: none; }
.dca-form-note { font-size: 12.5px; color: var(--dca-gray-500); margin-top: 14px; text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.dca-footer {
  background: var(--dca-black);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
  font-size: 13.5px;
}
.dca-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.dca-footer-brand h4 { color: #fff; font-size: 19px; }
.dca-footer-brand p { max-width: 280px; }

.dca-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.dca-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.dca-social-icon svg { width: 17px; height: 17px; }
.dca-social-icon:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
}
.dca-footer-col h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.dca-footer-col ul { list-style: none; margin: 0; padding: 0; }
.dca-footer-col li { margin-bottom: 10px; }
.dca-footer-col a:hover { color: #fff; }

.dca-footer-locations li { margin-bottom: 18px; }
.dca-footer-locations .dca-location-line {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.6;
}
.dca-footer-locations .dca-location-line a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.dca-footer-locations .dca-location-line a:hover {
  color: #fff;
  text-decoration: underline;
}

.dca-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   LEGAL / INFORMATION PAGE
   ========================================================================== */
.dca-legal-hero {
  padding: 170px 0 60px;
  background: var(--dca-gray-100);
}
.dca-legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-top: 4px;
}

.dca-legal-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dca-gray-700);
}
.dca-legal-content h2 {
  font-size: 26px;
  margin-top: 2em;
}
.dca-legal-content h3 {
  font-size: 20px;
  margin-top: 1.6em;
}
.dca-legal-content p { margin-bottom: 1.2em; }
.dca-legal-content ul,
.dca-legal-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
}
.dca-legal-content li { margin-bottom: 0.5em; }
.dca-legal-content a {
  color: var(--dca-gray-900);
  text-decoration: underline;
}
.dca-legal-content a:hover { color: var(--dca-blue); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .dca-cards { grid-template-columns: 1fr; }
  .dca-split, .dca-split.reverse { grid-template-columns: 1fr; }
  .dca-split.reverse .dca-split-visual,
  .dca-split.reverse .dca-split-text { order: initial; }
  .dca-stats { grid-template-columns: repeat(2,1fr); }
  .dca-steps { grid-template-columns: repeat(2,1fr); }
  .dca-contact-grid { grid-template-columns: 1fr; }
  .dca-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .dca-menu, .dca-nav-cta { display: none; }
  .dca-burger { display: block; }
  .dca-section { padding: 90px 0; }
  .dca-footer-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .dca-reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
