/*
Theme Name:   Double P Child
Theme URI:    https://doublepdevelopment.com
Description:  Child theme of Astra for Double P Development
Author:       Double P Development
Author URI:   https://doublepdevelopment.com
Template:     astra
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  doublep-child
*/

/* =========================================================
   DESIGN TOKENS — Double P Brand (Trust Navy + Gold)
   ========================================================= */
:root {
  --dp-bg:           #FFFFFF;
  --dp-text:         #0F172A;
  --dp-border:       #E5E7EB;
  --dp-primary:      #0B1F3A;
  --dp-primary-hov:  #0A2540;
  --dp-accent:       #C6A15B;
  --dp-alt-bg:       #F7F7F7;
  --dp-success:      #16A34A;
  --dp-warning:      #F59E0B;

  --dp-font-heading: 'Montserrat', sans-serif;
  --dp-font-body:    'Inter', sans-serif;
}

/* =========================================================
   GLOBAL RESETS & BASE
   ========================================================= */
body {
  font-family: var(--dp-font-body);
  color: var(--dp-text);
  background-color: var(--dp-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--dp-font-heading);
  font-weight: 700;
  color: var(--dp-primary);
  line-height: 1.2;
}

a {
  color: var(--dp-primary);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--dp-accent);
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   TYPOGRAPHY SCALE
   ========================================================= */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  font-family: var(--dp-font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--dp-text);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.dp-btn,
.wp-block-button__link,
.ast-button,
.menu-item .ast-custom-button {
  display: inline-block;
  font-family: var(--dp-font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
}

/* Primary CTA */
.dp-btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link {
  background-color: var(--dp-primary);
  color: #fff !important;
}

.dp-btn-primary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background-color: var(--dp-primary-hov);
  color: #fff !important;
}

/* Secondary / Outline */
.dp-btn-outline {
  background-color: transparent;
  color: var(--dp-primary) !important;
  border: 2px solid var(--dp-primary);
}

.dp-btn-outline:hover {
  background-color: var(--dp-primary);
  color: #fff !important;
}

/* Accent / Gold */
.dp-btn-accent {
  background-color: var(--dp-accent);
  color: #fff !important;
}

.dp-btn-accent:hover {
  background-color: #b08c45;
  color: #fff !important;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header,
#masthead,
.ast-header-wrap {
  background-color: var(--dp-primary) !important;
}

.ast-primary-header-bar {
  background-color: var(--dp-primary) !important;
}

/* Nav links */
.main-header-menu a,
.ast-header-navigation .menu-link {
  color: #fff !important;
  font-family: var(--dp-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.main-header-menu a:hover,
.ast-header-navigation .menu-link:hover {
  color: var(--dp-accent) !important;
}

/* Sticky header CTA button */
.ast-header-custom-item .dp-btn-cta,
.header-cta-btn {
  background-color: var(--dp-primary);
  color: #fff !important;
  border: 2px solid var(--dp-accent);
  font-family: var(--dp-font-heading);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.ast-header-custom-item .dp-btn-cta:hover,
.header-cta-btn:hover {
  background-color: var(--dp-accent);
  border-color: var(--dp-accent);
}

/* Logo */
.site-logo,
.ast-logo-img {
  max-height: 56px;
}

/* =========================================================
   ASTRA OVERRIDES
   ========================================================= */

/* Entry content links */
.entry-content a {
  color: var(--dp-primary);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--dp-accent);
}

/* Sidebar widget titles */
.widget-title {
  font-family: var(--dp-font-heading);
  font-weight: 700;
  color: var(--dp-primary);
}

/* =========================================================
   SECTION UTILITIES
   ========================================================= */
.dp-section {
  padding: 5rem 0;
}

.dp-section--alt {
  background-color: var(--dp-alt-bg);
}

.dp-section--navy {
  background-color: var(--dp-primary);
  color: #fff;
}

.dp-section--navy h1,
.dp-section--navy h2,
.dp-section--navy h3,
.dp-section--navy p {
  color: #fff;
}

.dp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.dp-hero {
  position: relative;
  min-height: 600px;
  background-color: var(--dp-primary);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.dp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92) 50%, rgba(198,161,91,0.15) 100%);
  z-index: 1;
}

.dp-hero__content {
  position: relative;
  z-index: 2;
}

.dp-hero__eyebrow {
  font-family: var(--dp-font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dp-accent);
  margin-bottom: 1rem;
}

.dp-hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.dp-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 560px;
  margin-bottom: 2rem;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.dp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dp-card {
  background: #fff;
  border: 1px solid var(--dp-border);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dp-card:hover {
  box-shadow: 0 8px 32px rgba(11,31,58,0.1);
  transform: translateY(-3px);
}

.dp-card__icon {
  width: 48px;
  height: 48px;
  color: var(--dp-accent);
  margin-bottom: 1.25rem;
}

.dp-card__title {
  font-family: var(--dp-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dp-primary);
  margin-bottom: 0.75rem;
}

.dp-card__text {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.dp-card__link {
  font-family: var(--dp-font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dp-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.dp-card__link:hover {
  gap: 0.6rem;
  color: var(--dp-primary);
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.dp-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: dp-step;
  position: relative;
}

.dp-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--dp-border);
}

.dp-steps li {
  counter-increment: dp-step;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}

.dp-steps li::before {
  content: counter(dp-step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dp-primary);
  color: #fff;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.dp-testimonial {
  background: var(--dp-alt-bg);
  border-left: 4px solid var(--dp-accent);
  padding: 1.75rem;
  border-radius: 0 8px 8px 0;
}

.dp-testimonial__quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dp-text);
  margin-bottom: 1rem;
}

.dp-testimonial__author {
  font-family: var(--dp-font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dp-primary);
}

/* =========================================================
   ACCORDION / FAQ
   ========================================================= */
.dp-faq details {
  border-bottom: 1px solid var(--dp-border);
  padding: 1rem 0;
}

.dp-faq summary {
  font-family: var(--dp-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dp-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dp-faq summary::-webkit-details-marker {
  display: none;
}

.dp-faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--dp-accent);
  transition: transform 0.2s ease;
}

.dp-faq details[open] summary::after {
  transform: rotate(45deg);
}

.dp-faq details p {
  padding-top: 0.75rem;
  font-size: 0.9375rem;
  color: #4B5563;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.dp-form input,
.dp-form select,
.dp-form textarea {
  width: 100%;
  border: 1px solid var(--dp-border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: var(--dp-font-body);
  font-size: 0.9375rem;
  color: var(--dp-text);
  background: #fff;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.dp-form input:focus,
.dp-form select:focus,
.dp-form textarea:focus {
  outline: none;
  border-color: var(--dp-accent);
  box-shadow: 0 0 0 3px rgba(198,161,91,0.15);
}

.dp-form label {
  display: block;
  font-family: var(--dp-font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dp-primary);
  margin-bottom: 0.4rem;
}

.dp-form .dp-form__group {
  margin-bottom: 1.25rem;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.dp-whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  background-color: #25D366;
  color: #fff !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.dp-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.dp-whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer,
#colophon {
  background-color: var(--dp-primary) !important;
  color: rgba(255,255,255,0.75);
}

.site-footer a,
#colophon a {
  color: var(--dp-accent) !important;
}

.site-footer a:hover,
#colophon a:hover {
  color: #fff !important;
}

.site-footer .widget-title,
#colophon .widget-title {
  color: #fff;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.ast-footer-overlay {
  background-color: var(--dp-primary) !important;
}

/* Footer bottom bar */
.ast-small-footer {
  background-color: rgba(0,0,0,0.2) !important;
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
}

/* =========================================================
   DIVIDER / SEPARATOR
   ========================================================= */
.dp-divider {
  border: none;
  border-top: 1px solid var(--dp-border);
  margin: 3rem 0;
}

.dp-divider--accent {
  border-color: var(--dp-accent);
  width: 64px;
  margin-left: 0;
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.dp-text-accent  { color: var(--dp-accent); }
.dp-text-navy    { color: var(--dp-primary); }
.dp-text-muted   { color: #6B7280; }
.dp-bg-navy      { background-color: var(--dp-primary); }
.dp-bg-alt       { background-color: var(--dp-alt-bg); }
.dp-bg-accent    { background-color: var(--dp-accent); }

.dp-fw-bold      { font-weight: 700; }
.dp-fw-semibold  { font-weight: 600; }
.dp-font-heading { font-family: var(--dp-font-heading); }

.dp-text-center  { text-align: center; }
.dp-text-left    { text-align: left; }

.dp-mt-sm { margin-top: 1rem; }
.dp-mt-md { margin-top: 2rem; }
.dp-mt-lg { margin-top: 4rem; }

.dp-mb-sm { margin-bottom: 1rem; }
.dp-mb-md { margin-bottom: 2rem; }
.dp-mb-lg { margin-bottom: 4rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .dp-section { padding: 3rem 0; }
  .dp-hero { min-height: 480px; }
  .dp-services-grid { grid-template-columns: 1fr; }
  .dp-whatsapp-float { bottom: 1rem; right: 1rem; }
}

/* =========================================================
   DARK THEME — ADDITIONAL DESIGN TOKENS
   ========================================================= */
:root {
  --dp-navy-deep:  #071527;
  --dp-navy-muted: #0B1F3A;   /* same value as --dp-primary */
  --dp-gold:       #C6A15B;   /* same value as --dp-accent  */
  --dp-slate-300:  #CBD5E1;
  --dp-slate-400:  #94A3B8;
  --dp-slate-500:  #64748B;
}

/* =========================================================
   DARK FRONT PAGE BODY
   ========================================================= */
body.doublep-front {
  background-color: var(--dp-navy-deep);
  overflow-x: hidden;
  color: #fff;
}

/* =========================================================
   GLASS MORPHISM UTILITY
   ========================================================= */
.dp-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================================
   GLOW EFFECTS
   ========================================================= */
.dp-gold-glow  { filter: drop-shadow(0 0 8px rgba(198, 161, 91, 0.4)); }
.dp-text-glow  { text-shadow: 0 0 20px rgba(198, 161, 91, 0.2); }

/* =========================================================
   STICKY HEADER — DARK
   ========================================================= */
.dp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
}

.dp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  max-width: 1280px;
  margin: 0 auto;
}

.dp-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.dp-nav__logo-icon {
  font-size: 1.875rem;
  color: var(--dp-gold);
}

.dp-nav__logo-text {
  font-family: var(--dp-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.dp-nav__menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2.5rem;
}

.dp-nav__menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dp-nav__menu a:hover {
  color: var(--dp-gold) !important;
}

/* =========================================================
   HERO — DARK FULL VIEWPORT
   ========================================================= */
.dp-hero--dark {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  /* background-image set via inline CSS custom property */
  background-color: var(--dp-navy-deep);
  background-size: cover;
  background-position: center;
}

.dp-hero--dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to top, var(--dp-navy-deep), transparent);
  pointer-events: none;
  z-index: 1;
}

.dp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 21, 39, 0.4), rgba(7, 21, 39, 1));
  z-index: 0;
}

.dp-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.dp-hero--dark h1 {
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.dp-hero--dark > .dp-hero__inner > p {
  color: var(--dp-slate-300);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.dp-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

/* =========================================================
   EYEBROW / BADGE
   ========================================================= */
.dp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-family: var(--dp-font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dp-gold);
  margin-bottom: 2rem;
}

.dp-eyebrow--glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dp-eyebrow__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--dp-gold);
  flex-shrink: 0;
  animation: dp-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes dp-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* =========================================================
   DARK SECTIONS
   ========================================================= */
.dp-section--dark {
  background-color: var(--dp-navy-deep);
  color: #fff;
}

.dp-section--dark-muted {
  background-color: var(--dp-navy-muted);
  color: #fff;
}

.dp-section--black {
  background-color: #000;
  color: #fff;
}

.dp-section--dark h1,
.dp-section--dark h2,
.dp-section--dark h3,
.dp-section--dark h4,
.dp-section--dark-muted h1,
.dp-section--dark-muted h2,
.dp-section--dark-muted h3,
.dp-section--dark-muted h4 {
  color: #fff;
}

/* =========================================================
   SECTION HEADER — CENTERED
   ========================================================= */
.dp-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dp-section-header__divider {
  width: 6rem;
  height: 4px;
  background-color: var(--dp-gold);
  margin: 0.75rem auto 1.5rem;
  border-radius: 2px;
}

.dp-section-header__sub {
  color: var(--dp-slate-400);
  max-width: 40rem;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.75;
}

/* =========================================================
   DARK CARD — glass on dark background
   ========================================================= */
.dp-card--dark {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.dp-card--dark:hover {
  border-color: rgba(198, 161, 91, 0.5);
  transform: translateY(-8px);
}

.dp-card__icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: rgba(198, 161, 91, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: background-color 0.3s ease;
}

.dp-card--dark:hover .dp-card__icon-wrap {
  background-color: rgba(198, 161, 91, 0.2);
}

.dp-card--dark h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.dp-card--dark p {
  color: var(--dp-slate-400);
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}

/* Service card variant — full-height flex */
.dp-card--service {
  display: flex;
  flex-direction: column;
}

.dp-card--service p {
  flex-grow: 1;
  margin-bottom: 2rem !important;
}

/* =========================================================
   BUTTONS — DARK THEME VARIANTS
   ========================================================= */
.dp-btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--dp-gold);
  color: var(--dp-navy-deep) !important;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(198, 161, 91, 0.2);
}

.dp-btn--gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(198, 161, 91, 0.4);
  color: var(--dp-navy-deep) !important;
}

.dp-btn--gold-lg {
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
}

.dp-btn--glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dp-btn--glass:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.dp-btn--glass-lg {
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
}

.dp-btn--outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  border-radius: 9999px;
  border: 2px solid var(--dp-gold);
  color: var(--dp-gold) !important;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dp-btn--outline-gold:hover {
  background-color: var(--dp-gold);
  color: var(--dp-navy-deep) !important;
}

/* =========================================================
   PROCESS STEPS — HORIZONTAL (5 steps)
   ========================================================= */
.dp-process {
  position: relative;
}

.dp-process__track {
  display: none;
}

.dp-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dp-process__num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dp-gold);
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.dp-process__num--highlight {
  box-shadow: 0 0 0 4px var(--dp-navy-muted), 0 0 0 6px rgba(198, 161, 91, 0.3);
}

.dp-process__step h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.dp-process__step p {
  font-size: 0.75rem;
  color: var(--dp-slate-400);
}

/* =========================================================
   TWO-COLUMN LAYOUT
   ========================================================= */
.dp-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* =========================================================
   CHECKLIST — dark background
   ========================================================= */
.dp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dp-checklist__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(198, 161, 91, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.dp-checklist__text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--dp-slate-300) !important;
  line-height: 1.5;
}

/* =========================================================
   US MAP
   ========================================================= */
.dp-map-wrapper {
  position: relative;
}

.dp-map-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.dp-map-state {
  fill: #1e293b;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 0.5;
  transition: fill 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.dp-map-state:hover {
  fill: var(--dp-gold);
  filter: drop-shadow(0 0 12px rgba(198, 161, 91, 0.6));
  stroke: rgba(255, 255, 255, 0.5);
}

.dp-map-dot {
  fill: var(--dp-gold);
  filter: drop-shadow(0 0 8px rgba(198, 161, 91, 0.4));
  animation: dp-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.dp-map-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.dp-map-legend__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dp-slate-400);
}

.dp-map-legend__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--dp-gold);
  flex-shrink: 0;
}

.dp-map-legend__note {
  font-size: 0.625rem;
  color: var(--dp-slate-500);
  font-style: italic;
}

.dp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* =========================================================
   STAT CARDS
   ========================================================= */
.dp-card--stat {
  text-align: center;
}

.dp-stat__label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dp-slate-400);
  display: block;
  margin-bottom: 0.75rem;
}

.dp-stat__number {
  font-family: var(--dp-font-heading);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--dp-gold);
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
  transition: filter 0.5s ease;
}

.dp-card--stat:hover .dp-stat__number {
  filter: drop-shadow(0 0 15px rgba(198, 161, 91, 0.6));
}

.dp-stat__desc {
  color: var(--dp-slate-300);
  font-weight: 500;
  margin: 0;
}

/* =========================================================
   TESTIMONIAL FILTER TABS
   ========================================================= */
.dp-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.375rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dp-tabs__btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--dp-slate-400);
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: var(--dp-font-heading);
}

.dp-tabs__btn:hover {
  color: #fff;
}

.dp-tabs__btn--active {
  background-color: var(--dp-gold);
  color: var(--dp-navy-deep);
}

/* =========================================================
   TESTIMONIAL CARDS — dark
   ========================================================= */
.dp-card--testimonial {
  background: rgba(7, 21, 39, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.5s ease;
}

.dp-card--testimonial:hover {
  border-color: rgba(198, 161, 91, 0.3);
}

.dp-card--testimonial__quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  color: rgba(198, 161, 91, 0.2);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
  user-select: none;
}

.dp-card--testimonial__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  color: var(--dp-gold);
}

.dp-card--testimonial__text {
  color: var(--dp-slate-300);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 2.5rem;
}

.dp-card--testimonial__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: auto;
}

.dp-card--testimonial__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid rgba(198, 161, 91, 0.3);
  background-color: #334155;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.dp-card--testimonial__name {
  color: #fff;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  margin: 0 0 0.25rem;
}

.dp-card--testimonial__role {
  color: var(--dp-gold);
  font-family: var(--dp-font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

/* =========================================================
   CTA — DARK RADIAL GRADIENT
   ========================================================= */
.dp-cta--dark {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dp-cta--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(198, 161, 91, 0.1), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.dp-cta--dark h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.75rem;
}

.dp-cta--dark > .dp-container > p {
  color: var(--dp-slate-400);
  font-size: 1.125rem;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

/* =========================================================
   FOOTER — DARK CUSTOM
   ========================================================= */
.dp-footer-dark {
  background-color: #000;
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dp-footer-dark__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.dp-footer-dark__brand p {
  color: var(--dp-slate-500);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.dp-footer-dark h4 {
  color: #fff;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.dp-footer-dark ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-footer-dark ul li {
  margin-bottom: 1rem;
}

.dp-footer-dark ul a {
  color: var(--dp-slate-500);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dp-footer-dark ul a:hover {
  color: var(--dp-gold);
}

.dp-footer-dark__social {
  display: flex;
  gap: 1rem;
}

.dp-footer-dark__social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dp-footer-dark__social a:hover {
  color: var(--dp-gold) !important;
}

.dp-footer-dark__newsletter {
  position: relative;
}

.dp-footer-dark__newsletter input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 0.75rem 3.5rem 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--dp-font-body);
  box-sizing: border-box;
}

.dp-footer-dark__newsletter input:focus {
  border-color: var(--dp-gold);
}

.dp-footer-dark__newsletter input::placeholder {
  color: var(--dp-slate-500);
}

.dp-footer-dark__newsletter button {
  position: absolute;
  right: 0.375rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dp-gold);
  color: var(--dp-navy-deep);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.dp-footer-dark__newsletter button:hover {
  transform: translateY(-50%) scale(1.1);
}

.dp-footer-dark__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #475569;
}

.dp-footer-dark__bottom a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dp-footer-dark__bottom a:hover {
  color: #fff;
}

.dp-footer-dark__bottom-links {
  display: flex;
  gap: 2rem;
}

/* =========================================================
   RESPONSIVE — dark theme additions
   ========================================================= */
@media (min-width: 768px) {
  .dp-nav__menu {
    display: flex;
  }

  .dp-footer-dark__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

@media (min-width: 1024px) {
  .dp-process__track {
    display: block;
    position: absolute;
    top: 1.75rem; /* half of step number circle */
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198, 161, 91, 0.3), transparent);
    pointer-events: none;
  }

  .dp-process__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .dp-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

@media (max-width: 767px) {
  .dp-hero--dark {
    min-height: 100svh;
  }

  .dp-card--dark {
    padding: 1.75rem;
  }

  .dp-card--testimonial {
    padding: 1.75rem;
  }

  .dp-tabs {
    border-radius: 1rem;
    flex-direction: column;
    width: 100%;
  }

  .dp-btn--gold-lg,
  .dp-btn--glass-lg {
    font-size: 1rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   HERO — SPLIT (text left + image right)
   ========================================================= */
.dp-hero--split {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background-color: var(--dp-navy-deep);
}

.dp-hero--split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(198, 161, 91, 0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

.dp-hero--split > .dp-container {
  position: relative;
  z-index: 1;
}

.dp-hero--split h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* Reusable lead text used below hero headings */
.dp-lead {
  color: var(--dp-slate-400);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

/* =========================================================
   HERO IMAGE FRAME
   ========================================================= */
.dp-hero__image-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
  position: relative;
}

.dp-hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  display: block;
  transition: transform 0.7s ease;
}

.dp-hero__image-frame:hover img {
  transform: scale(1.05);
}

.dp-hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dp-navy-deep) 0%, transparent 60%);
  pointer-events: none;
}

/* =========================================================
   SERVICE CARD — TOOL BADGE (shared component)
   ========================================================= */
.dp-card__tools {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.dp-card__tools-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(198, 161, 91, 0.7);
  font-family: var(--dp-font-heading);
  font-weight: 700;
}

.dp-card__tools-value {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dp-slate-400);
}

/* =========================================================
   TOOLS STRIP — partner logos / tool names bar
   ========================================================= */
.dp-tools-strip {
  padding: 4rem 0;
  background-color: var(--dp-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dp-tools-strip__heading {
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--dp-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}

.dp-tools-strip__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-tools-strip__item {
  font-family: var(--dp-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  cursor: default;
}

.dp-tools-strip__item:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   PROCESS STEPS — LARGE (bordered, interactive)
   Used on Services page for more prominent step numbers
   ========================================================= */
.dp-process__num--lg {
  width: 5rem;
  height: 5rem;
  font-size: 1.5rem;
  border: 2px solid var(--dp-gold);
  background-color: var(--dp-navy-muted);
  transition: background-color 0.3s ease, color 0.3s ease,
              box-shadow 0.3s ease, transform 0.3s ease;
}

.dp-process__step:hover .dp-process__num--lg {
  background-color: var(--dp-gold);
  color: var(--dp-navy-deep);
  box-shadow: 0 0 20px rgba(198, 161, 91, 0.5);
  transform: scale(1.1);
}

.dp-process__step--lg h4 {
  font-size: 1.0625rem;
}

.dp-process__step--lg p {
  font-size: 0.875rem;
  padding: 0 0.5rem;
}

/* =========================================================
   FAQ — DARK ACCORDION (services page + reusable)
   ========================================================= */
.dp-faq--dark {
  max-width: 48rem;
  margin: 0 auto;
}

.dp-faq--dark details {
  background-color: var(--dp-navy-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease;
}

.dp-faq--dark details[open] {
  border-color: rgba(198, 161, 91, 0.3);
}

.dp-faq--dark summary {
  padding: 1.25rem 1.5rem;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-family: var(--dp-font-heading);
  font-size: 0.9375rem;
  gap: 1rem;
  user-select: none;
}

.dp-faq--dark summary::-webkit-details-marker { display: none; }

.dp-faq--dark summary::after {
  content: 'expand_more';
  font-family: 'Material Symbols Outlined';
  color: var(--dp-gold);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.dp-faq--dark details[open] summary::after {
  transform: rotate(180deg);
}

.dp-faq--dark .dp-faq__answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--dp-slate-400);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* =========================================================
   PAGE HERO — top padding to clear sticky header
   ========================================================= */
.dp-page-hero-pad {
  padding-top: calc(5rem + 80px);
}

/* =========================================================
   LIGHT THEME — base body
   ========================================================= */
body.doublep-light {
  background-color: #fff;
  overflow-x: hidden;
  color: var(--dp-text);
}

/* =========================================================
   LIGHT HEADER
   ========================================================= */
.dp-header--light {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dp-border);
  padding: 1rem 1.5rem;
}

.dp-nav--light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.dp-nav--light .dp-nav__logo-text {
  color: var(--dp-primary);
}

.dp-nav--light .dp-nav__menu a {
  color: rgba(15, 23, 42, 0.7) !important;
}

.dp-nav--light .dp-nav__menu a:hover,
.dp-nav--light .dp-nav__menu .current-menu-item > a {
  color: var(--dp-primary) !important;
}

/* =========================================================
   SECTION BACKGROUNDS — LIGHT
   ========================================================= */
.dp-section--white {
  background-color: #fff;
}

.dp-section--slate {
  background-color: #F8FAFC;
  border-top: 1px solid var(--dp-border);
  border-bottom: 1px solid var(--dp-border);
}

/* =========================================================
   EYEBROW — LIGHT (inline pill badge)
   ========================================================= */
.dp-eyebrow--pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(198, 161, 91, 0.1);
  color: var(--dp-accent);
  font-family: var(--dp-font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

/* =========================================================
   HERO — LIGHT (split layout)
   ========================================================= */
.dp-hero--light {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
  background: #fff;
}

.dp-hero--light h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dp-primary);
  margin-bottom: 1.5rem;
}

.dp-hero--light h1 .dp-text-accent {
  color: var(--dp-accent);
}

.dp-hero--light .dp-lead {
  color: rgba(15, 23, 42, 0.7);
  max-width: 32rem;
}

/* Decorative blur blobs */
.dp-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

/* Hero image with glow frame */
.dp-hero__image-glow {
  position: relative;
}

.dp-hero__image-glow::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(198, 161, 91, 0.3), rgba(11, 31, 58, 0.1));
  border-radius: 1.25rem;
  filter: blur(8px);
  opacity: 0.4;
  z-index: 0;
}

.dp-hero__image-glow > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   BUTTONS — LIGHT THEME VARIANTS
   ========================================================= */
/* Gold button with white text (for light backgrounds) */
.dp-btn--gold-lt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--dp-gold);
  color: #fff !important;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 16px rgba(198, 161, 91, 0.2);
}

.dp-btn--gold-lt:hover {
  background-color: #b08c45;
  color: #fff !important;
  transform: scale(1.05);
}

/* XL variant (for CTA sections) */
.dp-btn--gold-lt-xl {
  font-size: 1.0625rem;
  font-weight: 900;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dp-btn--gold-lt-xl:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(198, 161, 91, 0.3);
}

/* Outline navy button (light bg) */
.dp-btn--outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--dp-border);
  color: var(--dp-primary) !important;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.dp-btn--outline-navy:hover {
  border-color: var(--dp-primary);
  background: #F8FAFC;
  color: var(--dp-primary) !important;
}

/* =========================================================
   FEATURE CARDS — 4-col light grid
   ========================================================= */
.dp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.dp-card--feature {
  background: #fff;
  border: 1px solid var(--dp-border);
  padding: 2rem;
  border-radius: 0.75rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.dp-card--feature:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(198, 161, 91, 0.3);
}

.dp-card--feature__icon {
  width: 3rem;
  height: 3rem;
  background: var(--dp-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.25s ease;
}

.dp-card--feature__icon .material-symbols-outlined {
  color: var(--dp-accent);
  font-size: 1.5rem;
  transition: color 0.25s ease;
}

.dp-card--feature:hover .dp-card--feature__icon {
  background: var(--dp-accent);
}

.dp-card--feature:hover .dp-card--feature__icon .material-symbols-outlined {
  color: #fff;
}

.dp-card--feature h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--dp-primary);
}

.dp-card--feature p {
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   TOOLS SHOWCASE — icon cards
   ========================================================= */
.dp-tools-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem 5rem;
  padding: 3rem 0;
}

.dp-tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: default;
}

.dp-tool-card__icon {
  width: 5rem;
  height: 5rem;
  background: #F8FAFC;
  border: 1px solid var(--dp-border);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dp-tool-card:hover .dp-tool-card__icon {
  border-color: rgba(198, 161, 91, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dp-tool-card__icon .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--dp-primary);
}

.dp-tool-card__name {
  font-family: var(--dp-font-heading);
  font-weight: 700;
  color: var(--dp-primary);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

/* =========================================================
   PROCESS STEPS — LIGHT (white circles, gold border)
   ========================================================= */
.dp-process__num--white {
  background: #fff;
  border: 4px solid var(--dp-accent);
  color: var(--dp-primary);
  font-size: 1rem;
  width: 3rem;
  height: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   FORM CARD — light container
   ========================================================= */
.dp-form-card {
  background: #fff;
  border: 1px solid var(--dp-border);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   FORM + FAQ — side-by-side layout
   ========================================================= */
.dp-form-faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

/* =========================================================
   FAQ — SIMPLE LIGHT (border-b style)
   ========================================================= */
.dp-faq--simple details {
  border-bottom: 1px solid var(--dp-border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.dp-faq--simple details:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.dp-faq--simple summary {
  color: var(--dp-primary);
  font-family: var(--dp-font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
  user-select: none;
}

.dp-faq--simple summary::-webkit-details-marker { display: none; }

.dp-faq--simple summary::after {
  content: 'add';
  font-family: 'Material Symbols Outlined';
  color: var(--dp-accent);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.dp-faq--simple details[open] summary::after {
  content: 'remove';
}

.dp-faq--simple .dp-faq__answer {
  padding-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.75;
}

/* =========================================================
   CTA — LIGHT
   ========================================================= */
.dp-cta--light {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #F8FAFC;
  border-top: 1px solid var(--dp-border);
}

.dp-cta--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(198, 161, 91, 0.05);
  pointer-events: none;
}

.dp-cta--light h2 {
  color: var(--dp-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.75rem;
}

.dp-cta--light > .dp-container > p {
  color: rgba(15, 23, 42, 0.6);
  font-size: 1.125rem;
  max-width: 38rem;
  margin: 0 auto 3rem;
}

/* =========================================================
   FOOTER — MINIMAL (one-row, light)
   ========================================================= */
.dp-footer--minimal {
  background: #fff;
  border-top: 1px solid var(--dp-border);
  padding: 3rem 1.5rem;
}

.dp-footer--minimal__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.dp-footer--minimal__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.dp-footer--minimal__logo-text {
  font-family: var(--dp-font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dp-primary);
  text-transform: uppercase;
}

.dp-footer--minimal__copy {
  font-size: 0.8125rem;
  color: rgba(15, 23, 42, 0.5);
}

.dp-footer--minimal__social {
  display: flex;
  gap: 1.5rem;
}

.dp-footer--minimal__social a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dp-footer--minimal__social a:hover {
  color: var(--dp-accent);
}

/* =========================================================
   RESPONSIVE — light theme
   ========================================================= */
@media (min-width: 1024px) {
  .dp-form-faq {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

@media (max-width: 767px) {
  .dp-hero--light {
    padding: 3rem 0 4rem;
  }

  .dp-form-card {
    padding: 1.75rem;
  }

  .dp-btn--gold-lt,
  .dp-btn--outline-navy {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   PERMIT RUNNING PAGE — stat badge, step cards, benefit cards,
                         navy CTA card, map CTA
   ========================================================= */

/* Hero eyebrow — line · text · line */
.dp-eyebrow--line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dp-accent);
}

.dp-eyebrow--line::before,
.dp-eyebrow--line::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--dp-accent);
}

/* Hero stat badge — gold floating card */
.dp-hero__stat-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--dp-gold);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: none;
}

.dp-hero__stat-badge__number {
  font-family: var(--dp-font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.dp-hero__stat-badge__label {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  white-space: nowrap;
}

/* Step cards — horizontal numbered process grid */
.dp-step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.dp-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--dp-border);
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dp-step-card:hover {
  border-color: rgba(198, 161, 91, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.dp-step-card__num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dp-font-heading);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  color: #fff;
}

.dp-step-card__num--navy {
  background-color: var(--dp-primary);
}

.dp-step-card__num--gold {
  background-color: var(--dp-gold);
}

.dp-step-card__num--outlined {
  background: #fff;
  color: var(--dp-gold);
  border: 1px solid rgba(198, 161, 91, 0.3);
  box-shadow: none;
}

.dp-step-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dp-primary);
  margin-bottom: 0.5rem;
}

.dp-step-card p {
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.65;
  margin: 0;
}

.dp-step-card--featured {
  border-color: rgba(198, 161, 91, 0.3);
}

.dp-step-card--featured p {
  color: rgba(15, 23, 42, 0.65);
  font-weight: 500;
}

/* Benefit cards — icon bg turns gold on hover */
.dp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.dp-card--benefit {
  padding: 2rem;
  border-radius: 1rem;
  background: #F8FAFC;
  border: 1px solid var(--dp-border);
  transition: border-color 0.25s ease;
}

.dp-card--benefit:hover {
  border-color: var(--dp-accent);
}

.dp-card--benefit__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--dp-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.25s ease;
}

.dp-card--benefit:hover .dp-card--benefit__icon {
  background-color: var(--dp-gold);
}

.dp-card--benefit__icon .material-symbols-outlined {
  color: #fff;
  font-size: 1.75rem;
}

.dp-card--benefit h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dp-primary);
  margin-bottom: 0.75rem;
}

.dp-card--benefit p {
  font-size: 0.9375rem;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.7;
}

/* Navy CTA card — dark rounded box with gold blobs */
.dp-cta--navy-card {
  background: var(--dp-primary);
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.dp-cta--navy-card::before,
.dp-cta--navy-card::after {
  content: '';
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.1);
  pointer-events: none;
}

.dp-cta--navy-card::before {
  top: -8rem;
  right: -8rem;
}

.dp-cta--navy-card::after {
  bottom: -8rem;
  left: -8rem;
}

.dp-cta--navy-card > * {
  position: relative;
  z-index: 1;
}

.dp-cta--navy-card h2 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.dp-cta--navy-card p {
  color: var(--dp-slate-300);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Map CTA — dark card with US map background image */
.dp-map-cta {
  position: relative;
  background: #0f172a;
  border-radius: 2.5rem;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dp-map-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dp-map-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(100%) contrast(1.25);
  display: block;
}

.dp-map-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 31, 58, 0.8);
}

.dp-map-cta__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 50% 50%, rgba(198, 161, 91, 0.2) 0%, transparent 70%);
}

.dp-map-cta__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

.dp-map-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dp-gold);
  margin-bottom: 2rem;
}

.dp-map-cta__eyebrow::before,
.dp-map-cta__eyebrow::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--dp-gold);
}

.dp-map-cta__content h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.dp-map-cta__content h2 span {
  color: var(--dp-gold);
}

.dp-map-cta__content p {
  font-size: 1.125rem;
  color: var(--dp-slate-300);
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   RESPONSIVE — permit running page
   ========================================================= */
@media (min-width: 640px) {
  .dp-hero__stat-badge {
    display: block;
  }
}

@media (min-width: 768px) {
  .dp-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dp-step-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dp-step-card--featured {
    grid-column: span 2;
  }

  .dp-benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .dp-cta--navy-card {
    padding: 2.5rem 1.5rem;
  }
}

/* =========================================================
   ACCOUNTING PAGE — tools light, cap grid, why cards,
                     cta card, faq chevron
   ========================================================= */

/* Tools strip — light bg (grayscale → color on hover) */
.dp-tools--grayscale-lt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 5rem;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.dp-tools--grayscale-lt:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.dp-tools--grayscale-lt .dp-tool-item-lt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.dp-tools--grayscale-lt .dp-tool-item-lt .material-symbols-outlined {
  font-size: 2.25rem;
  color: var(--dp-primary);
  transition: color 0.3s ease;
}

.dp-tools--grayscale-lt .dp-tool-item-lt .dp-tool-name {
  font-family: var(--dp-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dp-primary);
}

/* Capabilities card grid (3-col) */
.dp-cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.dp-card--cap {
  background: #fff;
  border: 1px solid var(--dp-border);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.dp-card--cap:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: rgba(198, 161, 91, 0.3);
}

.dp-card--cap__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.dp-card--cap__icon--primary {
  background: rgba(11, 31, 58, 0.05);
}

.dp-card--cap__icon--accent {
  background: rgba(198, 161, 91, 0.1);
}

.dp-card--cap__icon--primary .material-symbols-outlined {
  color: var(--dp-primary);
  font-size: 1.75rem;
}

.dp-card--cap__icon--accent .material-symbols-outlined {
  color: var(--dp-accent);
  font-size: 1.75rem;
}

.dp-card--cap h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dp-text);
  margin-bottom: 0.75rem;
}

.dp-card--cap p {
  font-size: 0.9375rem;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.7;
}

/* Process step — gold-filled active number */
.dp-process__num--active {
  background-color: var(--dp-gold);
  border-color: var(--dp-gold);
  color: #fff;
}

/* "Why Choose" cards with animated underline */
.dp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.dp-card--why {
  background: #F9FAFB;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.dp-card--why:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.dp-card--why__icon {
  color: var(--dp-accent);
  margin-bottom: 2.5rem;
}

.dp-card--why__icon .material-symbols-outlined {
  font-size: 2.5rem;
}

.dp-card--why h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dp-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.dp-card--why h3 span {
  color: var(--dp-accent);
}

.dp-card--why__line {
  height: 2px;
  width: 2.5rem;
  background: rgba(198, 161, 91, 0.3);
  border-radius: 999px;
  margin: 0.75rem 0 1.5rem;
  transition: width 0.5s ease;
}

.dp-card--why:hover .dp-card--why__line {
  width: 100%;
}

.dp-card--why p {
  font-size: 1rem;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.8;
}

/* CTA card — centered rounded with blob decorations */
.dp-cta--card {
  background: #F8FAFC;
  border: 1px solid var(--dp-border);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.dp-cta--card::before,
.dp-cta--card::after {
  content: '';
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}

.dp-cta--card::before {
  top: -5rem;
  right: -5rem;
  background: rgba(198, 161, 91, 0.05);
}

.dp-cta--card::after {
  bottom: -5rem;
  left: -5rem;
  background: rgba(11, 31, 58, 0.05);
}

.dp-cta--card > * {
  position: relative;
  z-index: 1;
}

.dp-cta--card h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--dp-primary);
  margin-bottom: 1.25rem;
}

.dp-cta--card p {
  font-size: 1.125rem;
  color: rgba(15, 23, 42, 0.6);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.dp-cta--card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.5);
  margin-top: 2.5rem;
}

.dp-cta--card__trust .material-symbols-outlined {
  color: #16A34A;
  font-size: 1.25rem;
}

/* FAQ — chevron style (expand_more rotating on open) */
.dp-faq--chevron details {
  background: #F8FAFC;
  border: 1px solid var(--dp-border);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease;
}

.dp-faq--chevron details:hover {
  border-color: rgba(198, 161, 91, 0.4);
}

.dp-faq--chevron summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  gap: 1.5rem;
}

.dp-faq--chevron summary::-webkit-details-marker {
  display: none;
}

.dp-faq--chevron summary h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dp-primary);
  margin: 0;
  flex: 1;
}

.dp-faq--chevron summary .dp-faq__icon {
  color: var(--dp-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.dp-faq--chevron details[open] summary .dp-faq__icon {
  transform: rotate(180deg);
}

.dp-faq--chevron details > div {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--dp-border);
  padding-top: 1rem;
  font-size: 0.9375rem;
  color: rgba(15, 23, 42, 0.65);
  line-height: 1.75;
}

/* =========================================================
   RESPONSIVE — accounting page
   ========================================================= */
@media (min-width: 1024px) {
  .dp-cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dp-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .dp-cta--card {
    padding: 2.5rem 1.5rem;
  }
}

/* =========================================================
   ABOUT PAGE — hero, mission, principles, mosaic, team,
                tools strip, impact stats
   ========================================================= */

/* Hero — fullscreen with background image */
.dp-hero--about {
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dp-hero--about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dp-hero--about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dp-hero--about__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(11, 31, 58, 0.8) 0%,
    rgba(11, 31, 58, 0.6) 50%,
    #0B1F3A 100%
  );
}

.dp-hero--about__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: calc(5rem + 80px) 1.5rem 4rem;
}

.dp-hero--about__content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.dp-hero--about__content h1 span {
  color: var(--dp-gold);
}

.dp-hero--about__content p {
  font-size: 1.125rem;
  color: var(--dp-slate-300);
  line-height: 1.75;
  font-weight: 300;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

/* Mission section (bg-mesh equivalent) */
.dp-section--mission {
  padding: 6rem 0;
  background-color: var(--dp-navy-muted);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(198, 161, 91, 0.05) 0, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(198, 161, 91, 0.05) 0, transparent 50%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dp-mission-quote {
  font-family: var(--dp-font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

/* Core Principles 4-col grid — cards reuse .dp-card--dark */
.dp-principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Image mosaic — differentiator section */
.dp-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dp-image-mosaic__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dp-image-mosaic__col--offset {
  margin-top: 2rem;
}

.dp-image-mosaic__photo {
  border-radius: 1rem;
  overflow: hidden;
}

.dp-image-mosaic__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.dp-image-mosaic__photo:hover img {
  filter: grayscale(0%);
}

.dp-mosaic-card--gold {
  background-color: var(--dp-gold);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 12rem;
}

.dp-mosaic-card--gold .dp-mosaic__number {
  font-family: var(--dp-font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--dp-navy-muted);
  line-height: 1.1;
}

.dp-mosaic-card--gold .dp-mosaic__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(11, 31, 58, 0.7);
}

.dp-mosaic-card--dark {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 12rem;
}

.dp-mosaic-card--dark .dp-mosaic__number {
  font-family: var(--dp-font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 1.1;
}

.dp-mosaic-card--dark .dp-mosaic__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dp-slate-400);
}

/* Team section */
.dp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  text-align: center;
}

.dp-team-card {
  cursor: default;
}

.dp-team-avatar {
  width: 12rem;
  height: 12rem;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  overflow: hidden;
  background-color: rgba(30, 41, 59, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

.dp-team-card:hover .dp-team-avatar {
  border-color: var(--dp-gold);
}

.dp-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.dp-team-card:hover .dp-team-avatar img {
  opacity: 1;
}

.dp-team-card__name {
  font-family: var(--dp-font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.dp-team-card__role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dp-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Tech stack strip — grayscale row, reveals on hover */
.dp-tools--grayscale {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 4rem;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.dp-tools--grayscale:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.dp-tools--grayscale .dp-tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dp-tools--grayscale .dp-tool-item .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--dp-slate-300);
  transition: color 0.3s ease;
}

.dp-tools--grayscale:hover .dp-tool-item .material-symbols-outlined {
  color: var(--dp-gold);
}

.dp-tools--grayscale .dp-tool-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dp-slate-400);
}

/* Impact stats — gold background */
.dp-impact-strip {
  padding: 5rem 0;
  background-color: var(--dp-gold);
}

.dp-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.dp-impact-stat__number {
  font-family: var(--dp-font-heading);
  font-size: clamp(3rem, 7vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--dp-navy-muted);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dp-impact-stat__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(11, 31, 58, 0.7);
}

/* =========================================================
   RESPONSIVE — about page
   ========================================================= */
@media (min-width: 1024px) {
  .dp-principles-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dp-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .dp-hero--about {
    min-height: 600px;
  }

  .dp-image-mosaic {
    grid-template-columns: 1fr;
  }

  .dp-image-mosaic__col--offset {
    margin-top: 0;
  }

  .dp-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .dp-team-avatar {
    width: 8rem;
    height: 8rem;
  }
}
