@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #0d2240;
  --navy-mid: #163560;
  --navy-light: #1e4a80;
  --gray-dark: #3a3f4b;
  --gray-mid: #6b7280;
  --gray-light: #e8ecf0;
  --gray-bg: #f4f6f9;
  --white: #ffffff;
  --gold: #b8943f;
  --gold-light: #d4af6a;
  --teal: #1a8a8a;
  --teal-light: #2eb8b8;
  --text-main: #1c2230;
  --text-secondary: #4a5568;
  --border: #dde3ec;
  --shadow: 0 2px 16px rgba(13,34,64,0.10);
  --shadow-lg: 0 8px 40px rgba(13,34,64,0.16);
  --radius: 6px;
  --radius-lg: 12px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }
input, textarea, select { font-family: var(--font-sans); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }
.lead { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.8; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-serif { font-family: var(--font-serif); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }
.bg-navy { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-gray { background: var(--gray-bg); }
.bg-white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-aside { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

/* ===== NAVIGATION ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1px 8px rgba(13,34,64,0.07);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-mark::before {
  content: '';
  display: block;
  width: 18px;
  height: 12px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 4px 4px;
}

.logo-mark::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.logo-text span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav > li { position: relative; }

.main-nav > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-dark);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--navy); background: var(--gray-bg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 999;
}

.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

.dropdown a:hover { background: var(--gray-bg); color: var(--navy); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-search {
  width: 190px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.85rem;
  color: var(--text-main);
  background: var(--gray-bg);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.nav-search:focus { border-color: var(--teal); background: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-sans);
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-light); border-color: var(--teal-light); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-sm { padding: 8px 18px; font-size: 0.825rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
  border-radius: 2px;
}

.section-divider.center { margin-left: auto; margin-right: auto; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card-body { padding: 28px; }

.card-img { width: 100%; height: 200px; object-fit: cover; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.card-meta .tag {
  background: var(--gray-bg);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.75rem;
}

.card-title { font-size: 1.1rem; margin-bottom: 10px; }
.card-text { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; }
.card-link { font-size: 0.875rem; font-weight: 600; color: var(--teal); transition: color 0.2s; }
.card-link:hover { color: var(--navy); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 96px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,34,64,0.97) 45%, rgba(26,138,138,0.18) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
}

.hero h1 { color: var(--white); margin-bottom: 22px; max-width: 680px; }

.hero .lead { color: rgba(255,255,255,0.78); max-width: 600px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(to left, rgba(26,138,138,0.1), transparent);
}

.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.page-hero .lead { color: rgba(255,255,255,0.72); max-width: 580px; margin-top: 12px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb .sep { font-size: 0.75rem; }

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}

.sidebar-widget-header {
  background: var(--navy);
  padding: 14px 20px;
}

.sidebar-widget-header h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.sidebar-widget-body { padding: 20px; }

.sidebar-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.875rem;
}

.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--text-secondary); transition: color 0.2s; }
.sidebar-list a:hover { color: var(--teal); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy-mid);
  padding: 40px 0;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ===== QUOTE / CALLOUT ===== */
.callout {
  background: var(--gray-bg);
  border-left: 4px solid var(--teal);
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
}

.callout p { color: var(--text-secondary); font-size: 1.025rem; font-style: italic; }
.callout cite { display: block; margin-top: 10px; font-size: 0.82rem; color: var(--gray-mid); font-style: normal; }

.callout-gold {
  background: rgba(184,148,63,0.08);
  border-left-color: var(--gold);
}

/* ===== AUDIO WAVEFORM VISUAL ===== */
.waveform-bar {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
}

.waveform-bar span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--teal);
  opacity: 0.7;
}

/* ===== FEATURE GRID ===== */
.feature-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-item:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(26,138,138,0.1); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

/* ===== FORMAT TABLE ===== */
.format-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.format-table th {
  background: var(--navy);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.format-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text-secondary);
}

.format-table tr:last-child td { border-bottom: none; }
.format-table tr:hover td { background: var(--gray-bg); }

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
}

.badge-green { background: rgba(26,138,138,0.12); color: var(--teal); }
.badge-gold { background: rgba(184,148,63,0.12); color: var(--gold); }
.badge-navy { background: rgba(13,34,64,0.1); color: var(--navy-mid); }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-main); margin-bottom: 6px; }

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,138,138,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--navy-mid);
  padding: 64px 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 24px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--teal-light); }

/* ===== TABS ===== */
.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 0;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 22px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-mid);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn.active { color: var(--navy); border-bottom-color: var(--teal); }
.tab-btn:hover { color: var(--navy); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== ACCORDION ===== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.accordion-toggle:hover { background: var(--gray-bg); }
.accordion-toggle.open { background: var(--gray-bg); color: var(--navy); }

.accordion-icon { font-size: 1.1rem; font-weight: 300; transition: transform 0.2s; flex-shrink: 0; }
.accordion-toggle.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding: 4px 20px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.accordion-body.open { display: block; }

/* ===== PROGRESS / RATING ===== */
.progress-bar-wrap { margin-bottom: 14px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 6px; color: var(--text-secondary); }
.progress-track { height: 7px; background: var(--gray-light); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-date { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-title { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.timeline-text { font-size: 0.875rem; color: var(--text-secondary); }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 48px;
}

.page-item {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}

.page-item:hover { border-color: var(--teal); color: var(--teal); }
.page-item.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 280px; }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--teal-light); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

.footer-logo-text { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { color: var(--gold); }

/* ===== POLICY PAGES ===== */
.policy-body h2 { font-size: 1.45rem; margin: 36px 0 12px; padding-top: 8px; border-top: 1px solid var(--border); }
.policy-body h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--navy-mid); }
.policy-body p { margin-bottom: 14px; }
.policy-body ul { margin: 12px 0 20px 20px; list-style: disc; }
.policy-body ul li { margin-bottom: 7px; font-size: 0.95rem; color: var(--text-secondary); }
.policy-body a { color: var(--teal); text-decoration: underline; }
.policy-last-updated { font-size: 0.82rem; color: var(--gray-mid); margin-bottom: 32px; padding: 10px 16px; background: var(--gray-bg); border-radius: var(--radius); display: inline-block; }

/* ===== THANK YOU PAGE ===== */
.thankyou-box {
  text-align: center;
  padding: 72px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(26,138,138,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

/* ===== AUTHOR ===== */
.author-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  margin: 36px 0;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-aside { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav, .header-cta .nav-search { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .tabs-nav { overflow-x: auto; }
  .page-hero { padding: 48px 0 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 24px; font-size: 0.9rem; color: var(--text-secondary); border-bottom: 1px solid var(--gray-light); }
.mobile-menu a:hover { color: var(--teal); background: var(--gray-bg); }

/* ===== MISC ===== */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { padding: 5px 13px; border-radius: 20px; background: var(--gray-bg); font-size: 0.8rem; color: var(--text-secondary); transition: background 0.2s, color 0.2s; }
.tag-pill:hover { background: var(--navy); color: var(--white); }

.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-rounded { border-radius: var(--radius-lg); }
.img-shadow { box-shadow: var(--shadow-lg); }

.highlight-box {
  background: rgba(26,138,138,0.06);
  border: 1px solid rgba(26,138,138,0.18);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.number-list { counter-reset: num-list; }
.number-list li {
  counter-increment: num-list;
  padding: 12px 0 12px 44px;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.number-list li:last-child { border-bottom: none; }
.number-list li::before {
  content: counter(num-list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.two-col-text { column-count: 2; column-gap: 40px; }
@media (max-width: 640px) { .two-col-text { column-count: 1; } }
