/* ==========================================================================
   MINIMALIST DESIGN SYSTEM & TOKENS
   ========================================================================== */
:root {
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
  
  /* Color Palette (Emerald Accent & Neutral Deep Dark) */
  --bg-color: #060708;           /* Pure Obsidian Black */
  --surface-color: #0c0d0f;      /* Muted Dark Gray */
  --surface-card: #090a0c;       /* Form / Compare card background */
  --border-color: #1a1c1e;       /* Very subtle divider border */
  --border-focus: #10b981;       /* Emerald Focus */
  
  /* Accent Colors */
  --accent: #10b981;             /* Emerald 500 */
  --accent-light: #34d399;       /* Mint 400 */
  --accent-rgb: 16, 185, 129;
  
  /* Status Colors */
  --color-success: #10b981;
  --color-warning: #fbbf24;      /* Amber warning */
  --color-danger: #f87171;       /* Rose red */
  
  /* Typography Colors */
  --text-primary: #f8fafc;       /* Off-white */
  --text-secondary: #94a3b8;     /* Slate Gray */
  --text-muted: #64748b;         /* Muted Gray */

  /* Radii */
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  /* Premium radial top glow */
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.05) 0%, transparent 55%), var(--bg-color);
}

body.modal-open {
  overflow: hidden;
}

.ph-bold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
  font-family: var(--font-sans);
}

.ph-arrow-down::before { content: "\2193"; }
.ph-arrow-right::before { content: "\2192"; }
.ph-arrow-square-out::before { content: "\2197"; }
.ph-bell::before { content: "!"; }
.ph-chat-centered-text::before { content: "\2630"; }
.ph-chats::before { content: "@"; }
.ph-check::before,
.ph-check-circle::before { content: "\2713"; }
.ph-envelope::before,
.ph-envelope-simple::before { content: "\2709"; }
.ph-info::before { content: "i"; }
.ph-paper-plane-right::before { content: "\2192"; }
.ph-qr-code::before { content: "\25A6"; }
.ph-receipt::before { content: "\2261"; }
.ph-shield-check::before { content: "\25C7"; }
.ph-spinner::before { content: "\25CC"; }
.ph-tag::before { content: "#"; }
.ph-warning::before,
.ph-warning-octagon::before { content: "!"; }
.ph-x-circle::before { content: "\00D7"; }

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-color);
}

/* ==========================================================================
   LAYOUT WRAPPER (SINGLE COLUMN DOCUMENT)
   ========================================================================== */
.content-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-header {
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(6, 7, 8, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.highlight {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links .btn-nav {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--accent-light);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-links .btn-nav:hover {
  background-color: var(--accent);
  color: var(--bg-color);
  border-color: var(--accent);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 7rem 0 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--accent-light);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  max-width: 65ch;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-color);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: var(--surface-color);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* ==========================================================================
   CHECKLIST & SECTIONS
   ========================================================================== */
.info-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2.25rem;
  color: var(--text-primary);
}

.section-num {
  color: rgba(16, 185, 129, 0.35);
  font-weight: 500;
  margin-right: 0.25rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checklist li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-inline: -1rem;
}

.checklist li:hover {
  background-color: rgba(255, 255, 255, 0.02);
  transform: translateX(4px);
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Red/Amber warning checklist item styling */
.check-icon.warning {
  background-color: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--color-warning);
}

.check-text {
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.check-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.link-styled {
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s;
}

.link-styled:hover {
  border-bottom-color: var(--accent-light);
}

/* ==========================================================================
   COMPARE SECTION (HỢP VỚI AI)
   ========================================================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-column {
  background-color: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.compare-column:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.compare-column.reject:hover {
  border-color: rgba(248, 113, 113, 0.3);
  box-shadow: 0 12px 30px rgba(248, 113, 113, 0.04);
}

.compare-column.accept:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.04);
}

/* Accent top lines */
.compare-column.reject {
  border-top: 3px solid var(--color-danger);
}

.compare-column.accept {
  border-top: 3px solid var(--color-success);
}

.compare-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reject .compare-subtitle {
  color: var(--color-danger);
}

.accept .compare-subtitle {
  color: var(--color-success);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  position: relative;
  padding-left: 1.25rem;
}

.compare-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.accept .compare-list li::before {
  content: "+";
  color: var(--accent-light);
  font-weight: bold;
}

.compare-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   FAQ LIST
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.faq-answer strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   FORM & REGISTER
   ========================================================================== */
.register-section {
  padding: 4.5rem 0 6rem 0;
}

.register-intro {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 65ch;
}

.pricing-link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02)),
    var(--surface-card);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-link-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: var(--accent-light);
  font-size: 1.25rem;
}

.pricing-link-copy {
  min-width: 0;
}

.pricing-link-copy h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.pricing-link-copy p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pricing-link-button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

.register-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}

.register-form-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.payment-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.payment-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.payment-title i {
  color: var(--accent-light);
}

.payment-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.qr-code-wrapper {
  background-color: #ffffff;
  padding: 0.75rem;
  border-radius: 12px;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.qr-code-wrapper:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15), 0 0 0 1px rgba(16, 185, 129, 0.2);
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.payment-instructions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.instruction-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.instruction-item i {
  color: var(--accent-light);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.instruction-item strong {
  color: var(--text-primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  background-color: rgba(4, 5, 6, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.8rem 1rem 0.8rem 2.75rem;
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-wrapper textarea {
  height: 110px;
  resize: vertical;
  padding-top: 0.8rem;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-top: 0.2rem;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.4;
  user-select: none;
  cursor: pointer;
}

/* Submit status styles */
.form-status {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 1.25rem;
}

.form-status.success {
  display: flex;
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-light);
}

.form-status.warning {
  display: flex;
  background-color: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.24);
  color: var(--color-warning);
}

.form-status.error {
  display: flex;
  background-color: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: var(--color-danger);
}

/* ==========================================================================
   PAYMENT CONFIRMATION MODAL
   ========================================================================== */
.payment-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.payment-confirm-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.payment-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 7, 0.78);
  backdrop-filter: blur(14px);
}

.payment-confirm-dialog {
  position: relative;
  width: min(100%, 440px);
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0)),
    var(--surface-card);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 1.75rem;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-confirm-modal.is-open .payment-confirm-dialog {
  transform: translateY(0) scale(1);
}

.payment-confirm-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.24);
  color: var(--accent-light);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.payment-confirm-copy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.payment-confirm-kicker {
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-confirm-copy h2 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 1.45rem;
  line-height: 1.2;
}

.payment-confirm-copy p:last-child {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.55;
}

.payment-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.payment-confirm-actions .btn {
  min-height: 44px;
  padding-inline: 1rem;
}

.payment-confirm-cancel {
  color: #cbd5e1;
}

.payment-confirm-approve {
  white-space: nowrap;
}

/* ==========================================================================
   MINIMAL FOOTER
   ========================================================================== */
.main-footer {
  padding: 4.5rem 0 3.5rem 0;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.footer-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-left .logo {
  font-size: 1rem;
}

.tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-right a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: var(--text-primary);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ==========================================================================
   UTILITY ANIMATIONS
   ========================================================================== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Utility Text Styles */
.text-warning {
  color: var(--color-warning);
}

.text-danger {
  color: var(--color-danger);
}

.nobr {
  white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .register-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-link-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-link-button {
    width: 100%;
  }

  .payment-confirm-dialog {
    padding: 1.35rem;
  }

  .payment-confirm-actions {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-right {
    align-items: flex-start;
  }

  .nav-links a:not(.btn-nav) {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ACCESSIBILITY & REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
