/* ==========================================================================
   Elevatifier Design System & Stylesheet
   Luxury Obsidian & Gold Theme for Official Certificate Portal
   ========================================================================== */

:root {
  --bg-primary: #060913;
  --bg-secondary: #0b1329;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(26, 38, 66, 0.85);
  --bg-input: rgba(11, 19, 41, 0.8);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(56, 189, 248, 0.3);
  --border-gold: rgba(212, 175, 55, 0.35);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #f3d068;
  
  --primary: #38bdf8;
  --primary-hover: #0ea5e9;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f7df8d 50%, #c69214 100%);
  --gold-badge: #d4af37;
  --accent-cyan: #38bdf8;
  --accent-emerald: #10b981;
  --accent-purple: #818cf8;
  
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 30px -10px rgba(56, 189, 248, 0.1);
  --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.25);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cinzel', Georgia, serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Subtle background grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 36px;
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 50;
  transition: all 0.3s ease;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: scale(1.01);
}

.brand-logo-img {
  height: 42px;
  max-height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
  transition: filter 0.2s ease;
}

.brand-text h1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.brand-tag {
  font-size: 11px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.support-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.support-pill-link:hover {
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 30px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
}

.btn-nav-verify {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-nav-verify:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px -3px rgba(56, 189, 248, 0.25);
}

/* Navbar Responsive Breakpoints */
@media (max-width: 860px) {
  .navbar {
    padding: 16px 0;
    margin-bottom: 28px;
  }
  .brand-text h1 {
    font-size: 18px;
  }
  .nav-links {
    gap: 10px;
  }
  .support-pill-link, .btn-nav-verify {
    padding: 7px 14px;
    font-size: 12.5px;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 14px 0 16px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .brand-logo {
    justify-content: center;
  }
  .brand-logo-img {
    height: 36px;
  }
  .brand-text h1 {
    font-size: 17px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .support-pill-link, .btn-nav-verify, .nav-link {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    min-width: 140px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .navbar {
    gap: 12px;
    padding: 12px 0 14px 0;
  }
  .brand-logo-img {
    height: 32px;
  }
  .brand-text h1 {
    font-size: 15.5px;
  }
  .brand-tag {
    font-size: 9.5px;
    padding: 2px 7px;
  }
  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .support-pill-link, .btn-nav-verify, .nav-link {
    min-width: 0;
    width: 100%;
    padding: 8px 6px;
    font-size: 11.5px;
    gap: 5px;
  }
}

/* ==========================================================================
   Hero Header
   ========================================================================== */
.hero-header {
  text-align: center;
  margin-bottom: 44px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--text-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.hero-title span.gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Main Grid Layout (Form + Preview)
   ========================================================================== */
.portal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 80px;
}

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

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), rgba(212, 175, 55, 0.4), transparent);
}

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

.card-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.badge-step {
  font-size: 12px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-cyan);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
}

/* ==========================================================================
   Form Elements
   ========================================================================== */
.form-section {
  margin-bottom: 24px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.form-group {
  margin-bottom: 18px;
}

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

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

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.required-star {
  color: #f43f5e;
}

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

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
  background: rgba(15, 23, 42, 0.95);
}

.form-control::placeholder {
  color: #475569;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

select.form-control option {
  background: #0f172a;
  color: #fff;
  padding: 8px;
}

/* Strictly Enforced Duration Pill Selectors */
.duration-selector-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.duration-pill-label {
  cursor: pointer;
}

.duration-pill-label input[type="radio"] {
  display: none;
}

.duration-pill {
  border: 1px solid var(--border-subtle);
  background: var(--bg-input);
  padding: 14px 10px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.duration-pill:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.05);
}

.duration-pill-label input[type="radio"]:checked + .duration-pill {
  border-color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.15);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.duration-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.duration-pill-label input[type="radio"]:checked + .duration-pill .duration-title {
  color: var(--accent-cyan);
}

.duration-desc {
  font-size: 11px;
  color: var(--text-muted);
}

/* Immutability Notice Alert */
.notice-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.notice-icon {
  color: var(--text-gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-text {
  font-size: 12.5px;
  color: #e2e8f0;
  line-height: 1.5;
}

.notice-text strong {
  color: var(--text-gold);
}

/* Checkout Button */
.btn-checkout {
  width: 100%;
  background: var(--gold-gradient);
  border: none;
  color: #060913;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.2px;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.4);
}

.btn-checkout:active {
  transform: translateY(0);
}

.btn-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   Live Certificate Preview Sidebar
   ========================================================================== */
.preview-sticky {
  position: sticky;
  top: 24px;
}

.live-preview-box {
  background: #fdfdfb;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #0b1329;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 4px solid #1c2541;
  outline: 2px solid #d4af37;
  aspect-ratio: 1.414 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  user-select: none;
}

/* Bold Anti-Screenshot Diagonal Watermark */
.demo-watermark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-stamp {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 900;
  color: rgba(220, 38, 38, 0.35);
  border: 3px dashed rgba(220, 38, 38, 0.45);
  padding: 10px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: rotate(-25deg);
  text-align: center;
  white-space: nowrap;
}

.demo-preview-notice {
  font-size: 11px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
}

.prev-top {
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 6px;
}

.prev-org {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0b1329;
}

.prev-heading {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #c69214;
  font-weight: 700;
}

.prev-body {
  text-align: center;
  padding: 6px 0;
}

.prev-sub {
  font-size: 7.5px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prev-student-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 3px 0;
  border-bottom: 1px dashed #d4af37;
  display: inline-block;
  padding: 0 10px;
}

.prev-text {
  font-size: 8.5px;
  color: #334155;
  line-height: 1.25;
}

.prev-track-badge {
  display: inline-block;
  font-weight: 700;
  color: #0369a1;
}

.prev-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  padding-top: 6px;
}

.prev-qr-placeholder {
  width: 52px;
  height: 52px;
  background: #f8fafc;
  border: 1.5px dashed #94a3b8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  color: #dc2626;
  text-align: center;
  border-radius: 4px;
  padding: 2px;
}

.prev-seal-placeholder {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, #f7df8d 0%, #d4af37 100%);
  border: 2px solid #b38714;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5px;
  font-weight: 800;
  color: #0b1329;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.prev-meta {
  text-align: right;
  font-size: 7px;
  color: #64748b;
  line-height: 1.35;
}


/* Order Summary Box */
.order-summary-box {
  margin-top: 20px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.summary-row.total {
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.total-price {
  color: var(--text-gold);
  font-size: 20px;
}

/* Trust Features List */
.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--accent-emerald);
  font-size: 14px;
}

/* ==========================================================================
   Success & Certificate Generation Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 7, 15, 0.88);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 1060px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.2);
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: rgba(244, 63, 94, 0.2);
  color: #f43f5e;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.modal-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Certificate Canvas Preview Container */
.cert-canvas-container {
  background: #020617;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 24px;
  text-align: center;
}

#certificateCanvas {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto;
}

/* Modal Actions */
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-download {
  background: var(--gold-gradient);
  border: none;
  color: #060913;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary-action {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary-action:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.verification-link-share-box {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.verification-link-share-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--accent-cyan);
  font-family: monospace;
  font-size: 13px;
  outline: none;
}

.btn-copy {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-cyan);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-copy:hover {
  background: var(--accent-cyan);
  color: #0b1329;
}

/* ==========================================================================
   Verification Portal Page Styles
   ========================================================================== */
.verify-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0 80px 0;
}

.verify-search-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

.search-input-group {
  display: flex;
  gap: 12px;
}

.search-input-group input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

.search-input-group input:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.btn-search {
  background: var(--primary);
  border: none;
  color: #060913;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-search:hover {
  background: var(--primary-hover);
}

.verification-status-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.verify-badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
  flex-shrink: 0;
}

.verify-status-title {
  font-size: 20px;
  font-weight: 800;
  color: #34d399;
  margin-bottom: 4px;
}

.verify-status-desc {
  font-size: 13.5px;
  color: #cbd5e1;
}

.credential-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

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

.credential-item {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.credential-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.credential-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.credential-value.highlight-gold {
  color: var(--text-gold);
}

.credential-value.highlight-cyan {
  color: var(--accent-cyan);
}

/* ==========================================================================
   Admin Passcode & Free Grant Styles
   ========================================================================== */
.admin-accordion-toggle {
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.admin-accordion-toggle:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.admin-voucher-panel {
  display: none;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 20px;
}

.admin-voucher-panel.active {
  display: block;
}

.admin-badge-free {
  background: #10b981;
  color: #060913;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ==========================================================================
   Mobile Responsiveness & Media Queries
   ========================================================================== */
@media (max-width: 900px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    margin-bottom: 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .portal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .preview-sticky {
    position: static;
  }

  .glass-card {
    padding: 20px 16px;
  }

  .duration-selector-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .duration-pill {
    padding: 10px 14px;
    flex-direction: row;
    justify-content: space-between;
  }

  .modal-content {
    padding: 20px 14px;
  }

  .modal-title {
    font-size: 20px;
  }

  .btn-checkout {
    font-size: 15px;
    padding: 14px 18px;
  }
}

@media (max-width: 540px) {
  .navbar {
    align-items: center;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: stretch;
  }

  .support-pill-link, .btn-nav-verify {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .search-input-group {
    flex-direction: column;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
  }

  .verification-status-banner {
    flex-direction: column;
    text-align: center;
    padding: 18px 14px;
    gap: 14px;
  }

  .verified-header-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .cert-action-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cert-action-bar .btn-download {
    width: 100%;
    justify-content: center;
  }

  .cert-document-showcase {
    padding: 6px;
    border-width: 2px;
    border-radius: 10px;
    margin: 16px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-pill {
    font-size: 11.5px;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom on iOS safari */
  }

  .btn-download {
    width: 100%;
    justify-content: center;
  }

  .btn-secondary-action {
    width: 100%;
    justify-content: center;
  }

  .verification-link-share-box {
    flex-direction: column;
    align-items: stretch;
  }

  .verification-link-share-box .btn-copy {
    width: 100%;
    text-align: center;
  }
}

/* Entrance Micro-Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.load-animation {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.recognitions-grid .recognition-badge:nth-child(1) { animation-delay: 0.04s; }
.recognitions-grid .recognition-badge:nth-child(2) { animation-delay: 0.08s; }
.recognitions-grid .recognition-badge:nth-child(3) { animation-delay: 0.12s; }
.recognitions-grid .recognition-badge:nth-child(4) { animation-delay: 0.16s; }
.recognitions-grid .recognition-badge:nth-child(5) { animation-delay: 0.20s; }
.recognitions-grid .recognition-badge:nth-child(6) { animation-delay: 0.24s; }
.recognitions-grid .recognition-badge:nth-child(7) { animation-delay: 0.28s; }
.recognitions-grid .recognition-badge:nth-child(8) { animation-delay: 0.32s; }
.recognitions-grid .recognition-badge:nth-child(9) { animation-delay: 0.36s; }
.recognitions-grid .recognition-badge:nth-child(10) { animation-delay: 0.40s; }
.recognitions-grid .recognition-badge:nth-child(11) { animation-delay: 0.44s; }
.recognitions-grid .recognition-badge:nth-child(12) { animation-delay: 0.48s; }

/* Micro-animations */
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.float-hover:hover {
  animation: floatAnim 3s infinite ease-in-out;
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(56, 189, 248, 0);
  }
}

.pulse-badge {
  animation: softPulse 2.5s infinite;
}

@keyframes buttonShimmer {
  0% { transform: translateX(-150%); }
  50%, 100% { transform: translateX(250%); }
}

.btn-checkout {
  position: relative;
  overflow: hidden;
}

.btn-checkout::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-150%);
  animation: buttonShimmer 4s infinite ease-in-out;
  pointer-events: none;
}

/* Extra mobile responsiveness polish */
@media (max-width: 640px) {
  .hero-section h1 {
    font-size: 26px;
    line-height: 1.25;
  }
  
  .hero-section p {
    font-size: 14px;
  }
  
  .impact-stats-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .duration-selector-group {
    grid-template-columns: 1fr;
  }
  
  .trust-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .demo-watermark-overlay .demo-stamp {
    font-size: 15px;
    letter-spacing: 1px;
    padding: 8px 16px;
  }
}

/* ==========================================================================
   Why Choose Elevatifier Credential Section
   ========================================================================== */
.why-choose-section {
  margin: 60px 0 50px 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   3-Step Process ("How It Works") Section
   ========================================================================== */
.how-it-works-section {
  margin: 30px 0 50px 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.step-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(11, 19, 41, 0.75) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 25px -10px rgba(56, 189, 248, 0.15);
}

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

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-cyan);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-card:nth-child(2) .step-number {
  background: rgba(212, 175, 55, 0.12);
  color: var(--text-gold);
  border-color: rgba(212, 175, 55, 0.4);
}

.step-card:nth-child(3) .step-number {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.4);
}

.step-icon {
  font-size: 26px;
  color: var(--accent-cyan);
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Awards & Recognitions Section (Top Trust Showcase & Verify Page)
   ========================================================================== */
.recognitions {
  margin: 50px 0 60px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 36px auto;
  line-height: 1.55;
}

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

@media (max-width: 1100px) {
  .recognitions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .recognitions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .recognitions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.recognition-badge {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.recognition-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.7), 0 0 20px -8px rgba(212, 175, 55, 0.2);
}

.recognition-badge .badge-logo {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 14px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: block;
}

.recognition-badge h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.recognition-badge p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section
   ========================================================================== */
.faq-section {
  margin: 60px 0 50px 0;
}

.faq-list {
  max-width: 820px;
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  gap: 16px;
  user-select: none;
}

.faq-question span {
  display: flex;
  align-items: center;
}

.faq-question i.fa-chevron-down {
  transition: transform 0.3s ease;
  color: var(--text-muted);
  font-size: 13px;
  flex-shrink: 0;
}

.faq-item.active .faq-question i.fa-chevron-down {
  transform: rotate(180deg);
  color: var(--text-gold);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Rich Corporate Multi-Column Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(11, 19, 41, 0.90);
  backdrop-filter: blur(16px);
  margin-top: 80px;
  padding: 60px 0 28px 0;
  position: relative;
  z-index: 10;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.4) 25%, rgba(212, 175, 55, 0.6) 50%, rgba(56, 189, 248, 0.4) 75%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 45px;
}

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

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

.footer-logo-row img {
  height: 38px;
  width: auto;
}

.footer-logo-row h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.footer-badge {
  font-size: 11px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.footer-badge:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: var(--accent-cyan);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(3px);
}

.footer-help-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 12px;
}

.footer-help-box .help-email {
  font-size: 13.5px;
  color: var(--text-gold);
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.footer-help-box .help-email:hover {
  color: #fff;
}

.footer-help-box .help-note {
  font-size: 11.5px;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--accent-cyan);
}

.footer-security-seals {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  flex-wrap: wrap;
}

.footer-security-seals span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #10b981;
}

/* Footer Responsive Breakpoints */
@media (max-width: 1024px) {
  .site-footer {
    padding: 48px 0 24px 0;
    margin-top: 60px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 38px 0 20px 0;
    margin-top: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    text-align: center;
    align-items: center;
  }
  .footer-logo-row {
    justify-content: center;
  }
  .footer-accreditations {
    justify-content: center;
  }
  .footer-col {
    text-align: center;
  }
  .footer-col h4 {
    justify-content: center;
    margin-bottom: 14px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    text-align: left;
  }
  .footer-links a {
    justify-content: flex-start;
  }
  .footer-help-box {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .footer-security-seals {
    justify-content: center;
    gap: 10px 16px;
  }
  .footer-bottom-links {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links a {
    justify-content: center;
  }
  .footer-security-seals {
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }
}
