/*
Theme Name: DealerPro
Theme URI: https://dealerpro.theme
Author: DealerPro
Author URI: https://dealerpro.theme
Description: Professional heavy equipment dealer WordPress theme. Dark premium design, built-in listings management, financing & shipping pages, CF7 integration, 2-step setup wizard.
Version: 1.3.41
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dealerpro
Tags: dark, equipment, dealer, listings, one-page, custom-logo
*/

/* ══════════════════════════════════════════════
   CSS VARIABLES
   ══════════════════════════════════════════════ */
:root {
  /* Customizable colors (overridden by admin settings) */
  --dp-accent: #49b857;
  --dp-accent-dark: #2e7d32;
  --dp-accent-soft: color-mix(in srgb, var(--dp-accent) 10%, transparent);
  --dp-accent-border: color-mix(in srgb, var(--dp-accent) 28%, transparent);
  --dp-accent-glow: color-mix(in srgb, var(--dp-accent) 12%, transparent);
  --dp-accent-text: #ffffff;
  --dp-cta: #ff6f00;
  --dp-cta-dark: #e55d00;

  /* Fixed colors (not customizable) */
  --dp-bg: #050505;
  --dp-bg-card: #101010;
  --dp-bg-card-2: #0b0b0b;
  --dp-bg-input: #0d0d0d;
  --dp-text: #ffffff;
  --dp-text-soft: rgba(255, 255, 255, 0.76);
  --dp-text-muted: rgba(255, 255, 255, 0.58);
  --dp-text-faint: rgba(255, 255, 255, 0.38);
  --dp-border: rgba(255, 255, 255, 0.07);
  --dp-border-input: rgba(255, 255, 255, 0.10);

  /* Layout */
  --dp-shell: 1240px;
  --dp-transition: 0.25s ease;
  --dp-radius: 26px;
  --dp-radius-xs: 14px;
  --dp-radius-input: 10px;
  --dp-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
  --dp-shadow-hover: 0 24px 52px rgba(0,0,0,0.40);
  --dp-radius-sm: 18px;

  /* ─── Design tokens (spacing, typography, radius) ─── */
  --dp-space-1: 4px;
  --dp-space-2: 8px;
  --dp-space-3: 12px;
  --dp-space-4: 16px;
  --dp-space-5: 20px;
  --dp-space-6: 24px;
  --dp-space-8: 32px;
  --dp-space-10: 40px;
  --dp-space-12: 48px;
  --dp-space-15: 60px;
  --dp-space-20: 80px;

  --dp-text-xs: 11px;
  --dp-text-sm: 13px;
  --dp-text-base: 15px;
  --dp-text-md: 16px;
  --dp-text-lg: 18px;
  --dp-text-xl: 22px;
  --dp-text-2xl: 28px;
  --dp-text-3xl: 36px;
  --dp-text-4xl: 48px;

  --dp-radius-xs: 8px;
  --dp-radius-sm: 12px;
  --dp-radius-md: 16px;
  --dp-radius-lg: 24px;
  --dp-radius-full: 999px;

  --dp-section-padding: 80px 0;
  --dp-section-padding-mobile: 60px 0;
}

/* ══════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: var(--dp-bg);
  color: var(--dp-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════ */
.dp-shell {
  width: min(100% - 32px, var(--dp-shell));
  margin: 0 auto;
}

.dp-section {
  position: relative;
  padding: 80px 0;
}

.dp-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1320px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   CARDS & SECTION WRAPPERS
   ══════════════════════════════════════════════ */
.dp-card {
  position: relative;
  background: linear-gradient(180deg, var(--dp-bg-card) 0%, var(--dp-bg-card-2) 100%);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  box-shadow: var(--dp-shadow);
  overflow: hidden;
}

.dp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, var(--dp-accent-glow), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.dp-card:hover::before {
  opacity: 0.5;
}

.dp-section-wrapper {
  position: relative;
  padding: 64px 54px;
  text-align: center;
  background: linear-gradient(180deg, var(--dp-bg-card) 0%, var(--dp-bg-card-2) 100%);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  box-shadow: var(--dp-shadow);
  overflow: hidden;
}

.dp-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, var(--dp-accent-glow), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.dp-section-wrapper:hover::before {
  opacity: 0.55;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════ */
.dp-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--dp-accent-soft);
  border: 1px solid var(--dp-accent-border);
  color: var(--dp-accent-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.dp-section-head {
  max-width: 920px;
  margin: 0 auto 52px;
  text-align: center;
}

.dp-title {
  margin: 0;
  color: var(--dp-text);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.dp-title--accent {
  display: block;
  color: var(--dp-accent);
}

.dp-line {
  width: 96px;
  height: 4px;
  margin: 22px auto 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dp-accent), var(--dp-accent-dark));
  box-shadow: 0 0 18px color-mix(in srgb, var(--dp-accent) 16%, transparent);
}

.dp-line--left {
  margin-left: 0;
  margin-right: 0;
}

.dp-subtitle {
  color: var(--dp-text-soft);
  font-size: 18px;
  line-height: 1.85;
}

.dp-body {
  color: var(--dp-text-soft);
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 22px;
}

.dp-note {
  color: var(--dp-text-muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.dp-highlight {
  color: var(--dp-accent);
  font-weight: 800;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.dp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  overflow: hidden;
  white-space: nowrap;
}
.dp-btn:hover { transform: translateY(-2px); }
.dp-btn:active { transform: translateY(0); }

/* ── PRIMARY — accent color (main action) ── */
.dp-btn--primary {
  background: linear-gradient(135deg, var(--dp-accent), var(--dp-accent-dark));
  color: var(--dp-accent-fg, #fff);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--dp-accent-dark) 34%, transparent);
}
.dp-btn--primary:hover {
  box-shadow: 0 20px 44px color-mix(in srgb, var(--dp-accent-dark) 48%, transparent);
}

/* ── CTA — urgent action (call, buy) ── */
.dp-btn--cta,
.dp-btn--call {
  background: linear-gradient(135deg, var(--dp-cta), var(--dp-cta-dark));
  color: var(--dp-cta-fg, #fff);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--dp-cta) 32%, transparent);
}
.dp-btn--cta:hover,
.dp-btn--call:hover {
  box-shadow: 0 20px 44px color-mix(in srgb, var(--dp-cta) 46%, transparent);
  color: var(--dp-cta-fg, #fff);
}
.dp-btn--call .dp-btn-icon,
.dp-btn--cta .dp-btn-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: none; stroke: currentColor;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ── GHOST — transparent with border (secondary action) ── */
.dp-btn--ghost,
.dp-btn--secondary {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.dp-btn--ghost:hover,
.dp-btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: color-mix(in srgb, var(--dp-accent) 40%, rgba(255,255,255,0.25));
  color: #fff;
}

/* ── DARK — dark surface (tertiary) ── */
.dp-btn--dark {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.dp-btn--dark:hover {
  background: #242424;
  border-color: rgba(255,255,255,0.22);
}

/* ── WHITE — inverted, for use on colored backgrounds like CTA banner ── */
.dp-btn--white {
  background: #fff;
  color: var(--dp-cta);
  font-weight: 900;
}
.dp-btn--white:hover {
  background: #f5f5f5;
  box-shadow: 0 8px 24px rgba(255,255,255,0.20);
}

/* ─── SIDEBAR BUTTON LAYOUT (single-listing sidebar) ─── */
.dp-sl-btn-v2 {
  min-height: 52px;
  padding: 0 20px;
  font-size: 14px;
  width: 100%;
}
.dp-sl-btn-v2 svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.dp-btn__shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
}

.dp-btn--primary:hover .dp-btn__shine,
.dp-btn--call:hover .dp-btn__shine,
.dp-btn--cta:hover .dp-btn__shine,
.dp-btn--dark:hover .dp-btn__shine {
  left: 145%;
  transition: left 0.7s ease;
}

.dp-btn__arrow {
  transition: transform 0.25s ease;
}

.dp-btn:hover .dp-btn__arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════
   STICKY BAR (universal)
   ══════════════════════════════════════════════ */
.dp-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.dp-sticky-btn {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 800;
  color: #fff !important;
  border: none;
  outline: none;
  cursor: pointer;
  transition: filter 0.2s;
  letter-spacing: 0.3px;
}

.dp-sticky-btn:active {
  filter: brightness(0.88);
}

.dp-sticky-btn svg {
  flex-shrink: 0;
}

.dp-sticky-btn--call {
  background: var(--dp-accent);
}

.dp-sticky-btn--info {
  background: #111;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════════════════════
   CF7 FORMS (unified styling)
   ══════════════════════════════════════════════ */
.wpcf7-form p {
  margin: 0 0 18px;
}

.wpcf7-form label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--dp-accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: var(--dp-bg-input);
  border: 1px solid var(--dp-border-input);
  border-radius: var(--dp-radius-input);
  color: #fff;
  padding: 14px 16px;
  font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* FIX v1.3.9: Improved placeholder contrast for better readability */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.50);
  opacity: 1;
}
/* FIX v1.3.20: Select dropdown with default option color */
.wpcf7-form select,
.wpcf7-form select option {
  color: rgba(255, 255, 255, 0.85);
}
.wpcf7-form select:invalid,
.wpcf7-form select option[value=""] {
  color: rgba(255, 255, 255, 0.50);
}

.wpcf7-form input:not([type="submit"]):not([type="button"]):focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--dp-accent);
  box-shadow: 0 0 0 3px var(--dp-accent-soft);
  background: #0f0f0f;
}

/* FIX v1.3.39: Forțat cu !important ca submit-ul CF7 să păstreze mereu gradientul accent
   pe toate paginile (Financing, Contact, Shipping, Listing Inquiry), indiferent de state
   (normal, hover, focus, active). Anterior se înnegrea pe :focus/:active în unele browsers. */
.wpcf7-form input[type="submit"],
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:focus,
.wpcf7-form input[type="submit"]:active,
.wpcf7-form input[type="submit"]:focus-visible,
.wpcf7-form button[type="submit"],
.wpcf7-form button[type="submit"]:hover,
.wpcf7-form button[type="submit"]:focus,
.wpcf7-form button[type="submit"]:active,
.wpcf7-form button[type="submit"]:focus-visible {
  background: linear-gradient(135deg, var(--dp-accent), var(--dp-accent-dark)) !important;
  color: var(--dp-accent-fg, #fff) !important;
  border: none !important;
}

.wpcf7-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.wpcf7-form select option {
  background: #111;
  color: #fff;
}

.wpcf7-form input[type="submit"] {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dp-accent), var(--dp-accent-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--dp-accent-dark) 34%, transparent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px color-mix(in srgb, var(--dp-accent-dark) 46%, transparent);
}

.wpcf7-not-valid-tip {
  color: #f87171;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: var(--dp-radius-xs) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background: color-mix(in srgb, var(--dp-accent) 12%, transparent) !important;
  color: var(--dp-accent-text);
  border: 1px solid color-mix(in srgb, var(--dp-accent) 24%, transparent) !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
  background: rgba(255, 107, 107, 0.10) !important;
  color: #ffaaaa !important;
  border: 1px solid rgba(255, 107, 107, 0.20) !important;
}

/* Form row (2 columns) */
.dp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════ */
/* FIX v1.3.11: Cards visible by default. JS only adds .is-visible to trigger transition.
   If JS fails entirely, cards remain visible — never invisible. */
.dp-scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* JS adds .dp-scroll-reveal-init to mark "ready to animate" — only then hide initial state */
.dp-scroll-reveal-init {
  opacity: 0;
  transform: translateY(32px);
}

.dp-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .dp-scroll-reveal,
  .dp-scroll-reveal-init {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Hero entrance animations */
/* FIX v1.3.11: CRITICAL — text must be VISIBLE BY DEFAULT.
   Previous approach (opacity:0 + animation) caused text to stay invisible if animation failed.
   New approach: text is fully visible by default. Animation OVERLAYS a reveal effect on top.
   Even if JS/CSS/cache fails completely, text NEVER disappears. */
.dp-reveal {
  opacity: 1;
  animation: dpRevealUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}

.dp-reveal--1 { animation-delay: 0.15s; }
.dp-reveal--2 { animation-delay: 0.35s; }
.dp-reveal--3 { animation-delay: 0.58s; }
.dp-reveal--4 { animation-delay: 0.80s; }

@media (prefers-reduced-motion: reduce) {
  .dp-reveal {
    animation: none;
  }
}

@keyframes dpRevealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════
   GRIDS
   ══════════════════════════════════════════════ */
.dp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ══════════════════════════════════════════════
   TESTIMONIAL CARDS
   ══════════════════════════════════════════════ */
.dp-testimonial {
  position: relative;
  padding: 28px 24px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--dp-bg-card);
  border-radius: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.dp-testimonial:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--dp-accent) 24%, transparent);
}

.dp-testimonial__stars { color: var(--dp-accent); font-size: 16px; letter-spacing: 3px; }

.dp-testimonial__text { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.7; margin: 0; flex: 1; }

.dp-testimonial__footer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: auto; }

.dp-testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--dp-accent); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.dp-testimonial__name { color: #fff; font-size: 14px; font-weight: 800; margin: 0; }

.dp-testimonial__role { color: rgba(255,255,255,0.5); font-size: 12px; margin: 0; }

/* ══════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════ */
.dp-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-xs);
  overflow: hidden;
  transition: border-color 0.3s;
}

.dp-faq-item:hover {
  border-color: color-mix(in srgb, var(--dp-accent) 22%, transparent);
}

.dp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.dp-faq-icon {
  color: var(--dp-accent);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.dp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 22px;
}

.dp-faq-a p {
  margin: 0;
  color: var(--dp-text-soft);
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ══════════════════════════════════════════════
   FULL-WIDTH PAGE FIX
   ══════════════════════════════════════════════ */
body #page {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .widget-area {
  display: none !important;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .dp-title { font-size: clamp(24px, 3.5vw, 38px); letter-spacing: -1px; }
  .dp-subtitle, .dp-body { font-size: 17px; }
  .dp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dp-sticky-bar { display: grid; }
}

@media (max-width: 767px) {
  .dp-shell { width: min(100% - 20px, var(--dp-shell)); }
  .dp-section { padding: 64px 0; }
  .dp-title { font-size: 30px; line-height: 1.08; letter-spacing: -0.9px; }
  .dp-section-head { margin-bottom: 28px; }
  .dp-subtitle, .dp-body { font-size: 15px; line-height: 1.78; }
  .dp-line { margin: 18px auto; }
  .dp-btn { width: 100%; min-height: 56px; font-size: 14px; }
  .dp-grid-4, .dp-grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .dp-grid-2 { grid-template-columns: 1fr; }
  .dp-section-wrapper { padding: 36px 18px; border-radius: var(--dp-radius); }
  .dp-form-row { grid-template-columns: 1fr; }
  .dp-sticky-bar { display: grid; }
  .dp-sticky-btn { font-size: 15px; }
  .dp-testimonial { padding: 24px 18px 20px; }
  .dp-testimonial__text { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .dp-reveal,
  .dp-scroll-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════
   HONEYPOT — hidden from real users, visible to bots
   ══════════════════════════════════════════════ */
.dp-hp-field,
.wpcf7-form .dp-hp-field,
input.dp-hp-field,
p:has(> input.dp-hp-field),
.wpcf7-form p:has(span.dp-hp-field) {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tabindex: -1 !important;
  visibility: hidden !important;
}

/* ══════════════════════════════════════════════
   SKIP TO CONTENT — accessibility
   ══════════════════════════════════════════════ */
.dp-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999999;
  background: var(--dp-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}
.dp-skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ── Focus visible — keyboard navigation ── */
:focus-visible {
  outline: 2px solid var(--dp-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.dp-btn:focus-visible { outline: 2px solid rgba(255,255,255,0.8); outline-offset: 3px; }
.dp-btn--call:focus-visible { outline: 2px solid var(--dp-cta); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ── CF7 submit loading state ── */
.wpcf7-submit {
  position: relative;
  transition: opacity .2s, transform .2s;
}
.wpcf7-submit.wpcf7-submit--loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}
.wpcf7 .wpcf7-spinner {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
  background: none !important;
}
.wpcf7 .wpcf7-spinner::before {
  border-color: rgba(255,255,255,0.3) rgba(255,255,255,0.3) rgba(255,255,255,0.3) #fff !important;
  border-width: 2px !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
}

/* ── Section title responsive size ── */
.dp-title--section {
  font-size: clamp(28px, 4vw, 48px) !important;
}

/* ══════════════════════════════════════════════
   QUICK VIEW — global (used on homepage + inventory)
   ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   QUICK VIEW TRIGGER
   ══════════════════════════════════════════════ */
.dp-inv-card { position: relative; }
.dp-qv-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.96);
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transition: opacity .25s ease, visibility 0s linear .25s;
  z-index: 25;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.dp-inv-card__media:hover .dp-qv-trigger,
.dp-home-fcard__media:hover .dp-qv-trigger,
.dp-qv-trigger:focus-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transition: opacity .25s ease, visibility 0s linear 0s !important;
}

.dp-qv-trigger:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.55);
  transform: translate(-50%, -50%) scale(1.05);
}
.dp-qv-trigger * { pointer-events: none; }

/* ══════════════════════════════════════════════
   QUICK VIEW MODAL
   ══════════════════════════════════════════════ */
.dp-qv-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dp-qv-modal.dp-qv-open { animation: dpQvFadeIn .22s ease forwards; }
.dp-qv-modal.dp-qv-close { animation: dpQvFadeOut .18s ease forwards; }
@keyframes dpQvFadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes dpQvFadeOut { from{opacity:1;} to{opacity:0; pointer-events:none;} }

.dp-qv-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.dp-qv-dialog {
  position: relative;
  z-index: 2;
  background: #111;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--dp-radius);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  overflow: hidden;
  animation: dpQvSlideIn .28s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes dpQvSlideIn { from{transform:scale(0.94) translateY(12px);} to{transform:scale(1) translateY(0);} }

.dp-qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  font-family: inherit;
}
.dp-qv-close:hover { background: rgba(255,255,255,0.22); }

.dp-qv-gallery { display:flex; flex-direction:column; background:#0a0a0a; }
.dp-qv-main-img-wrap { position:relative; flex:1; min-height:280px; overflow:hidden; }
.dp-qv-main-img { width:100%; height:100%; object-fit:cover; transition:opacity .25s ease; position:relative; z-index:1; }
.dp-qv-main-img-wrap::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg,#1a1a1a 25%,#252525 50%,#1a1a1a 75%); background-size:200% 100%; animation:dpQvSkeleton 1.4s infinite; z-index:0; }
.dp-qv-main-img-wrap.dp-qv-loaded::before { display:none; }
@keyframes dpQvSkeleton { 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }
.dp-qv-badge { position:absolute; top:12px; left:12px; padding:5px 12px; border-radius:999px; background:var(--dp-accent); color:var(--dp-accent-fg); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; z-index:3; }
.dp-qv-counter { position:absolute; bottom:12px; right:12px; background:rgba(0,0,0,0.62); color:#fff; font-size:12px; font-weight:700; padding:4px 10px; border-radius:999px; z-index:3; letter-spacing:0.5px; backdrop-filter:blur(4px); }

.dp-qv-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  width:36px; height:36px; background:rgba(0,0,0,0.55);
  border:1px solid rgba(255,255,255,0.15); border-radius:50%;
  color:#fff; font-size:22px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s; z-index:3; font-family:inherit;
}
.dp-qv-nav:hover { background:rgba(0,0,0,0.82); }
.dp-qv-nav--prev { left:10px; }
.dp-qv-nav--next { right:10px; }

.dp-qv-thumbs { display:flex; gap:6px; padding:8px 10px; background:#0d0d0d; overflow-x:auto; flex-shrink:0; scrollbar-width:none; }
.dp-qv-thumbs::-webkit-scrollbar { display:none; }
.dp-qv-thumb { width:58px; height:44px; object-fit:cover; border-radius:6px; cursor:pointer; border:2px solid transparent; transition:border-color .2s, opacity .2s; opacity:0.6; flex-shrink:0; }
.dp-qv-thumb:hover { opacity:0.88; }
.dp-qv-thumb.dp-qv-thumb--active { border-color:var(--dp-accent); opacity:1; }

.dp-qv-info { padding:26px 26px 22px; display:flex; flex-direction:column; overflow-y:auto; scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.10) transparent; }
.dp-qv-title { font-size:21px; font-weight:900; color:#fff; line-height:1.2; margin-bottom:12px; padding-right:22px; }
.dp-qv-price-row { display:flex; align-items:baseline; gap:12px; margin-bottom:14px; flex-wrap:wrap; }
.dp-qv-price { font-size:26px; font-weight:900; color:#fff; letter-spacing:-0.5px; }
.dp-qv-specs { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:14px; }
.dp-qv-spec { display:inline-flex; align-items:center; gap:5px; padding:5px 11px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:999px; font-size:12px; font-weight:700; color:rgba(255,255,255,0.72); }
.dp-qv-desc { font-size:13px; line-height:1.75; color:rgba(255,255,255,0.55); margin:0 0 20px; }
.dp-qv-actions { display:flex; flex-direction:column; gap:9px; margin-top:auto; }
.dp-qv-actions .dp-btn { width:100%; justify-content:center; }
.dp-qv-note { text-align:center; color:rgba(255,255,255,0.25); font-size:11px; margin:8px 0 0; }

@media(max-width:680px) {
  .dp-qv-modal { padding:0; align-items:flex-end; }
  .dp-qv-dialog { grid-template-columns:1fr; border-radius:var(--dp-radius) 20px 0 0; max-height:93vh; animation:dpQvSlideUp .28s cubic-bezier(.34,1.56,.64,1) forwards; }
  @keyframes dpQvSlideUp { from{transform:translateY(32px);} to{transform:translateY(0);} }
  .dp-qv-main-img-wrap { min-height:210px; max-height:210px; }
  .dp-qv-thumbs { display:none; }
  .dp-qv-info { padding:18px 18px 26px; }
  .dp-qv-trigger { opacity:1; pointer-events:auto; transform:translate(-50%,-50%) scale(1); }
}
/* ══════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════ */
.dp-inv-trust {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.dp-inv-trust__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.dp-inv-trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.dp-inv-trust__pill svg {
  color: var(--dp-accent);
  flex-shrink: 0;
}
@media(max-width:767px) {
  .dp-inv-trust__pills { gap: 10px 20px; justify-content: flex-start; }
  .dp-inv-trust__pill { font-size: 12px; }
}

/* ══════════════════════════════════════════════
   REUSABLE COMPONENTS
   ══════════════════════════════════════════════ */

.dp-section-heading {
  margin-bottom: 40px;
}
.dp-section-heading--center { text-align: center; }
.dp-section-heading--left { text-align: left; }
.dp-section-heading__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 16px;
}
.dp-section-heading__title span {
  color: var(--dp-accent);
}
.dp-section-heading__divider {
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dp-accent), var(--dp-accent-dark));
  margin: 0 auto 20px;
}
.dp-section-heading--left .dp-section-heading__divider { margin-left: 0; }
.dp-section-heading__subtitle {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.dp-section-heading--left .dp-section-heading__subtitle { margin-left: 0; }

/* ══════════════════════════════════════════════════════════════
   GLOBAL COMPONENTS — use these classes on ALL pages for consistency
   ══════════════════════════════════════════════════════════════ */

/* ─── INFO CARDS (icon + title + description) ─── */
/* FIX v1.3.27: Homepage "Built for Serious Buyers", Buy Now "What to Expect", Thank You "What Happens Next" now use .dp-feature-card for consistency with Shipping page. The .dp-home-info class was removed — it caused rendering inconsistencies between pages. */

/* ─── REVIEW / TESTIMONIAL ─── */
/* FIX v1.3.9: Premium gradient background + radial glow on hover (consistent with .dp-card) */
.dp-review {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--dp-bg-card) 0%, var(--dp-bg-card-2) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--dp-radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.dp-review::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, color-mix(in srgb, var(--dp-accent) 10%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.dp-review:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--dp-accent) 28%, transparent);
  box-shadow: 0 18px 38px rgba(0,0,0,0.32);
}
.dp-review:hover::before { opacity: 1; }
.dp-review > * { position: relative; z-index: 1; }
.dp-review__stars {
  display: flex;
  gap: 3px;
  color: var(--dp-accent);
}
.dp-review__stars svg {
  filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--dp-accent) 40%, transparent));
}
.dp-review__text {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: italic;
}
.dp-review__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.dp-review__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dp-accent);
  color: var(--dp-accent-fg);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dp-review__name {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: block;
}
.dp-review__role {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

/* ─── CTA BANNER (big call-to-action) ─── */
.dp-cta-banner {
  background: linear-gradient(135deg, var(--dp-cta) 0%, var(--dp-cta-dark) 100%);
  border-radius: 24px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--dp-cta) 35%, transparent);
  margin: 40px 0;
}
.dp-cta-banner__content { color: var(--dp-cta-fg); }
.dp-cta-banner__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--dp-cta-fg);
  line-height: 1.15;
  margin: 0 0 10px;
}
.dp-cta-banner__subtitle {
  font-size: 15px;
  color: var(--dp-cta-fg);
  opacity: 0.88;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}
.dp-cta-banner__btn {
  padding: 16px 32px;
  background: #fff;
  color: var(--dp-cta);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.dp-cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
/* FIX v1.3.19: Ghost button — clearer outline + lower opacity for better hierarchy */
.dp-cta-banner__btn--ghost {
  background: transparent;
  color: var(--dp-cta-fg);
  border: 2px solid color-mix(in srgb, var(--dp-cta-fg) 70%, transparent);
  box-shadow: none;
  opacity: 0.92;
}
.dp-cta-banner__btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--dp-cta-fg);
  opacity: 1;
}
@media (max-width: 860px) {
  .dp-cta-banner { grid-template-columns: 1fr; padding: 36px 28px; text-align: center; }
  .dp-cta-banner__subtitle { margin: 0 auto; }
}

/* ─── FEATURE CARD (why choose us) ─── */
.dp-feature-card {
  background: var(--dp-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  transition: border-color .3s ease, transform .3s ease;
  position: relative;
  overflow: hidden;
}
.dp-feature-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--dp-accent) 28%, transparent);
}
.dp-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, var(--dp-accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.dp-feature-card:hover::after { opacity: 1; }
.dp-feature-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: var(--dp-accent-soft);
  border: 1px solid var(--dp-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dp-accent);
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin: 0 auto 4px;
}
.dp-feature-card__title {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 1;
}
.dp-feature-card__text,
.dp-feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
.dp-feature-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

/* ─── STEP CARD (how it works) ─── */
.dp-step-card {
  background: var(--dp-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.dp-step-card h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px;
}
.dp-step-card p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.dp-step-card__list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  text-align: left;
  width: 100%;
}
.dp-step-card__list li {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.dp-step-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--dp-accent);
  font-weight: 800;
}
.dp-step-card__list a {
  color: var(--dp-accent);
  text-decoration: none;
}
.dp-step-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--dp-accent) 24%, transparent);
}
.dp-step-card__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dp-accent-soft);
  border: 2px solid var(--dp-accent-border);
  color: var(--dp-accent);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.dp-step-card__title {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin: 0;
}
.dp-step-card__text {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ─── FAQ ─── */
.dp-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.dp-faq-item {
  background: var(--dp-bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s;
}
.dp-faq-item--open {
  border-color: color-mix(in srgb, var(--dp-accent) 24%, transparent);
}
.dp-faq-item__q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color .2s;
}
.dp-faq-item__q:hover { color: var(--dp-accent); }
.dp-faq-item__q > span:first-child { flex: 1; }
.dp-faq-item__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--dp-cta);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .3s;
}
.dp-faq-item--open .dp-faq-item__icon { transform: rotate(45deg); }
.dp-faq-item__a { display: none; padding: 0 22px 20px; }
.dp-faq-item--open .dp-faq-item__a { display: block; }
.dp-faq-item__a p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* ─── SECTION HEAD (kicker + title + subtitle) — bulletproof ─── */
.dp-section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.dp-section-head .dp-kicker {
  margin-bottom: 20px;
}
.dp-section-head__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 16px;
}
.dp-section-head__divider {
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dp-accent), var(--dp-accent-dark));
  margin: 0 auto 20px;
}
.dp-section-head__sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

/* ─── KICKER BULLETPROOF (force white on any accent color) ─── */
.dp-kicker {
  color: #ffffff !important;  /* Bulletproof — always visible on accent-soft bg */
}

.dp-qv-trigger:focus-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  outline: 2px solid var(--dp-accent);
  outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL HERO COMPONENT — use .dp-hero on all pages for consistency
   ══════════════════════════════════════════════════════════════ */

/* ─── Hero reveal stagger animations ─── */
/* FIX v1.3.11: Text visible by default, animation only enhances (backwards fill) */
.dp-hero .dp-reveal {
  opacity: 1;
  animation: dpHeroReveal .7s cubic-bezier(.2,.8,.2,1) backwards;
}
.dp-hero .dp-reveal--1 { animation-delay: .15s; }
.dp-hero .dp-reveal--2 { animation-delay: .35s; }
.dp-hero .dp-reveal--3 { animation-delay: .55s; }
.dp-hero .dp-reveal--4 { animation-delay: .75s; }
.dp-hero .dp-reveal--5 { animation-delay: .95s; }

@media (prefers-reduced-motion: reduce) {
  .dp-hero .dp-reveal {
    animation: none;
  }
}

@keyframes dpHeroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

  
  
  

/* ══════════════════════════════════════════════════════════════
   GLOBAL FORM WRAPPER — use on all CF7 form containers
   ══════════════════════════════════════════════════════════════ */
.dp-form-wrap {
  background: var(--dp-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px;
  text-align: left;
}
.dp-form-head {
  margin-bottom: 24px;
}
.dp-form-head h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
}
.dp-form-head p {
  color: rgba(255,255,255,0.50);
  font-size: 14px;
  margin: 0;
}
.dp-form-note {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  margin-top: 16px;
}
.dp-form-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media(max-width:768px) {
  .dp-form-wrap { padding: 24px 18px; }
}

/* ── CF7 field styling (applies globally) ── */
.dp-form-wrap .wpcf7-form-control-wrap { display: block; }
.dp-form-wrap input[type="text"],
.dp-form-wrap input[type="email"],
.dp-form-wrap input[type="tel"],
.dp-form-wrap input[type="number"],
.dp-form-wrap input[type="url"],
.dp-form-wrap select,
.dp-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s ease, background .2s ease;
  box-sizing: border-box;
}
.dp-form-wrap input:not([type="submit"]):not([type="button"]):focus,
.dp-form-wrap select:focus,
.dp-form-wrap textarea:focus {
  outline: none;
  border-color: var(--dp-accent);
  background: #050505;
}
.dp-form-wrap textarea { min-height: 120px; resize: vertical; }
.dp-form-wrap label {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.dp-form-wrap p { margin: 0 0 16px; }
.dp-form-wrap .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 32px;
  background: linear-gradient(135deg, var(--dp-accent), var(--dp-accent-dark));
  color: var(--dp-accent-fg, #fff);
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--dp-accent-dark) 34%, transparent);
  width: 100%;
}
.dp-form-wrap .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px color-mix(in srgb, var(--dp-accent-dark) 48%, transparent);
}
.dp-form-wrap .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
}
.dp-form-wrap .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   HERO — UNIFIED GLOBAL (single source of truth, all pages)
   ══════════════════════════════════════════════════════════════ */
body .dp-hero,
section.dp-hero,
.dp-hero {
  position: relative !important;
  min-height: 600px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  text-align: center !important;
  width: 100% !important;
}
.dp-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: dpHeroZoom 8s ease-out forwards;
  z-index: 0;
}
.dp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}
.dp-hero .dp-hero__inner,
.dp-hero__inner {
  position: relative !important;
  z-index: 2 !important;
  max-width: 940px !important;
  padding: 80px 20px !important;
  margin: 0 auto !important;
  text-align: center !important;
  width: 100% !important;
}
.dp-hero__title {
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.0;
}
.dp-hero__title span {
  display: block;
  color: var(--dp-accent);
}
.dp-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 24px;
}
.dp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 28px;
}
.dp-hero__pills span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: border-color .25s ease, background .25s ease;
}
.dp-hero__pills span:hover {
  background: rgba(255,255,255,0.10);
  border-color: color-mix(in srgb, var(--dp-accent) 40%, rgba(255,255,255,0.20));
}
.dp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.dp-hero__note {
  margin-top: 22px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.3px;
}
@keyframes dpHeroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
@media (max-width: 768px) {
  .dp-hero { min-height: 480px; }
  .dp-hero__title { letter-spacing: -1px; }
  .dp-hero__actions { flex-direction: column; align-items: stretch; }
  .dp-hero__actions .dp-btn { width: 100%; }
  .dp-hero__pills span { width: 100%; text-align: center; }
}
