@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --dd-bg: #faf9f6;
  --dd-surface: #f5f5f4;
  --dd-card: #ffffff;
  --dd-text: #1c1917;
  --dd-text-muted: #57534e;
  --dd-accent: #b45309;
  --dd-accent-light: #d97706;
  --dd-btn: #dc2626;
  --dd-btn-hover: #b91c1c;
  --dd-border: #d6d3d1;
  --dd-border-light: #e7e5e4;
  --dd-stone-100: #f5f5f4;
  --dd-stone-200: #e7e5e4;
  --dd-stone-300: #d6d3d1;
  --dd-stone-400: #a8a29e;
  --dd-stone-800: #292524;
  --dd-radius: 12px;
  --dd-radius-sm: 8px;
  --dd-radius-lg: 16px;
  --dd-shadow: 0 1px 3px rgba(0,0,0,0.06);
  --dd-shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --dd-shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --dd-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --dd-font-heading: 'Outfit', sans-serif;
  --dd-font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--dd-font-body);
  color: var(--dd-text);
  background-color: var(--dd-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dd-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--dd-accent);
  text-decoration: none;
  transition: var(--dd-transition);
}
a:hover { color: var(--dd-accent-light); }

/* ===== DD-HEADER ===== */
.dd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dd-border-light);
  transition: var(--dd-transition);
}

.dd-header--scrolled {
  background: rgba(250, 249, 246, 0.96);
  box-shadow: var(--dd-shadow);
}

.dd-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.dd-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dd-text);
  text-decoration: none;
}

.dd-header__logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.dd-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.dd-header__link {
  font-family: var(--dd-font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--dd-text-muted);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: var(--dd-transition);
}

.dd-header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dd-accent);
  transition: width 0.3s ease;
}

.dd-header__link:hover,
.dd-header__link--active {
  color: var(--dd-text);
}

.dd-header__link:hover::after,
.dd-header__link--active::after {
  width: 100%;
}

/* ===== DD-BURGER ===== */
.dd-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
  background: none;
  border: none;
}

.dd-burger__line {
  width: 24px;
  height: 2px;
  background: var(--dd-text);
  border-radius: 2px;
  transition: var(--dd-transition);
}

.dd-burger--open .dd-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.dd-burger--open .dd-burger__line:nth-child(2) {
  opacity: 0;
}
.dd-burger--open .dd-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== DD-MOBILE-NAV ===== */
.dd-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--dd-card);
  z-index: 1005;
  padding: 6rem 2rem 2rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--dd-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.dd-mobile-nav--open {
  right: 0;
}

.dd-mobile-nav__link {
  display: block;
  font-family: var(--dd-font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--dd-text);
  padding: 0.875rem 1rem;
  border-radius: var(--dd-radius-sm);
  transition: var(--dd-transition);
  text-decoration: none;
}

.dd-mobile-nav__link:hover,
.dd-mobile-nav__link--active {
  background: var(--dd-surface);
  color: var(--dd-accent);
}

.dd-mobile-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: var(--dd-transition);
}

.dd-mobile-nav__overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ===== DD-HERO ===== */
.dd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.dd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.85) 0%, rgba(28, 25, 23, 0.5) 100%);
}

.dd-hero__content {
  position: relative;
  z-index: 1;
}

.dd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(180, 83, 9, 0.15);
  border: 1px solid rgba(180, 83, 9, 0.3);
  color: var(--dd-accent-light);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.dd-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.dd-hero__title span {
  color: var(--dd-accent-light);
}

.dd-hero__text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.dd-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== DD-BTN ===== */
.dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--dd-font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--dd-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--dd-transition);
  text-decoration: none;
  line-height: 1;
}

.dd-btn--primary {
  background: var(--dd-btn);
  color: #fff;
  border-color: var(--dd-btn);
}

.dd-btn--primary:hover {
  background: var(--dd-btn-hover);
  border-color: var(--dd-btn-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.dd-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.dd-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.dd-btn--accent {
  background: var(--dd-accent);
  color: #fff;
  border-color: var(--dd-accent);
}

.dd-btn--accent:hover {
  background: var(--dd-accent-light);
  border-color: var(--dd-accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 83, 9, 0.3);
}

.dd-btn--dark {
  background: var(--dd-stone-800);
  color: #fff;
  border-color: var(--dd-stone-800);
}

.dd-btn--dark:hover {
  background: var(--dd-text);
  transform: translateY(-2px);
  color: #fff;
}

/* ===== DD-SECTION ===== */
.dd-section {
  padding: 5rem 0;
}

.dd-section--alt {
  background: var(--dd-surface);
}

.dd-section--dark {
  background: var(--dd-stone-800);
  color: #fff;
}

.dd-section--dark h2,
.dd-section--dark h3 {
  color: #fff;
}

.dd-section--dark p {
  color: rgba(255,255,255,0.7);
}

.dd-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.dd-section__label {
  display: inline-block;
  font-family: var(--dd-font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dd-accent);
  margin-bottom: 0.75rem;
}

.dd-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.dd-section__subtitle {
  font-size: 1.0625rem;
  color: var(--dd-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== DD-CARD ===== */
.dd-card {
  background: var(--dd-card);
  border: 1px solid var(--dd-border-light);
  border-radius: var(--dd-radius);
  padding: 2rem;
  transition: var(--dd-transition);
}

.dd-card:hover {
  border-color: var(--dd-stone-400);
  box-shadow: var(--dd-shadow-md);
  transform: translateY(-4px);
}

.dd-card__icon {
  width: 56px;
  height: 56px;
  background: var(--dd-surface);
  border: 1px solid var(--dd-border-light);
  border-radius: var(--dd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--dd-accent);
  transition: var(--dd-transition);
}

.dd-card:hover .dd-card__icon {
  background: var(--dd-accent);
  color: #fff;
  border-color: var(--dd-accent);
}

.dd-card__title {
  font-family: var(--dd-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.dd-card__text {
  font-size: 0.9375rem;
  color: var(--dd-text-muted);
  line-height: 1.7;
}

/* ===== DD-SCREENSHOTS ===== */
.dd-screenshots {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--dd-stone-300) transparent;
}

.dd-screenshots::-webkit-scrollbar {
  height: 6px;
}

.dd-screenshots::-webkit-scrollbar-track {
  background: transparent;
}

.dd-screenshots::-webkit-scrollbar-thumb {
  background: var(--dd-stone-300);
  border-radius: 3px;
}

.dd-screenshots__item {
  flex: 0 0 auto;
  width: 280px;
  border-radius: var(--dd-radius);
  overflow: hidden;
  border: 1px solid var(--dd-border-light);
  scroll-snap-align: start;
  transition: var(--dd-transition);
}

.dd-screenshots__item:hover {
  transform: scale(1.02);
  box-shadow: var(--dd-shadow-md);
}

.dd-screenshots__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== DD-STATS ===== */
.dd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.dd-stats__item {
  text-align: center;
  padding: 2rem 1rem;
}

.dd-stats__number {
  font-family: var(--dd-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--dd-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dd-stats__label {
  font-size: 0.9375rem;
  color: var(--dd-text-muted);
  font-weight: 500;
}

/* ===== DD-STEPS ===== */
.dd-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.dd-steps__item {
  text-align: center;
  padding: 2rem 1.5rem;
  counter-increment: step;
  position: relative;
}

.dd-steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--dd-accent);
  color: #fff;
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.dd-steps__title {
  font-family: var(--dd-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.dd-steps__text {
  font-size: 0.9375rem;
  color: var(--dd-text-muted);
}

.dd-steps__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--dd-radius-sm);
  margin-bottom: 1.25rem;
  border: 1px solid var(--dd-border-light);
}

/* ===== DD-TESTIMONIAL ===== */
.dd-testimonial {
  background: var(--dd-card);
  border: 1px solid var(--dd-border-light);
  border-radius: var(--dd-radius);
  padding: 2rem;
  transition: var(--dd-transition);
}

.dd-testimonial:hover {
  border-color: var(--dd-stone-400);
  box-shadow: var(--dd-shadow-md);
}

.dd-testimonial__stars {
  color: var(--dd-accent-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.dd-testimonial__quote {
  font-size: 1rem;
  color: var(--dd-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.dd-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dd-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dd-border-light);
}

.dd-testimonial__name {
  font-family: var(--dd-font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
}

.dd-testimonial__role {
  font-size: 0.8125rem;
  color: var(--dd-text-muted);
}

/* ===== DD-FAQ ===== */
.dd-faq__item {
  border: 1px solid var(--dd-border-light);
  border-radius: var(--dd-radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--dd-transition);
}

.dd-faq__item:hover {
  border-color: var(--dd-stone-300);
}

.dd-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--dd-font-heading);
  font-weight: 600;
  font-size: 1rem;
  background: var(--dd-card);
  border: none;
  width: 100%;
  text-align: left;
  color: var(--dd-text);
  transition: var(--dd-transition);
}

.dd-faq__question:hover {
  background: var(--dd-surface);
}

.dd-faq__question i {
  transition: transform 0.3s ease;
  color: var(--dd-text-muted);
  font-size: 0.875rem;
}

.dd-faq__item--open .dd-faq__question i {
  transform: rotate(180deg);
  color: var(--dd-accent);
}

.dd-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.dd-faq__item--open .dd-faq__answer {
  max-height: 500px;
}

.dd-faq__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--dd-text-muted);
  line-height: 1.7;
}

/* ===== DD-CTA ===== */
.dd-cta {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.dd-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dd-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.9) 0%, rgba(220, 38, 38, 0.85) 100%);
}

.dd-cta__content {
  position: relative;
  z-index: 1;
}

/* ===== DD-FOOTER ===== */
.dd-footer {
  background: var(--dd-stone-800);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.dd-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.dd-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dd-footer__brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.dd-footer__brand-name {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.dd-footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.dd-footer__heading {
  font-family: var(--dd-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.dd-footer__links {
  list-style: none;
  padding: 0;
}

.dd-footer__links li {
  margin-bottom: 0.625rem;
}

.dd-footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: var(--dd-transition);
  text-decoration: none;
}

.dd-footer__links a:hover {
  color: var(--dd-accent-light);
  padding-left: 4px;
}

.dd-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
}

.dd-footer__contact-item i {
  color: var(--dd-accent-light);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.dd-footer__map {
  margin-top: 1.25rem;
  border-radius: var(--dd-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.dd-footer__map iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.dd-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.dd-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.dd-footer__badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dd-footer__age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dd-btn);
  color: var(--dd-btn);
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ===== DD-POPUP ===== */
.dd-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.dd-popup--visible {
  display: flex;
}

.dd-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.dd-popup__box {
  position: relative;
  background: var(--dd-card);
  border: 1px solid var(--dd-border-light);
  border-radius: var(--dd-radius-lg);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  z-index: 1;
  box-shadow: var(--dd-shadow-lg);
}

.dd-popup__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--dd-surface);
  border: 1px solid var(--dd-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.dd-popup__title {
  font-family: var(--dd-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.dd-popup__text {
  font-size: 0.9375rem;
  color: var(--dd-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.dd-popup__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

/* ===== DD-COOKIE-BAR ===== */
.dd-cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--dd-card);
  border-top: 1px solid var(--dd-border-light);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 1.25rem 0;
}

.dd-cookie-bar--visible {
  display: block;
}

.dd-cookie-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dd-cookie-bar__text {
  font-size: 0.875rem;
  color: var(--dd-text-muted);
  flex: 1;
}

.dd-cookie-bar__text a {
  color: var(--dd-accent);
  text-decoration: underline;
}

/* ===== DD-VIDEO ===== */
.dd-video__wrapper {
  position: relative;
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  border: 1px solid var(--dd-border-light);
  box-shadow: var(--dd-shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
}

.dd-video__wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== DD-RATING ===== */
.dd-rating__overview {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.dd-rating__big {
  text-align: center;
  flex-shrink: 0;
}

.dd-rating__big-number {
  font-family: var(--dd-font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--dd-text);
  line-height: 1;
}

.dd-rating__big-stars {
  color: var(--dd-accent-light);
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.dd-rating__big-count {
  font-size: 0.875rem;
  color: var(--dd-text-muted);
}

.dd-rating__bars {
  flex: 1;
}

.dd-rating__bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.dd-rating__bar-label {
  font-size: 0.875rem;
  font-weight: 500;
  width: 1.5rem;
  text-align: right;
  color: var(--dd-text-muted);
}

.dd-rating__bar-track {
  flex: 1;
  height: 8px;
  background: var(--dd-surface);
  border-radius: 4px;
  overflow: hidden;
}

.dd-rating__bar-fill {
  height: 100%;
  background: var(--dd-accent);
  border-radius: 4px;
  transition: width 1s ease;
}

/* ===== DD-LEGAL ===== */
.dd-legal {
  max-width: 800px;
  margin: 0 auto;
}

.dd-legal h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dd-border-light);
}

.dd-legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.dd-legal h3 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
}

.dd-legal p {
  margin-bottom: 1rem;
  color: var(--dd-text-muted);
  font-size: 0.9375rem;
}

.dd-legal ul, .dd-legal ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.dd-legal li {
  margin-bottom: 0.5rem;
  color: var(--dd-text-muted);
  font-size: 0.9375rem;
}

.dd-legal a {
  color: var(--dd-accent);
  text-decoration: underline;
}

/* ===== DD-CONTACT-FORM ===== */
.dd-contact-form__group {
  margin-bottom: 1.25rem;
}

.dd-contact-form__label {
  display: block;
  font-family: var(--dd-font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--dd-text);
}

.dd-contact-form__input,
.dd-contact-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius-sm);
  font-family: var(--dd-font-body);
  font-size: 0.9375rem;
  color: var(--dd-text);
  background: var(--dd-card);
  transition: var(--dd-transition);
  outline: none;
}

.dd-contact-form__input:focus,
.dd-contact-form__textarea:focus {
  border-color: var(--dd-accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

.dd-contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.dd-contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ===== DD-PAGE-HERO ===== */
.dd-page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--dd-surface);
  border-bottom: 1px solid var(--dd-border-light);
}

.dd-page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.dd-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--dd-text-muted);
}

.dd-page-hero__breadcrumb a {
  color: var(--dd-accent);
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
.dd-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dd-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.dd-fade-in--delay-1 { transition-delay: 0.1s; }
.dd-fade-in--delay-2 { transition-delay: 0.2s; }
.dd-fade-in--delay-3 { transition-delay: 0.3s; }
.dd-fade-in--delay-4 { transition-delay: 0.4s; }
.dd-fade-in--delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dd-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .dd-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dd-rating__overview {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  .dd-rating__big {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .dd-header__nav {
    display: none;
  }
  .dd-burger {
    display: flex;
  }
  .dd-section {
    padding: 3.5rem 0;
  }
  .dd-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .dd-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .dd-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .dd-hero__title {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }
  .dd-popup__box {
    padding: 2rem 1.5rem;
  }
  .dd-cookie-bar__inner {
    flex-direction: column;
    text-align: center;
  }
  .dd-screenshots__item {
    width: 220px;
  }
  .dd-rating__big {
    flex-direction: column;
    text-align: center;
  }
  .dd-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .dd-header__inner {
    height: 60px;
    padding: 0 1rem;
  }
  .dd-header__logo {
    font-size: 1.25rem;
  }
  .dd-header__logo img {
    width: 32px;
    height: 32px;
  }
  .dd-hero {
    padding-top: 60px;
  }
  .dd-page-hero {
    padding: 6rem 0 3rem;
  }
  .dd-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  .dd-stats__number {
    font-size: 2.25rem;
  }
  .dd-section__title {
    font-size: 1.5rem;
  }
}

/* ===== AMBIENT VIDEO SECTIONS ===== */
.dd-section.py-0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.dd-section.py-0 video {
  display: block;
  border-radius: inherit;
}

/* ===== ANTI-SELECT ===== */
.dd-no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
