/* ==========================================
   DAQORVIAX - Main Stylesheet
   Prefix: dd-
   ========================================== */


:root {
  --dd-cream: #f5f0e8;
  --dd-warm-white: #faf8f4;
  --dd-dark: #1a1510;
  --dd-dark-mid: #2d2518;
  --dd-dark-soft: #3d3425;
  --dd-terracotta: #c2673a;
  --dd-terracotta-light: #d9845e;
  --dd-terracotta-dark: #a0502a;
  --dd-gold: #c9a84c;
  --dd-gold-light: #dfc070;
  --dd-teal: #2a7070;
  --dd-teal-light: #3d9090;
  --dd-teal-dark: #1d5555;
  --dd-text: #2d2518;
  --dd-text-mid: #5a4e3a;
  --dd-text-light: #8a7a62;

  --dd-shadow-sm: 0 2px 8px rgba(26,21,16,0.08), 0 1px 3px rgba(26,21,16,0.05);
  --dd-shadow-md: 0 4px 20px rgba(26,21,16,0.12), 0 2px 8px rgba(26,21,16,0.07);
  --dd-shadow-lg: 0 12px 40px rgba(26,21,16,0.15), 0 4px 16px rgba(26,21,16,0.08), 0 1px 4px rgba(26,21,16,0.05);
  --dd-shadow-xl: 0 24px 64px rgba(26,21,16,0.2), 0 8px 24px rgba(26,21,16,0.1);

  --dd-radius-sm: 6px;
  --dd-radius-md: 12px;
  --dd-radius-lg: 20px;
  --dd-radius-xl: 32px;
  --dd-radius-full: 9999px;

  --dd-space-xs: 0.5rem;
  --dd-space-sm: 1rem;
  --dd-space-md: 2rem;
  --dd-space-lg: 4rem;
  --dd-space-xl: 7rem;

  --dd-nav-height: 88px;
  --dd-nav-height-scrolled: 64px;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dd-warm-white);
  color: var(--dd-text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }

ul { list-style: none; }

address { font-style: normal; }


h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--dd-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


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


.dd-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dd-terracotta);
  background: rgba(194,103,58,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: var(--dd-radius-full);
  margin-bottom: 1rem;
}

.dd-label-light {
  color: var(--dd-gold-light);
  background: rgba(201,168,76,0.15);
}


.dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--dd-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.dd-btn-primary {
  background: var(--dd-terracotta);
  color: #fff;
  border-color: var(--dd-terracotta);
  box-shadow: 0 4px 16px rgba(194,103,58,0.35);
}
.dd-btn-primary:hover {
  background: var(--dd-terracotta-dark);
  border-color: var(--dd-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,103,58,0.45);
  color: #fff;
}

.dd-btn-secondary {
  background: var(--dd-teal);
  color: #fff;
  border-color: var(--dd-teal);
}
.dd-btn-secondary:hover {
  background: var(--dd-teal-dark);
  border-color: var(--dd-teal-dark);
  transform: translateY(-2px);
  color: #fff;
}

.dd-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.dd-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.dd-btn-outline {
  background: transparent;
  color: var(--dd-terracotta);
  border-color: var(--dd-terracotta);
}
.dd-btn-outline:hover {
  background: var(--dd-terracotta);
  color: #fff;
}

.dd-btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.dd-btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; min-height: 36px; }


.dd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.dd-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease;
}

.dd-nav.dd-scrolled {
  background: rgba(26,21,16,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(26,21,16,0.25);
}

.dd-nav.dd-scrolled .dd-nav-inner {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.dd-logo { display: flex; align-items: center; }

.dd-logo-img {
  height: 44px;
  width: auto;
  transition: height 0.4s ease;
}

.dd-nav.dd-scrolled .dd-logo-img { height: 34px; }

.dd-nav-links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

.dd-nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: var(--dd-radius-sm);
  transition: all 0.25s ease;
}

.dd-nav-link:hover,
.dd-nav-link.dd-active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.dd-nav-cta {
  background: var(--dd-terracotta);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--dd-radius-full);
  font-weight: 600;
}
.dd-nav-cta:hover { background: var(--dd-terracotta-dark) !important; }

.dd-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.dd-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.dd-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dd-mobile-menu.dd-open {
  pointer-events: all;
  opacity: 1;
}

.dd-mobile-left {
  width: 55%;
  background: var(--dd-dark);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.dd-mobile-right {
  width: 45%;
  position: relative;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.dd-mobile-menu.dd-open .dd-mobile-left,
.dd-mobile-menu.dd-open .dd-mobile-right {
  transform: translateX(0);
}

.dd-mobile-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 0;
  transition: opacity 0.2s ease;
}
.dd-mobile-close:hover { opacity: 0.7; }

.dd-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dd-mobile-link {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 0.4rem 0;
  transition: color 0.25s ease, transform 0.25s ease;
  display: block;
}
.dd-mobile-link:hover {
  color: var(--dd-gold-light);
  transform: translateX(8px);
}

.dd-mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,21,16,0.7), rgba(194,103,58,0.4));
}

.dd-mobile-brand {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1;
}
.dd-mobile-brand span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.dd-mobile-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}


.dd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dd-dark);
}

.dd-hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dd-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.dd-hero-cutout {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26,21,16,0.92) 0%,
    rgba(26,21,16,0.75) 45%,
    transparent 100%
  );
  clip-path: polygon(0 0, 70% 0, 55% 100%, 0 100%);
}

.dd-hero-mid-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.dd-hero-shape {
  position: absolute;
  border-radius: 50%;
}

.dd-shape-circle {
  width: 500px;
  height: 500px;
  border: 2px solid rgba(201,168,76,0.15);
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
}

.dd-shape-arc {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(194,103,58,0.2);
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.dd-hero-content {
  position: relative;
  z-index: 3;
  padding: calc(var(--dd-nav-height) + 3rem) 1.5rem 5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .dd-hero-content {
    margin-left: calc((100vw - 1200px) / 2);
    margin-right: 0;
    padding-left: 1.5rem;
  }
}

.dd-hero-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dd-gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.35rem 1rem;
  border-radius: var(--dd-radius-full);
  margin-bottom: 1.5rem;
}

.dd-hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.dd-hero-title em {
  font-style: normal;
  color: var(--dd-terracotta-light);
  display: block;
}

.dd-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.dd-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dd-hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.08em;
  animation: ddScrollBounce 2s ease-in-out infinite;
}

@keyframes ddScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.dd-gradient-bridge {
  height: 120px;
  background: linear-gradient(to bottom, var(--dd-dark), var(--dd-cream));
  margin-top: -1px;
}


.dd-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.dd-section-title {
  margin-bottom: 1rem;
}

.dd-section-desc {
  color: var(--dd-text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}


.dd-benefits {
  position: relative;
  background: var(--dd-cream);
  padding: var(--dd-space-xl) 0;
  overflow: hidden;
}

.dd-benefits-cutout {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--dd-warm-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.dd-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@container benefits-grid (min-width: 600px) {
  .dd-benefits-grid { grid-template-columns: 1fr 1fr; }
}

@container benefits-grid (min-width: 900px) {
  .dd-benefits-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.dd-benefit-card {
  background: #fff;
  border-radius: var(--dd-radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--dd-shadow-sm);
  border: 1px solid rgba(194,103,58,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dd-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dd-shadow-lg);
}

.dd-benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--dd-terracotta), var(--dd-terracotta-light));
  border-radius: var(--dd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(194,103,58,0.35);
}

.dd-benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  color: var(--dd-dark);
}

.dd-benefit-card p {
  font-size: 0.92rem;
  color: var(--dd-text-mid);
  line-height: 1.65;
}


.dd-about-preview {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--dd-space-xl) 0;
}

.dd-parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
}

.dd-parallax-img {
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

.dd-about-cutout-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(26,21,16,0.88) 0%, rgba(26,21,16,0.6) 60%, rgba(26,21,16,0.3) 100%);
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
  display: flex;
  align-items: center;
}

.dd-about-cutout-layer .dd-container {
  position: relative;
  z-index: 2;
}

.dd-about-content-box {
  max-width: 560px;
  color: #fff;
}

.dd-about-content-box h2 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.dd-about-content-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}


.dd-course-overview {
  background: var(--dd-warm-white);
  padding: var(--dd-space-xl) 0;
}

.dd-course-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .dd-course-layout { grid-template-columns: 1fr 1fr; }
}

.dd-course-img-wrap {
  position: relative;
  border-radius: var(--dd-radius-xl);
  overflow: hidden;
  box-shadow: var(--dd-shadow-xl);
}

.dd-course-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.dd-course-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--dd-terracotta);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--dd-radius-lg);
  text-align: center;
  box-shadow: var(--dd-shadow-md);
}

.dd-badge-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.dd-badge-text {
  font-size: 0.78rem;
  opacity: 0.9;
  line-height: 1.3;
}

.dd-course-text { padding: 0 1rem; }

.dd-course-text h2 { margin-bottom: 1.25rem; }

.dd-course-text > p { color: var(--dd-text-mid); margin-bottom: 1.5rem; }

.dd-course-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.dd-course-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--dd-text);
}

.dd-course-list li i {
  color: var(--dd-teal);
  flex-shrink: 0;
  font-size: 0.85rem;
}


.dd-gallery-section {
  position: relative;
  background: var(--dd-dark-mid);
  padding: var(--dd-space-xl) 0;
  overflow: hidden;
}

.dd-gallery-cutout-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--dd-warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.dd-gallery-cutout-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--dd-cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.dd-gallery-section .dd-section-head .dd-section-title,
.dd-gallery-section .dd-section-head .dd-label {
  color: #fff;
}

.dd-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

@media (min-width: 768px) {
  .dd-gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .dd-gallery-large { grid-row: 1 / 3; }
}

.dd-gallery-item {
  position: relative;
  border-radius: var(--dd-radius-md);
  overflow: hidden;
  display: block;
  cursor: zoom-in;
}

.dd-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .dd-gallery-large img { height: 100%; min-height: 380px; }
  .dd-gallery-item img { height: 180px; }
}

.dd-gallery-item:hover img { transform: scale(1.06); }

.dd-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.8), transparent);
  color: #fff;
  padding: 1.5rem 1rem 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.dd-gallery-item:hover .dd-gallery-caption { transform: translateY(0); }


.dd-faq-section {
  background: var(--dd-cream);
  padding: var(--dd-space-xl) 0;
}

.dd-faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .dd-faq-layout { grid-template-columns: 340px 1fr; }
}

.dd-faq-head h2 { margin-bottom: 1rem; }
.dd-faq-head p { color: var(--dd-text-mid); margin-bottom: 2rem; }

.dd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dd-faq-item {
  background: #fff;
  border-radius: var(--dd-radius-md);
  border: 1px solid rgba(194,103,58,0.1);
  overflow: hidden;
  box-shadow: var(--dd-shadow-sm);
  transition: box-shadow 0.3s ease;
}

.dd-faq-item:hover { box-shadow: var(--dd-shadow-md); }

.dd-faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dd-dark);
  gap: 1rem;
  min-height: 44px;
  transition: background 0.2s ease;
}

.dd-faq-question:hover { background: rgba(194,103,58,0.04); }

.dd-faq-icon {
  flex-shrink: 0;
  color: var(--dd-terracotta);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.dd-faq-item.dd-open .dd-faq-icon { transform: rotate(45deg); }

.dd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.dd-faq-item.dd-open .dd-faq-answer { max-height: 400px; }

.dd-faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.93rem;
  color: var(--dd-text-mid);
  line-height: 1.7;
}


.dd-cta-section {
  position: relative;
  background: var(--dd-dark);
  padding: var(--dd-space-xl) 0;
  overflow: hidden;
}

.dd-cta-cutout {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dd-terracotta-dark), var(--dd-teal-dark));
  clip-path: circle(55% at 80% 50%);
  opacity: 0.3;
}

.dd-cta-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.dd-cta-box h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.dd-cta-box p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.dd-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.dd-footer {
  background: var(--dd-dark);
  color: rgba(255,255,255,0.7);
  padding-bottom: 2rem;
}

.dd-footer-accent {
  height: 4px;
  background: linear-gradient(to right, var(--dd-terracotta), var(--dd-gold), var(--dd-teal));
}

.dd-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

@media (min-width: 640px) {
  .dd-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .dd-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.dd-footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.dd-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

.dd-footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.dd-footer-address a {
  color: rgba(255,255,255,0.55);
  transition: color 0.25s ease;
}
.dd-footer-address a:hover { color: var(--dd-gold-light); }

.dd-footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.dd-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dd-footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease;
}
.dd-footer-col ul li a:hover { color: var(--dd-terracotta-light); }

.dd-footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.dd-footer-legal p { margin-bottom: 0.35rem; }


.dd-page-hero {
  position: relative;
  background: var(--dd-dark);
  padding: calc(var(--dd-nav-height) + 4rem) 0 5rem;
  overflow: hidden;
}

.dd-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,112,112,0.3), rgba(194,103,58,0.2));
}

.dd-page-hero-about::before { background: linear-gradient(135deg, rgba(194,103,58,0.25), rgba(26,21,16,0.8)); }
.dd-page-hero-course::before { background: linear-gradient(135deg, rgba(42,112,112,0.25), rgba(26,21,16,0.8)); }
.dd-page-hero-modules::before { background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(26,21,16,0.8)); }
.dd-page-hero-contact::before { background: linear-gradient(135deg, rgba(42,112,112,0.25), rgba(194,103,58,0.2)); }

.dd-page-hero-cutout {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: rgba(255,255,255,0.03);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.dd-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.dd-page-hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.dd-page-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
}


.dd-story-section {
  padding: var(--dd-space-xl) 0;
  background: var(--dd-warm-white);
}

.dd-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .dd-story-grid { grid-template-columns: 1fr 1fr; }
}

.dd-story-text h2 { margin-bottom: 1.5rem; }
.dd-story-text p { color: var(--dd-text-mid); }

.dd-story-img-wrap {
  position: relative;
  border-radius: var(--dd-radius-xl);
  overflow: hidden;
  box-shadow: var(--dd-shadow-xl);
}

.dd-story-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.dd-story-cutout-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--dd-terracotta);
  border-radius: 50%;
  opacity: 0.15;
}


.dd-values-section {
  position: relative;
  background: var(--dd-dark-mid);
  padding: var(--dd-space-xl) 0;
  overflow: hidden;
}

.dd-values-cutout-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--dd-warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.dd-values-cutout-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--dd-warm-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.dd-values-section .dd-section-head .dd-section-title,
.dd-values-section .dd-section-head .dd-label {
  color: rgba(255,255,255,0.9);
}

.dd-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .dd-values-grid { grid-template-columns: 1fr 1fr; }
}

.dd-value-item { padding: 0.5rem; }

.dd-value-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dd-value-item h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.dd-value-item p { color: rgba(255,255,255,0.6); font-size: 0.93rem; }


.dd-team-section {
  padding: var(--dd-space-xl) 0;
  background: var(--dd-warm-white);
}

.dd-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .dd-team-grid { grid-template-columns: 1fr 1fr; }
}

.dd-team-card {
  background: #fff;
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  box-shadow: var(--dd-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dd-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dd-shadow-lg);
}

.dd-team-img-wrap { overflow: hidden; }

.dd-team-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dd-team-card:hover .dd-team-img-wrap img { transform: scale(1.05); }

.dd-team-info { padding: 1.75rem; }

.dd-team-info h3 {
  font-size: 1rem;
  color: var(--dd-terracotta);
  margin-bottom: 0.5rem;
}

.dd-team-info p { font-size: 0.92rem; color: var(--dd-text-mid); }


.dd-timeline-section {
  padding: var(--dd-space-xl) 0;
  background: var(--dd-warm-white);
}

.dd-timeline {
  position: relative;
  padding-left: 2rem;
}

.dd-timeline::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--dd-terracotta), var(--dd-teal));
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .dd-timeline { padding-left: 3rem; }
  .dd-timeline::before { left: 1.35rem; }
}

.dd-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.dd-timeline-marker {
  width: 48px;
  height: 48px;
  background: var(--dd-terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: -1.4rem;
  box-shadow: 0 0 0 4px var(--dd-warm-white), var(--dd-shadow-sm);
  z-index: 1;
  position: relative;
}

.dd-timeline-marker span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.dd-timeline-content {
  background: #fff;
  border-radius: var(--dd-radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--dd-shadow-sm);
  border-left: 3px solid var(--dd-terracotta);
}

.dd-timeline-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--dd-dark);
}

.dd-timeline-content p { font-size: 0.92rem; color: var(--dd-text-mid); margin-bottom: 1rem; }

.dd-timeline-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dd-timeline-content ul li {
  font-size: 0.88rem;
  color: var(--dd-text-light);
}


.dd-course-details {
  position: relative;
  background: var(--dd-teal-dark);
  padding: var(--dd-space-xl) 0;
  overflow: hidden;
}

.dd-course-details-cutout {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dd-dark) 0%, transparent 60%);
  clip-path: polygon(0 0, 50% 0, 30% 100%, 0 100%);
}

.dd-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .dd-details-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .dd-details-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.dd-detail-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--dd-radius-lg);
  padding: 1.75rem;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

.dd-detail-card:hover { background: rgba(255,255,255,0.14); }

.dd-detail-card i {
  font-size: 1.75rem;
  color: var(--dd-gold-light);
  margin-bottom: 1rem;
  display: block;
}

.dd-detail-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.65rem; }
.dd-detail-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }


.dd-modules-section {
  padding: var(--dd-space-xl) 0;
  background: var(--dd-warm-white);
}

.dd-modules-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.dd-module-card {
  background: #fff;
  border-radius: var(--dd-radius-xl);
  overflow: hidden;
  box-shadow: var(--dd-shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow 0.3s ease;
}

.dd-module-card:hover { box-shadow: var(--dd-shadow-lg); }

@media (min-width: 768px) {
  .dd-module-card { grid-template-columns: 300px 1fr; }
  .dd-module-featured { grid-template-columns: 400px 1fr; }
}

.dd-module-img-wrap { overflow: hidden; }

.dd-module-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .dd-module-img-wrap img { height: 100%; min-height: 280px; }
}

.dd-module-card:hover .dd-module-img-wrap img { transform: scale(1.04); }

.dd-module-body { padding: 2rem 2.25rem; }

.dd-module-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dd-terracotta);
  background: rgba(194,103,58,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: var(--dd-radius-full);
  margin-bottom: 0.75rem;
}

.dd-module-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 1rem;
}

.dd-module-body p { color: var(--dd-text-mid); font-size: 0.95rem; }

.dd-module-body h4 { margin: 1.25rem 0 0.6rem; font-size: 0.9rem; }

.dd-module-body ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dd-module-body ul li { font-size: 0.88rem; color: var(--dd-text-light); }


.dd-contact-section {
  padding: var(--dd-space-xl) 0;
  background: var(--dd-warm-white);
}

.dd-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .dd-contact-layout { grid-template-columns: 1fr 1.5fr; }
}

.dd-contact-info h2 { margin-bottom: 2rem; }

.dd-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dd-contact-item i {
  width: 42px;
  height: 42px;
  background: rgba(194,103,58,0.1);
  color: var(--dd-terracotta);
  border-radius: var(--dd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.dd-contact-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dd-dark);
  margin-bottom: 0.2rem;
}

.dd-contact-item p {
  font-size: 0.92rem;
  color: var(--dd-text-mid);
  margin: 0;
}

.dd-contact-item p a {
  color: var(--dd-terracotta);
  transition: color 0.25s ease;
}
.dd-contact-item p a:hover { color: var(--dd-terracotta-dark); }

.dd-map-wrap {
  margin-top: 2rem;
  border-radius: var(--dd-radius-md);
  overflow: hidden;
  box-shadow: var(--dd-shadow-md);
}


.dd-contact-form-wrap h2 { margin-bottom: 2rem; }

.dd-form-steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.dd-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(194,103,58,0.15);
  color: var(--dd-terracotta);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dd-step-dot.dd-step-active {
  background: var(--dd-terracotta);
  color: #fff;
  box-shadow: 0 4px 12px rgba(194,103,58,0.4);
}

.dd-step-dot.dd-step-done {
  background: var(--dd-teal);
  color: #fff;
}

.dd-step-line {
  flex: 1;
  height: 2px;
  background: rgba(194,103,58,0.2);
}

.dd-form-step { display: none; }
.dd-form-step.dd-form-step-active { display: block; }

.dd-form-step h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dd-dark);
}

.dd-form-field {
  margin-bottom: 1.25rem;
}

.dd-form-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dd-dark);
  margin-bottom: 0.4rem;
}

.dd-form-field input,
.dd-form-field select,
.dd-form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(194,103,58,0.2);
  border-radius: var(--dd-radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dd-dark);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  min-height: 48px;
}

.dd-form-field input:focus,
.dd-form-field select:focus,
.dd-form-field textarea:focus {
  border-color: var(--dd-terracotta);
  box-shadow: 0 0 0 3px rgba(194,103,58,0.15);
}

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

.dd-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.dd-form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: unset;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--dd-terracotta);
  cursor: pointer;
}

.dd-form-checkbox label {
  font-size: 0.88rem;
  color: var(--dd-text-mid);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  cursor: pointer;
}

.dd-form-checkbox label a { color: var(--dd-terracotta); text-decoration: underline; }

.dd-form-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}


.dd-newsletter-section {
  background: var(--dd-cream);
  padding: var(--dd-space-lg) 0;
}

.dd-newsletter-box {
  background: var(--dd-dark);
  border-radius: var(--dd-radius-xl);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.dd-newsletter-box::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: var(--dd-terracotta);
  border-radius: 50%;
  opacity: 0.08;
}

@media (min-width: 768px) {
  .dd-newsletter-box { grid-template-columns: 1fr 1fr; }
}

.dd-newsletter-text h2 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 0.75rem; }
.dd-newsletter-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.dd-newsletter-fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dd-newsletter-fields input {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--dd-radius-full);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease;
  min-height: 48px;
}

.dd-newsletter-fields input::placeholder { color: rgba(255,255,255,0.4); }
.dd-newsletter-fields input:focus { border-color: var(--dd-terracotta-light); }

.dd-newsletter-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.dd-newsletter-note a { color: rgba(255,255,255,0.55); text-decoration: underline; }


.dd-thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--dd-nav-height) - 300px);
  padding: calc(var(--dd-nav-height) + 3rem) 1.5rem 4rem;
  background: var(--dd-cream);
}

.dd-thanks-container {
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.dd-thanks-quote-card {
  background: var(--dd-dark);
  border-radius: var(--dd-radius-xl);
  padding: 3rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--dd-shadow-xl);
}

.dd-thanks-quote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194,103,58,0.2), rgba(42,112,112,0.15));
  clip-path: circle(70% at 80% 20%);
}

.dd-thanks-quote-icon {
  font-size: 2rem;
  color: var(--dd-gold);
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

.dd-thanks-quote-card blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.dd-thanks-quote-card cite {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

.dd-thanks-message h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--dd-dark);
}

.dd-thanks-message p {
  color: var(--dd-text-mid);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}


.dd-legal-hero {
  background: var(--dd-dark);
  padding: calc(var(--dd-nav-height) + 3rem) 0 3rem;
}

.dd-legal-hero h1 { color: #fff; }

.dd-legal-updated {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.dd-legal-body {
  padding: var(--dd-space-xl) 0;
  background: var(--dd-warm-white);
}

.dd-legal-container {
  max-width: 800px;
}

.dd-legal-container h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.85rem;
  color: var(--dd-dark);
  padding-top: 1rem;
  border-top: 1px solid rgba(194,103,58,0.12);
}

.dd-legal-container h2:first-of-type { margin-top: 1.5rem; border-top: none; }

.dd-legal-container h3 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--dd-dark);
}

.dd-legal-container p {
  color: var(--dd-text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

.dd-legal-container a { color: var(--dd-terracotta); text-decoration: underline; }
.dd-legal-container a:hover { color: var(--dd-terracotta-dark); }

.dd-legal-container code {
  background: rgba(194,103,58,0.1);
  padding: 0.2em 0.45em;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--dd-terracotta-dark);
}

.dd-cookie-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: var(--dd-radius-md);
  box-shadow: var(--dd-shadow-sm);
}

.dd-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: #fff;
}

.dd-cookie-table th {
  background: var(--dd-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
}

.dd-cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(194,103,58,0.1);
  color: var(--dd-text-mid);
}

.dd-cookie-table tr:last-child td { border-bottom: none; }
.dd-cookie-table tr:hover td { background: rgba(194,103,58,0.04); }


.dd-cookie-icon {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3000;
  width: 52px;
  height: 52px;
  background: var(--dd-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--dd-shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  border: 2px solid rgba(255,255,255,0.1);
}

.dd-cookie-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--dd-shadow-xl);
  color: var(--dd-gold-light);
}

.dd-cookie-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: var(--dd-terracotta);
  border-radius: 50%;
  border: 2px solid var(--dd-warm-white);
  display: none;
}

.dd-cookie-badge.dd-show { display: block; }

.dd-cookie-panel {
  position: fixed;
  bottom: calc(1.5rem + 52px + 0.75rem);
  right: 1.5rem;
  z-index: 2999;
  width: 340px;
  max-width: calc(100vw - 3rem);
  background: #fff;
  border-radius: var(--dd-radius-lg);
  box-shadow: var(--dd-shadow-xl);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  max-height: 70%;
  overflow-y: auto;
}

.dd-cookie-panel.dd-panel-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.dd-cookie-panel-inner { padding: 1.5rem; }

.dd-cookie-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.dd-cookie-panel-head h3 {
  font-size: 1rem;
  color: var(--dd-dark);
}

.dd-cookie-panel-close {
  background: none;
  border: none;
  color: var(--dd-text-light);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.dd-cookie-panel-close:hover { color: var(--dd-dark); }

.dd-cookie-intro {
  font-size: 0.83rem;
  color: var(--dd-text-mid);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.dd-cookie-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }

.dd-cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(194,103,58,0.04);
  border-radius: var(--dd-radius-sm);
}

.dd-cookie-row > div { flex: 1; }

.dd-cookie-row strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dd-dark);
  margin-bottom: 0.1rem;
}

.dd-cookie-row span {
  font-size: 0.75rem;
  color: var(--dd-text-light);
}

.dd-toggle {
  width: 36px !important;
  height: 20px;
  min-height: unset !important;
  appearance: none;
  background: rgba(194,103,58,0.2);
  border-radius: var(--dd-radius-full) !important;
  cursor: pointer;
  position: relative;
  border: none !important;
  padding: 0 !important;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.dd-toggle::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.dd-toggle:checked { background: var(--dd-terracotta); }
.dd-toggle:checked::after { transform: translateX(16px); }
.dd-toggle:disabled { opacity: 0.5; cursor: not-allowed; }
.dd-toggle:checked:disabled { background: var(--dd-teal); }

.dd-cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}


@media (min-width: 768px) {
  .dd-nav-links { display: flex; }
  .dd-hamburger { display: none; }
}

@media (max-width: 480px) {
  .dd-hero-actions { flex-direction: column; }
  .dd-hero-actions .dd-btn { text-align: center; justify-content: center; }
  .dd-cta-actions { flex-direction: column; align-items: center; }
  .dd-form-nav { flex-direction: column; }
  .dd-form-nav .dd-btn { width: 100%; justify-content: center; }
  .dd-mobile-left { width: 65%; }
  .dd-mobile-right { width: 35%; }
  .dd-newsletter-fields { flex-direction: column; }
  .dd-newsletter-fields input { min-width: unset; }
  .dd-cookie-actions { flex-direction: column; }
  .dd-cookie-actions .dd-btn { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
  .dd-mobile-left { width: 80%; }
  .dd-mobile-right { width: 20%; }
}


.dd-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}