/* ============================================
   PRODUCTION-READY CSS - PROFESSIONAL LAYOUT
   ============================================ */

/* ========== TYPOGRAPHY SYSTEM ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 { font-size: 2rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
p { margin: 0; line-height: 1.6; }

a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* ========== LAYOUT & CONTAINER ========== */
.container {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 0 16px;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f7f9ff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.site-header::after {
  content: "";
  display: block;
  height: 6px;
  background: #153fae;
}

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

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

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-line-1 {
  color: #1e3fae;
  font-weight: 700;
  font-size: 18px;
}

.brand-line-2 {
  color: #f57c00;
  font-weight: 600;
  font-size: 16px;
}

.main-nav {
  margin-left: auto;
  margin-right: 16px;
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: #3d3d3d;
  font-weight: 600;
  font-size: 14px;
}

.nav-list a:hover {
  color: #153fae;
}

.btn.cta {
  background: #123ea8;
  color: #fff;
  border-radius: 10px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.btn.cta:hover {
  filter: brightness(0.95);
}

/* ========== SECTION SPACING ========== */
.section {
  padding: 60px 0;
}

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

/* ========== HERO SECTION ========== */
.hero {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
}

.hero-card {
  background: linear-gradient(135deg, #133ea8 0%, #1e4ed8 100%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(19, 62, 168, 0.2);
}

@media (max-width: 768px) {
  .hero-card {
    padding: 24px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-title h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-title h1 {
    font-size: 20px;
  }
}

.hero-tagline {
  margin: 0 0 12px;
  font-size: 16px;
  opacity: 0.95;
}

.hero-desc {
  margin: 0 0 20px;
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.6;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill.orange {
  background: #f57c00;
  border-color: #f57c00;
}

.pill.green {
  background: #10b981;
  border-color: #10b981;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn.primary {
  background: #ff6a00;
  color: #fff;
  border-radius: 10px;
  height: 44px;
  line-height: 44px;
  padding: 0 24px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
}

.btn.ghost {
  background: #fff;
  color: #163ea8;
  border-radius: 10px;
  height: 44px;
  line-height: 44px;
  padding: 0 24px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
}

.countdown-card {
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.cd-title {
  margin: 0 0 12px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

@media (max-width: 480px) {
  .cd-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

.cd-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cd-box strong {
  display: block;
  font-size: 22px;
  color: #111;
}

.cd-box span {
  color: #555;
  font-size: 12px;
}

.cd-note {
  margin: 12px 0 0;
  color: #666;
  font-size: 13px;
  text-align: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-right {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ========== OBJECTIVE SECTION ========== */
.objective {
  background: linear-gradient(90deg, #f7fbff 0%, #fff9ed 100%);
}

.objective-wrap {
  text-align: center;
  padding: 40px 20px;
}

.objective-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.objective-head h2 {
  margin: 0;
  font-size: 24px;
  color: #1842b0;
}

@media (max-width: 768px) {
  .objective-head h2 {
    font-size: 20px;
  }
}

.obj-icon {
  color: #f59e0b;
  font-size: 20px;
}

.objective-text {
  margin: 0 auto;
  max-width: 900px;
  font-size: 16px;
  color: #2b2b2b;
  line-height: 1.7;
}

/* ========== FEATURES SECTION ========== */
.features {
  background: #f9fbff;
}

.features-head {
  text-align: center;
  margin-bottom: 32px;
}

.features-head h2 {
  margin: 0;
  font-size: 24px;
  color: #1a43b1;
}

@media (max-width: 768px) {
  .features-head h2 {
    font-size: 20px;
  }
}

.feat-icon {
  font-size: 24px;
  color: #1a43b1;
  margin-bottom: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  background: #fff;
  border: 1px solid #e9eef7;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(16,24,40,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16,24,40,0.1);
}

.feat-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: #2142a6;
}

.feat-card h3 .en {
  color: #6b7280;
  font-weight: 600;
}

.feat-card p {
  margin: 0;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.6;
}

.fee strong {
  color: #f57c00;
  font-size: 18px;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #16a34a;
  font-weight: 700;
}

/* ========== REGISTRATION PROCESS SECTION ========== */
.registration-process {
  background: #f5f7fa;
}

.process-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.process-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.process-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .process-head h2 {
    font-size: 20px;
  }
}

.process-icon {
  width: 44px;
  height: 44px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon svg {
  width: 24px;
  height: 24px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.step-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 20px 20px 80px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
  transition: transform 0.2s ease;
}

@media (max-width: 640px) {
  .step-card {
    padding-left: 70px;
  }
}

.step-card:hover {
  transform: translateX(4px);
}

.step-badge {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #1e3a8a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.6;
}

.process-cta {
  display: flex;
  justify-content: center;
}

.btn.register-now {
  background: #f57c00;
  color: #fff;
  border-radius: 10px;
  height: 48px;
  line-height: 48px;
  padding: 0 28px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(245,124,0,0.3);
}

.btn.register-now:hover {
  filter: brightness(1.05);
}

/* ========== DATES SECTION ========== */
.dates {
  background: linear-gradient(90deg, #f1f6ff 0%, #fff8e9 100%);
}

.dates-wrap {
  text-align: center;
}

.dates-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.dates-head h2 {
  margin: 0;
  font-size: 24px;
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .dates-head h2 {
    font-size: 20px;
  }
}

.dates-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}

@media (max-width: 1100px) {
  .dates-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .dates-grid {
    grid-template-columns: 1fr;
  }
}

.date-card {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.date-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.date-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
}

.date-card .hi {
  margin: 0;
  font-weight: 700;
  color: #111827;
  font-size: 15px;
}

.date-card .en {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 13px;
}

.date-card.g h3 { color: #16a34a; }
.date-card.r h3 { color: #dc2626; }
.date-card.b h3 { color: #2563eb; }
.date-card.o h3 { color: #f59e0b; }

/* ========== REWARDS SECTION ========== */
.rewards {
  background: linear-gradient(180deg, #f7fafc 0%, #fefdf8 100%);
  padding: 80px 0;
}

@media (max-width: 768px) {
  .rewards {
    padding: 60px 0;
  }
}

.rewards-wrap {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.rewards-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.rewards-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .rewards-head h2 {
    font-size: 20px;
  }
}

.rw-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.total-pill {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a00 0%, #ffb84d 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(255,122,0,0.3);
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .rewards-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .rewards-grid {
    grid-template-columns: 1fr;
  }
}

.reward-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-width: 2.5px;
  border-style: solid;
  transition: transform 0.2s ease;
}

.reward-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.reward-card .rc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.reward-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #1f2937;
}

.reward-card .badge {
  font-size: 22px;
}

.reward-card p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.reward-card.o { border-color: #f59e0b; }
.reward-card.b { border-color: #3b82f6; }
.reward-card.g { border-color: #22c55e; }
.reward-card.p { border-color: #a855f7; }

/* ========== CONTACT SECTION ========== */
.contact {
  background: #fbfdfd;
}

.contact-head {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.contact-head h2 {
  margin: 0;
  font-size: 24px;
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .contact-head h2 {
    font-size: 20px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-card .cc-ico {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #1e3a8a;
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  color: #0b57d0;
  text-decoration: none;
  font-size: 14px;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ========== REGISTRATION FORM ========== */
.card {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .card {
    padding: 24px;
  }
}

.register-form {
  margin-top: 32px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

@media (max-width: 768px) {
  .grid.two {
    grid-template-columns: 1fr;
  }
}

.register-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.register-form label span {
  color: #374151;
}

.register-form input,
.register-form select {
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.register-form input:focus,
.register-form select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.register-form input::placeholder {
  color: #9ca3af;
}

.btn.full {
  width: 100%;
  text-align: center;
  height: 48px;
  line-height: 48px;
  margin-top: 20px;
}

.btn.orange {
  background: #d97706;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn.orange:hover {
  background: #b45309;
}

.fee-note.center {
  text-align: center;
  margin-top: 16px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

/* ========== POSTER SECTION ========== */
.poster {
  background: #ffffff;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .poster {
    padding: 60px 0;
  }
}

.poster-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.poster-download-text {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 15px;
}

.btn.download-pdf {
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.btn.download-pdf:hover {
  filter: brightness(0.95);
}

.poster-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .poster-card {
    padding: 28px;
  }
}

.poster-title {
  text-align: center;
  margin-bottom: 24px;
}

.cap-icon-large {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.poster-title h1 {
  margin: 12px 0;
  font-size: 26px;
  color: #1e3a8a;
  font-weight: 700;
}

@media (max-width: 768px) {
  .poster-title h1 {
    font-size: 22px;
  }
}

.poster-slogan {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 17px;
  font-style: italic;
}

.poster-highlight {
  background: linear-gradient(90deg, #fef3c7 0%, #dbeafe 100%);
  padding: 16px 24px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.poster-highlight strong {
  color: #1e40af;
  font-size: 17px;
}

.sparkle {
  font-size: 20px;
}

.poster-details {
  margin-bottom: 28px;
  display: grid;
  gap: 14px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.detail-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.detail-item p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
}

.poster-organizer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  background: #fef2f2;
  border-radius: 8px;
}

.location-icon {
  color: #dc2626;
  font-size: 20px;
}

.poster-organizer p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.poster-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px;
}

.poster-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 14px;
}

.contact-icon-small {
  font-size: 18px;
}

.poster-closing {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.poster-closing p {
  margin: 0;
  color: #1e40af;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #1e3a8a;
  color: #fff;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 40px;
  padding: 60px 0;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
}

.footer-column {
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-icon {
  flex-shrink: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.brand-year {
  color: #fbbf24;
  font-size: 17px;
  font-weight: 600;
}

.footer-org {
  margin: 12px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-column h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-link-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0;
}

.footer-bottom {
  padding: 32px 0;
  text-align: center;
}

.footer-quote {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
}

.footer-disclaimer {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
}

.footer-copyright {
  margin: 0;
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .header-row {
    height: 64px;
    padding: 0 16px;
  }

  .brand-line-1 {
    font-size: 16px;
  }

  .brand-line-2 {
    font-size: 14px;
  }

  .btn.cta {
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .section {
    padding: 32px 0;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .card, .btn {
    box-shadow: none;
  }

  .btn {
    display: none;
  }
}