/* ============================================================
   Compliance Defense Group — Main Stylesheet
   Brand: Navy #0A2540 | Gold #D4AF37 | Slate #4A5568
   Burgundy #800020 | White #FFFFFF | Light Gray #F8F9FA
   WCAG 2.1 AA Compliant
   ============================================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@500;600;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1A1A1A;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #0A2540; text-decoration: underline; }
a:hover { color: #D4AF37; }

/* === ACCESSIBILITY: SKIP LINK === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  padding: 0;
}
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  width: auto; height: auto;
  padding: 12px 24px;
  background: #D4AF37;
  color: #0A2540;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  z-index: 9999;
  outline: 3px solid #0A2540;
}

/* === SCREEN READER ONLY === */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === FOCUS STYLES === */
*:focus-visible {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 48px 0; } }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.2;
  color: #0A2540;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
p { margin-bottom: 1rem; color: #1A1A1A; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #4A5568;
  line-height: 1.8;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
  display: block;
}

/* === GOLD UNDERLINE ACCENT === */
.gold-underline {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 3px solid #D4AF37;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 52px;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn:focus-visible {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

.btn-primary {
  background: #0A2540;
  color: #fff;
  border-color: #0A2540;
}
.btn-primary:hover {
  background: #061929;
  border-color: #061929;
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #0A2540;
  border-color: #0A2540;
}
.btn-secondary:hover {
  background: #0A2540;
  color: #fff;
  text-decoration: none;
}

.btn-gold {
  background: #D4AF37;
  color: #0A2540;
  border-color: #D4AF37;
  font-weight: 700;
}
.btn-gold:hover {
  background: #b8962e;
  border-color: #b8962e;
  color: #0A2540;
  text-decoration: none;
}

.btn-white {
  background: #fff;
  color: #0A2540;
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #0A2540;
  text-decoration: none;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* === HEADER / NAV === */
header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 88px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0A2540;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: #D4AF37;
  color: #0A2540;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0A2540;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100px; left: 0; right: 0;
    background: #fff;
    border-bottom: 2px solid #D4AF37;
    padding: 24px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(10,37,64,0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.1rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 16px; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* === HERO === */
.hero {
  background: #0A2540;
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 { color: #fff; max-width: 800px; }
.hero .lead { color: rgba(255,255,255,0.88); max-width: 700px; margin: 24px 0 32px; }
.hero .gold-line {
  width: 60px; height: 4px;
  background: #D4AF37;
  margin-bottom: 24px;
}

.hero-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
  max-width: 640px;
}
.hero-value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}
.hero-value-item .check {
  color: #D4AF37;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 8px 0 32px;
  font-style: italic;
}
.hero-lead-link {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}
.hero-lead-link:hover { color: #D4AF37; }

@media (max-width: 600px) {
  .hero-value-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
}

/* === SECTION BACKGROUNDS === */
.bg-navy { background: #0A2540; }
.bg-light { background: #F8F9FA; }
.bg-white { background: #fff; }

/* === SECTION HEADINGS === */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-heading h2 { margin-bottom: 16px; }
.section-heading p { color: #4A5568; max-width: 640px; margin: 0 auto; }
.section-heading .gold-rule {
  width: 48px; height: 3px;
  background: #D4AF37;
  margin: 16px auto 0;
}

/* === CARDS === */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.08);
  border-top: 4px solid #D4AF37;
}

.card-icon {
  width: 48px; height: 48px;
  background: rgba(10,37,64,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { color: #4A5568; font-size: 0.95rem; margin: 0; }

/* === COMPARISON TABLE === */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}
.comparison-table th {
  background: #0A2540;
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.comparison-table th:first-child { border-radius: 8px 0 0 0; }
.comparison-table th:last-child { border-radius: 0 8px 0 0; }
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #F8F9FA; }
.comparison-table .col-defense { color: #0A2540; font-weight: 600; }
.comparison-table .col-compliance { color: #4A5568; }

/* === PULL QUOTE === */
.pull-quote {
  border-left: 5px solid #D4AF37;
  padding: 24px 32px;
  margin: 40px 0;
  background: #F8F9FA;
  border-radius: 0 8px 8px 0;
}
.pull-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #0A2540;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #4A5568;
  font-style: normal;
}

/* === STEP PROCESS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } }

.step-item { text-align: center; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #D4AF37;
  color: #0A2540;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.step-item h3 { font-size: 0.95rem; margin-bottom: 6px; }
.step-item p { font-size: 0.875rem; color: #4A5568; }

/* === URGENCY / BURGUNDY CALLOUT === */
.urgency-callout {
  background: #800020;
  color: #fff;
  border-radius: 8px;
  padding: 32px;
  margin: 40px 0;
}
.urgency-callout h3 { color: #fff; margin-bottom: 12px; }
.urgency-callout p { color: rgba(255,255,255,0.9); margin: 0; }

/* === STATS STRIP === */
.stats-strip {
  background: #0A2540;
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; gap: 32px; } }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #D4AF37;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* === ACCORDION (FAQ) === */
.accordion { border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid #e5e7eb; }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0A2540;
  text-align: left;
  min-height: 64px;
  transition: background 200ms;
}
.accordion-trigger:hover { background: #F8F9FA; }
.accordion-trigger[aria-expanded="true"] { background: #0A2540; color: #fff; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); color: #D4AF37; }

.accordion-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 200ms, color 200ms;
  line-height: 1;
}

.accordion-panel {
  display: none;
  padding: 24px;
  background: #F8F9FA;
  border-top: 1px solid #e5e7eb;
}
.accordion-panel[data-open] { display: block; }
.accordion-panel p, .accordion-panel ul { color: #4A5568; font-size: 0.95rem; }
.accordion-panel ul { padding-left: 20px; }
.accordion-panel li { margin-bottom: 6px; }

/* === FORMS === */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.req-mark { color: #800020; margin-left: 2px; }
.req-note { font-size: 0.8rem; color: #4A5568; font-weight: 400; margin-left: 4px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  background: #fff;
  transition: border-color 200ms;
  min-height: 52px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0A2540;
  outline: 3px solid #D4AF37;
  outline-offset: 1px;
}
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #800020;
}
.field-error {
  color: #800020;
  font-size: 0.875rem;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}
.field-error.show { display: block; }
.field-hint {
  color: #4A5568;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* === FOOTER === */
footer {
  background: #0A2540;
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.7); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 200ms;
}
.footer-col a:hover { color: #D4AF37; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0; }

/* === DISCLAIMER === */
.disclaimer-strip {
  background: #F8F9FA;
  border-top: 1px solid #e5e7eb;
  padding: 16px 0;
  text-align: center;
}
.disclaimer-strip p {
  font-size: 0.8rem;
  color: #4A5568;
  margin: 0;
}

/* === BADGE / TAG === */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-navy { background: #0A2540; color: #fff; }
.badge-gold { background: #D4AF37; color: #0A2540; }
.badge-burgundy { background: #800020; color: #fff; }

/* === MODULE LIST (service page) === */
.module-list { display: flex; flex-direction: column; gap: 16px; }
.module-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #D4AF37;
  align-items: flex-start;
}
.module-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4AF37;
  flex-shrink: 0;
  line-height: 1;
  min-width: 36px;
}
.module-content h3 { font-size: 1rem; margin-bottom: 6px; }
.module-content p { font-size: 0.9rem; color: #4A5568; margin: 0; }

/* === CTA SECTION === */
.cta-section {
  background: #0A2540;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; }
.cta-section .cta-group { justify-content: center; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: #0A2540;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 16px auto 0; font-size: 1.1rem; }
.page-hero .gold-rule { width: 48px; height: 3px; background: #D4AF37; margin: 20px auto 0; }

/* === BREADCRUMB === */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.875rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb li::after { content: '›'; margin-left: 4px; color: #4A5568; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: #4A5568; text-decoration: none; }
.breadcrumb a:hover { color: #0A2540; }
.breadcrumb [aria-current="page"] { color: #0A2540; font-weight: 600; }

/* === CHECKLIST (lead magnet) === */
.risk-checklist { list-style: none; }
.risk-checklist li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
  align-items: flex-start;
}
.risk-checklist li:last-child { border-bottom: none; }
.check-icon { color: #800020; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,37,64,0.08);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(10,37,64,0.12); text-decoration: none; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-category { font-size: 0.75rem; font-weight: 600; color: #D4AF37; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.05rem; color: #0A2540; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; color: #4A5568; flex: 1; margin: 0; }
.blog-card-footer { padding: 16px 24px; border-top: 1px solid #e5e7eb; font-size: 0.8rem; color: #4A5568; display: flex; justify-content: space-between; }

/* === BLOG ARTICLE === */
.blog-content {
  max-width: 780px;
  margin: 0 auto;
}
.blog-content h2 { margin: 48px 0 16px; font-size: 1.6rem; }
.blog-content h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.blog-content p { margin-bottom: 20px; line-height: 1.8; color: #1A1A1A; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-content li { margin-bottom: 8px; line-height: 1.7; }

/* === LEGAL PAGES === */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { margin: 40px 0 12px; font-size: 1.3rem; }
.legal-content p { color: #4A5568; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { color: #4A5568; margin-bottom: 6px; }

/* === CREDENTIAL BAR === */
.credential-bar {
  background: #F8F9FA;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}
.credential-bar-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A2540;
  margin: 0;
  text-align: center;
}
.credential-bar-items span { padding: 2px 6px; }
.cred-divider { color: #D4AF37; font-weight: 700; }

/* === NAV DROPDOWN === */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1A1A1A;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-toggle:hover { color: #D4AF37; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  min-width: 180px;
  list-style: none;
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #1A1A1A;
  text-decoration: none;
  font-size: 0.9rem;
}
.nav-dropdown-menu li a:hover { background: #F8F9FA; color: #D4AF37; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
@media (max-width: 768px) {
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

/* === VIDEO TIPS === */
.video-tips-section {
  width: 100%;
  padding: 50px 20px;
  background: #f8f8f8;
}
.video-tips-wrapper {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}
.video-tips-content h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}
.video-tips-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  max-width: 750px;
  margin: 0 auto 30px auto;
}
.youtube-playlist-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: #000;
}
.youtube-playlist-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .video-tips-section { padding: 35px 15px; }
  .video-tips-content h2 { font-size: 26px; }
  .video-tips-content p { font-size: 16px; }
  .youtube-playlist-container { border-radius: 12px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* === PRINT === */
@media print {
  header, footer, .cta-section, .nav-toggle { display: none !important; }
  body { font-size: 12pt; }
}
