:root {
  --ldh-primary: #D4AF37;
  --ldh-primary-hover: #F3CA4E;
  --ldh-dark: #0B1B3D;
  --ldh-darker: #061026;
  --ldh-light: #F5F5F0;
  --ldh-white: #FFFFFF;
  --ldh-text-dark: #222222;
  --ldh-text-light: #CCCCCC;
  --ldh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

.ldh-body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ldh-text-dark);
  background-color: var(--ldh-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .ldh-brand-name, .ldh-logo {
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

.ldh-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.ldh-header {
  background-color: rgba(6, 16, 38, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ldh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.ldh-logo {
  color: var(--ldh-primary);
  font-size: 2rem;
  letter-spacing: 2px;
}

.ldh-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ldh-brand-name {
  color: var(--ldh-white);
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.ldh-brand-sub {
  color: var(--ldh-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.ldh-header-badge {
  color: var(--ldh-dark);
  background-color: var(--ldh-primary);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main */
.ldh-main {
  padding-top: 80px;
}

/* Hero */
.ldh-hero {
  background: linear-gradient(135deg, var(--ldh-darker) 0%, #112855 100%);
  color: var(--ldh-white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ldh-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.ldh-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.ldh-hero-kicker {
  color: var(--ldh-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  display: inline-block;
}

.ldh-hero-title {
  font-size: 4rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.ldh-hero-desc {
  font-size: 1.1rem;
  color: var(--ldh-text-light);
  margin-bottom: 48px;
  font-weight: 300;
}

.ldh-hero-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ldh-hero-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 20px 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  transition: var(--ldh-transition);
}

.ldh-hero-card:hover {
  border-color: var(--ldh-primary);
  background-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-5px);
}

.ldh-hc-title {
  color: var(--ldh-text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ldh-hc-val {
  color: var(--ldh-primary);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Sections */
.ldh-section {
  padding: 100px 0;
}

.ldh-bg-light {
  background-color: var(--ldh-light);
}

.ldh-bg-dark {
  background-color: var(--ldh-dark);
  color: var(--ldh-white);
}

.ldh-sec-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 16px;
}

.ldh-bg-dark .ldh-sec-title {
  color: var(--ldh-primary);
}

.ldh-sec-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  font-size: 1.1rem;
  color: #666;
}

.ldh-bg-dark .ldh-sec-desc {
  color: var(--ldh-text-light);
}

.ldh-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.ldh-grid-card {
  background-color: var(--ldh-white);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--ldh-transition);
  border-top: 4px solid var(--ldh-primary);
}

.ldh-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ldh-card-dark {
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--ldh-primary);
}

.ldh-card-dark:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ldh-gc-kicker {
  color: var(--ldh-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.ldh-gc-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: inherit;
}

.ldh-gc-text {
  font-size: 0.95rem;
  margin-bottom: 24px;
  color: #555;
}

.ldh-card-dark .ldh-gc-text {
  color: var(--ldh-text-light);
}

.ldh-gc-list {
  list-style: none;
}

.ldh-gc-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.ldh-card-dark .ldh-gc-list li {
  color: #DDD;
}

.ldh-gc-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ldh-primary);
  font-size: 14px;
}

/* Compliance Section */
.ldh-compliance-section {
  background-color: var(--ldh-darker);
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ldh-compliance-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.ldh-comp-badge {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ldh-primary);
  color: var(--ldh-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.ldh-comp-text {
  color: var(--ldh-text-light);
  max-width: 800px;
  font-size: 0.95rem;
}

.ldh-comp-bold {
  color: var(--ldh-primary);
  font-weight: 700;
}

.ldh-comp-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.ldh-clogo {
  height: 36px;
  opacity: 0.8;
  transition: var(--ldh-transition);
  filter: grayscale(100%) brightness(200%);
}

.ldh-clogo:hover {
  opacity: 1;
  filter: none;
}

/* Footer */
.ldh-footer {
  background-color: var(--ldh-dark);
  color: var(--ldh-text-light);
  padding: 80px 0 24px;
}

.ldh-footer-slogan {
  text-align: center;
  color: var(--ldh-primary);
  font-size: 2rem;
  margin-bottom: 64px;
}

.ldh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.ldh-fg-title {
  color: var(--ldh-white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ldh-fg-text {
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.ldh-fg-text strong {
  color: var(--ldh-white);
}

.ldh-fg-warning {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.8;
}

.ldh-fg-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ldh-f-link {
  color: var(--ldh-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--ldh-transition);
}

.ldh-f-link:hover {
  color: var(--ldh-primary);
  transform: translateX(5px);
}

.ldh-footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
  .ldh-hero-title { font-size: 3rem; }
  .ldh-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ldh-header-badge { display: none; }
  .ldh-brand-name { font-size: 1rem; }
  .ldh-hero-title { font-size: 2.5rem; }
  .ldh-hero-cards { flex-direction: column; }
  .ldh-footer-grid { grid-template-columns: 1fr; }
  .ldh-comp-logos { gap: 24px; }
  .ldh-clogo { height: 28px; }
}
