:root {
  --pdr-bg: #040a18;
  --pdr-surface: #0c1527;
  --pdr-surface-hover: #131f38;
  --pdr-gold: #d4af37;
  --pdr-gold-light: #f3d472;
  --pdr-text-main: #f8f9fa;
  --pdr-text-muted: #a0a8b5;
  --pdr-border: rgba(212, 175, 55, 0.15);
  --pdr-font-heading: 'Playfair Display', 'Didot', 'Georgia', serif;
  --pdr-font-body: 'Outfit', 'Helvetica Neue', 'Arial', sans-serif;
  --pdr-transition: all 0.3s ease;
}

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

body {
  font-family: var(--pdr-font-body);
  background-color: var(--pdr-bg);
  color: var(--pdr-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
.pdr-header-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(4, 10, 24, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pdr-border);
  z-index: 100;
  padding: 1.5rem 0;
}

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

.pdr-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdr-logo-area {
  display: flex;
  flex-direction: column;
}

.pdr-logo-abbr {
  font-family: var(--pdr-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pdr-gold);
  line-height: 1;
  letter-spacing: 2px;
}

.pdr-logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pdr-text-muted);
  margin-top: 0.25rem;
}

.pdr-badge-top {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--pdr-gold);
  color: var(--pdr-gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

/* Hero Section */
.pdr-showcase {
  padding: 12rem 0 6rem;
  background: radial-gradient(circle at center, #0e1b33 0%, var(--pdr-bg) 70%);
  text-align: center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--pdr-border);
}

.pdr-hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pdr-gold);
  margin-bottom: 1rem;
  display: block;
}

.pdr-hero-h1 {
  font-family: var(--pdr-font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--pdr-text-main);
  line-height: 1.1;
}

.pdr-hero-desc {
  font-size: 1.1rem;
  color: var(--pdr-text-muted);
  max-width: 700px;
  margin: 0 auto 4rem;
}

.pdr-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pdr-hero-item {
  background: var(--pdr-surface);
  border: 1px solid var(--pdr-border);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--pdr-transition);
}

.pdr-hero-item:hover {
  transform: translateY(-5px);
  border-color: var(--pdr-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pdr-hero-item-title {
  font-family: var(--pdr-font-heading);
  font-size: 1.25rem;
  color: var(--pdr-gold);
  margin-bottom: 0.5rem;
}

.pdr-hero-item-text {
  font-size: 0.9rem;
  color: var(--pdr-text-muted);
}

/* Standard Section */
.pdr-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--pdr-border);
}

.pdr-section-head {
  text-align: center;
  margin-bottom: 5rem;
}

.pdr-section-h2 {
  font-family: var(--pdr-font-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pdr-section-intro {
  color: var(--pdr-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pdr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pdr-card {
  background: var(--pdr-surface);
  border: 1px solid var(--pdr-border);
  padding: 3rem 2rem;
  border-radius: 8px;
  transition: var(--pdr-transition);
  position: relative;
  overflow: hidden;
}

.pdr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pdr-gold), transparent);
  opacity: 0;
  transition: var(--pdr-transition);
}

.pdr-card:hover {
  background: var(--pdr-surface-hover);
}

.pdr-card:hover::before {
  opacity: 1;
}

.pdr-card-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pdr-gold);
  margin-bottom: 1rem;
  display: block;
}

.pdr-card-h3 {
  font-family: var(--pdr-font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pdr-card-p {
  color: var(--pdr-text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.pdr-card-list {
  border-top: 1px solid var(--pdr-border);
  padding-top: 1.5rem;
}

.pdr-card-list li {
  font-size: 0.9rem;
  color: var(--pdr-text-main);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.pdr-card-list li::before {
  content: '✦';
  color: var(--pdr-gold);
  margin-right: 0.75rem;
  font-size: 0.8rem;
}

/* Footer */
.pdr-footer-wrap {
  background: #020611;
  padding: 6rem 0 3rem;
}

.pdr-footer-top {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--pdr-border);
}

.pdr-footer-slogan {
  font-family: var(--pdr-font-heading);
  font-size: 2.5rem;
  color: var(--pdr-gold);
  font-style: italic;
}

.pdr-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.pdr-footer-col h4 {
  font-family: var(--pdr-font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--pdr-gold);
}

.pdr-footer-col p {
  color: var(--pdr-text-muted);
  font-size: 0.95rem;
}

.pdr-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.pdr-contacts {
  color: var(--pdr-text-muted);
  font-size: 0.9rem;
}

.pdr-contacts span {
  display: inline-block;
  margin-right: 1.5rem;
}

.pdr-nav {
  display: flex;
  gap: 1.5rem;
}

.pdr-nav a {
  color: var(--pdr-text-muted);
  font-size: 0.9rem;
  transition: var(--pdr-transition);
}

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

/* Responsive */
@media (max-width: 992px) {
  .pdr-hero-h1 { font-size: 3.5rem; }
  .pdr-grid-3, .pdr-hero-grid { grid-template-columns: 1fr; }
  .pdr-footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .pdr-footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .pdr-contacts span { display: block; margin: 0.5rem 0; }
}

@media (max-width: 768px) {
  .pdr-hero-h1 { font-size: 2.5rem; }
  .pdr-header-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
