/* DriveTrust CSS - Premium, Modern, and Dynamic */

:root {
  --color-bg-dark: #070707;
  --color-bg-deep: #0a0a0a;
  --color-bg-card: #121212;
  --color-bg-card-hover: #161616;
  --color-gold: #c9a84c;
  --color-gold-hover: #dfbc5e;
  --color-gold-dark: #806220;
  --color-gold-light: rgba(201, 168, 76, 0.1);
  --color-gold-glow: rgba(201, 168, 76, 0.3);
  --color-text-primary: #f5efe6;
  --color-text-secondary: #a39d94;
  --color-text-muted: #5e5952;
  --color-border: #1f1f1f;
  --color-border-hover: #333333;
  --font-family-serif: 'Cormorant Garamond', Georgia, serif;
  --font-family-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
  font-family: var(--font-family-sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Background Gradients & Glow Elements */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80vw;
  height: 80vh;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, rgba(7, 7, 7, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-serif);
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Header & Glassmorphic Nav */
.dt-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.dt-header.scrolled {
  background: rgba(7, 7, 7, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.dt-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.dt-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-family-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-gold);
}

.dt-brand span {
  font-weight: 400;
  color: var(--color-text-primary);
}

.dt-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

@media (min-width: 769px) {
  .dt-nav-links {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .dt-nav-links {
    gap: 1.5rem;
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }
}

.dt-nav-links a {
  color: var(--color-text-secondary);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
}

.dt-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.dt-nav-links a:hover {
  color: var(--color-gold);
}

.dt-nav-links a:hover::after {
  width: 100%;
}

.dt-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Menu Toggle */
.dt-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.dt-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

.dt-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dt-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.dt-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main Content Wrapper */
main {
  padding-top: 80px; /* Accounts for fixed navbar */
}

/* Buttons */
.dt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-family-sans);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.dt-btn-primary {
  background: var(--color-gold);
  color: var(--color-bg-dark);
  border: 1px solid var(--color-gold);
}

.dt-btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.dt-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}

.dt-btn-primary:hover::after {
  left: 125%;
  opacity: 1;
}

.dt-btn-ghost {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.dt-btn-ghost:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Sections General */
section {
  padding: 6rem 2rem;
  position: relative;
}

.dt-container {
  max-width: 1100px;
  margin: 0 auto;
}

.dt-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  max-width: 1100px;
  margin: 0 auto;
}

.dt-sec-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.dt-sec-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 3.5rem;
  color: #fff;
}

.dt-sec-title span {
  font-style: italic;
  color: var(--color-gold);
}

/* Hero Section */
.dt-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
  text-align: center;
  width: 100%;
}

.dt-hero .scroll-reveal {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dt-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  opacity: 0.18; /* Subtle opacity so text pops beautifully */
  pointer-events: none;
}

.dt-hero-eyebrow {
  font-size: 15px; /* Bumped up for better prominence */
  letter-spacing: 0.18em; /* Adjusted for larger layout scale */
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.dt-hero-h1 {
  font-size: 56px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 2rem;
}

.dt-hero-h1 em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}

.dt-hero-sub {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.dt-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.dt-badge {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.dt-badge:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.dt-badge svg {
  fill: var(--color-gold);
}

.dt-cta-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* How It Works Section */
.dt-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.dt-step-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.dt-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.dt-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dt-step-card:hover::before {
  height: 100%;
}

.dt-step-num {
  font-family: var(--font-family-serif);
  font-size: 42px;
  color: rgba(201, 168, 76, 0.15);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.dt-step-card:hover .dt-step-num {
  color: var(--color-gold);
  transform: scale(1.05);
}

.dt-step-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
}

.dt-step-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* What We Handle Section (Covers) */
.dt-covers {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.dt-covers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.dt-cover-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.dt-cover-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.dt-cover-icon-wrapper {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.dt-cover-card:hover .dt-cover-icon-wrapper {
  background: var(--color-gold);
  color: var(--color-bg-dark);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  transform: rotateY(360deg);
}

.dt-cover-title {
  font-family: var(--font-family-serif);
  font-size: 24px;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.dt-cover-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Powersports & Auto Coverage Section */
.dt-verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.dt-vert-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3.5rem 2.5rem;
  border-radius: 4px;
  position: relative;
  transition: var(--transition-smooth);
}

.dt-vert-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.03);
  transform: translateY(-4px);
}

.dt-vert-badge {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.dt-vert-title {
  font-family: var(--font-family-serif);
  font-size: 30px;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.dt-vert-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.dt-vert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.dt-vert-list li {
  font-size: 13px;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dt-vert-list svg {
  fill: var(--color-gold);
  flex-shrink: 0;
}

/* Trust Promise Section */
.dt-trust-promise {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-deep) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.dt-promise-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dt-promise-left h2 {
  font-size: 40px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.dt-promise-left p {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.dt-promise-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.dt-promise-point {
  display: flex;
  gap: 1.25rem;
  background: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.dt-promise-point:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateX(5px);
}

.dt-promise-point-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.dt-promise-point h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: var(--font-family-sans);
  font-weight: 500;
}

.dt-promise-point p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Team Section */
.dt-team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.dt-team-card {
  flex: 0 1 320px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.dt-team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.dt-team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #151515;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.dt-team-photo-fallback {
  font-family: var(--font-family-serif);
  font-size: 80px;
  color: var(--color-gold);
  font-weight: 500;
  z-index: 1;
  user-select: none;
}

.dt-team-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.dt-team-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dt-team-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.dt-team-role {
  font-size: 12px;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.dt-team-bio {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.dt-team-intro {
  max-width: 800px;
  margin: -2rem auto 3.5rem;
  text-align: center;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* Guarantee Section */
.dt-guarantee {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.dt-guarantee-box {
  max-width: 650px;
  margin: 0 auto;
}

.dt-guarantee-num {
  font-family: var(--font-family-serif);
  font-size: 72px;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}

.dt-guarantee-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* Referral & Loyalty perks */
.dt-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.dt-perk-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-smooth);
}

.dt-perk-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dt-perk-amt {
  font-family: var(--font-family-serif);
  font-size: 48px;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dt-perk-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.dt-perk-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Pricing Section */
.dt-pricing {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.dt-price-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3.5rem 3rem;
  border-radius: 4px;
  margin-top: 2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.dt-price-box:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(201, 168, 76, 0.03);
  transform: translateY(-4px);
}

.dt-price-box::before {
  content: 'Flat Rate';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.dt-price-num {
  font-family: var(--font-family-serif);
  font-size: 64px;
  color: var(--color-gold);
  line-height: 1;
  font-weight: 600;
}

.dt-price-label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dt-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 380px;
  margin: 0 auto;
}

.dt-price-features li {
  font-size: 14px;
  color: var(--color-text-primary);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.dt-price-features svg {
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Intake Form Section */
.dt-form-section {
  max-width: 650px;
  margin: 0 auto;
}

.dt-form-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3.5rem;
  border-radius: 4px;
  text-align: left;
}

.dt-form-card h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.dt-form-sub {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.dt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dt-form-label {
  font-size: 12px;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  display: block;
}

.dt-form input,
.dt-form select,
.dt-form textarea {
  background: rgba(7, 7, 7, 0.6);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 0.9rem 1.25rem;
  font-size: 14px;
  font-family: var(--font-family-sans);
  border-radius: 2px;
  width: 100%;
  outline: none;
  transition: var(--transition-smooth);
}

.dt-form input:focus,
.dt-form select:focus,
.dt-form textarea:focus {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.02);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.1);
}

.dt-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1.25rem) center;
}

.dt-form select option {
  background: var(--color-bg-card);
}

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

.dt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dt-submit-btn {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 14px;
  width: 100%;
}

/* Modals & Dialog System */
.dt-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.dt-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.dt-modal-container {
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold);
  max-width: 520px;
  width: 90%;
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(201, 168, 76, 0.05);
}

.dt-modal-overlay.active .dt-modal-container {
  transform: translateY(0);
}

.dt-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition-smooth);
}

.dt-modal-close:hover {
  color: #fff;
}

.dt-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.dt-modal-title {
  font-size: 28px;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.dt-modal-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.dt-modal-action-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: left;
}

.dt-modal-action-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 13px;
}

.dt-modal-action-row:last-child {
  margin-bottom: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: #fff;
}

.dt-stripe-element-sim {
  border: 1px solid var(--color-border);
  background: rgba(7, 7, 7, 0.5);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.dt-stripe-placeholder {
  color: var(--color-text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dt-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Footer Section */
.dt-footer {
  border-top: 1px solid var(--color-border);
  padding: 4rem 2rem;
  background: var(--color-bg-deep);
}

.dt-footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.dt-footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dt-footer-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0.6rem 0 0.9rem 0;
  font-weight: 500;
}

.dt-footer-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 320px;
}

.dt-footer-title {
  font-size: 14px;
  font-family: var(--font-family-sans);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dt-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.dt-footer-links a {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.dt-footer-links a:hover {
  color: var(--color-gold);
}

.dt-footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.dt-footer-copy {
  font-size: 12px;
  color: var(--color-text-muted);
}

.dt-footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 12px;
  color: var(--color-text-muted);
}

.dt-footer-legal-links a:hover {
  color: var(--color-text-secondary);
}

/* Animations */
@keyframes slowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.dt-mobile-only-cta {
  display: none !important;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .dt-hero-h1 {
    font-size: 44px;
  }
  
  .dt-promise-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .dt-team-card {
    flex: 0 1 calc(50% - 1.25rem);
  }
  
  .dt-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .dt-footer-col:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .dt-menu-toggle {
    display: block;
  }
  
  .dt-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-deep);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    padding: 6rem 3rem 2rem;
    transition: var(--transition-smooth);
    z-index: 100;
  }
  
  .dt-nav-links.active {
    right: 0;
  }
  
  .dt-nav-actions {
    display: none; /* Action CTA moved into mobile drawer or hidden */
  }
  
  .dt-mobile-only-cta {
    display: block !important;
  }

  .dt-team-card {
    flex: 0 1 100%;
    max-width: 320px;
  }

  /* Step cards — number color and card lift on scroll */
  .dt-step-card.highlighted {
    transform: translateY(-5px) !important;
    border-color: rgba(201, 168, 76, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  }

  .dt-step-card.highlighted::before {
    height: 100% !important;
  }

  .dt-step-card.highlighted .dt-step-num {
    color: var(--color-gold) !important;
    transform: scale(1.05) !important;
  }

  /* Cover cards — icon spin and gold background on scroll */
  .dt-cover-card.highlighted {
    border-color: rgba(201, 168, 76, 0.25) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-4px) !important;
  }

  .dt-cover-card.highlighted .dt-cover-icon-wrapper {
    background: var(--color-gold) !important;
    color: var(--color-bg-dark) !important;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3) !important;
  }

  /* Vert cards — border glow on scroll */
  .dt-vert-card.highlighted {
    border-color: rgba(201, 168, 76, 0.35) !important;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.08) !important;
    transform: translateY(-4px) !important;
  }

  /* Perk cards — lift on scroll */
  .dt-perk-card.highlighted {
    border-color: rgba(201, 168, 76, 0.2) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  }

  /* Price box — glow on scroll */
  .dt-price-box.highlighted {
    border-color: rgba(201, 168, 76, 0.35) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(201, 168, 76, 0.08) !important;
    transform: translateY(-4px) !important;
  }

  /* Promise points — slide on scroll */
  .dt-promise-point.highlighted {
    border-color: rgba(201, 168, 76, 0.15) !important;
    transform: translateX(5px) !important;
  }
  
  section {
    padding: 4.5rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .dt-hero-h1 {
    font-size: 34px;
  }
  
  .dt-hero-sub {
    font-size: 15px;
  }
  
  .dt-form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .dt-form-card {
    padding: 2rem;
  }
  
  .dt-modal-container {
    padding: 2rem;
  }
  
  .dt-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .dt-footer-col:first-child {
    grid-column: span 1;
  }
  
  .dt-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}