/* ============================================================
   Power Sheep Motorbike — Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

/* Loading Spinner Local */
.loading-container {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px; width: 100%; min-height: 200px;
  background: white; border-radius: var(--r-xl);
}
.spinner {
  width: 40px; height: 40px; border: 4px solid var(--c-bg-dark);
  border-top-color: var(--c-primary); border-radius: 50%;
  animation: spin 1s linear infinite; margin-bottom: 15px;
}
@keyframes spin { to { transform: rotate(360deg); } }

:root {
  --c-dark: #0f172a; --c-dark-2: #1e293b; --c-dark-3: #334155;
  --c-slate: #64748b; --c-slate-light: #94a3b8;
  --c-border: #e2e8f0; --c-bg: #f8fafc; --c-white: #ffffff;
  --c-yellow: #facc15; --c-yellow-hover: #eab308; --c-yellow-soft: #fef9c3;
  --c-blue: #3b82f6; --c-blue-soft: #eff6ff; --c-blue-dark: #1d4ed8;
  --c-red: #ef4444; --c-red-soft: #fef2f2;
  --c-amber: #f59e0b; --c-amber-soft: #fffbeb;
  --c-green: #22c55e; --c-green-soft: #f0fdf4;
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-full: 999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --font: 'Inter', 'Noto Sans TC', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); background: var(--c-bg); color: var(--c-dark);
  line-height: 1.6; min-height: 100vh; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* Layout */
.container { max-width: 720px; margin: 0 auto; padding: 0 var(--sp-4); }

/* Header */
.header {
  background: var(--c-dark); color: var(--c-white);
  padding: var(--sp-4) 0; position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-lg);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.header-brand h1 { font-size: 1.4rem; font-weight: 900; font-style: italic; letter-spacing: -0.5px; }
.header-brand h1 span { color: var(--c-yellow); }
.header-brand p { font-size: 0.65rem; color: var(--c-slate-light); margin-top: 2px; }
.btn-lang {
  background: var(--c-dark-2); border: 1px solid var(--c-dark-3);
  color: var(--c-white); padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-full); font-size: 0.75rem; font-weight: 700;
  transition: all .2s;
}
.btn-lang:hover { background: var(--c-dark-3); }

/* Announcement Banner */
.announcement-banner {
  background: var(--c-amber-soft);
  border-bottom: 2px solid var(--c-amber);
  color: #b45309; /* Darker amber text for readability */
  padding: var(--sp-3) 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Shop Banner */
.shop-banner {
  width: 100%;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
  animation: fadeIn 0.5s ease;
}
.shop-banner-img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Section Card */
.section-card {
  background: var(--c-white); border-radius: var(--r-xl);
  border: 1px solid var(--c-border); padding: var(--sp-6);
  margin-bottom: var(--sp-5); box-shadow: var(--shadow-sm);
}
.section-title {
  font-size: 0.7rem; font-weight: 700; color: var(--c-slate);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: var(--sp-4); display: flex; align-items: center; gap: var(--sp-2);
}
.section-title .step-num {
  background: var(--c-dark); color: var(--c-yellow);
  width: 22px; height: 22px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900;
}

/* Rental Type */
.rental-type-group { display: flex; gap: var(--sp-2); }
.btn-rental-type {
  flex: 1; padding: var(--sp-3) var(--sp-4); border-radius: var(--r-lg);
  font-weight: 700; font-size: 0.9rem; border: 2px solid var(--c-border);
  background: var(--c-white); color: var(--c-slate); transition: all .2s;
  position: relative;
}
.btn-rental-type.active { border-color: var(--c-blue); background: var(--c-blue-soft); color: var(--c-blue-dark); }
.btn-rental-type .badge {
  position: absolute; top: -8px; right: 8px; background: var(--c-amber);
  color: var(--c-white); font-size: 0.55rem; padding: 2px 6px;
  border-radius: var(--r-full); font-weight: 700;
}

/* Date */
.date-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 520px) { .date-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.date-input, .time-input {
  width: 100%; border: 2px solid var(--c-border); border-radius: var(--r-md);
  padding: var(--sp-3); font-size: 0.9rem; font-weight: 700;
  color: var(--c-dark); outline: none; transition: border-color .2s; background: var(--c-white);
}
.date-input:focus, .time-input:focus { border-color: var(--c-blue); }
.input-label { font-size: 0.65rem; color: var(--c-slate-light); margin-bottom: 4px; display: block; }
.date-hint { font-size: 0.7rem; color: var(--c-slate); margin-top: var(--sp-2); }
.rental-days-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--c-blue-soft); color: var(--c-blue-dark);
  padding: 4px 10px; border-radius: var(--r-full);
  font-size: 0.75rem; font-weight: 700; margin-top: var(--sp-2);
}

/* License */
.license-group { display: flex; gap: var(--sp-2); }
.btn-license {
  flex: 1; padding: var(--sp-3); border-radius: var(--r-lg);
  font-weight: 700; font-size: 0.85rem; border: 2px solid var(--c-border);
  background: var(--c-white); color: var(--c-slate); transition: all .2s;
}
.btn-license.active { border-color: var(--c-blue); background: var(--c-blue-soft); color: var(--c-blue-dark); }

/* 72h Warning */
.warning-72h {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: var(--c-dark); border-radius: var(--r-xl); padding: var(--sp-6);
  margin-bottom: var(--sp-5); text-align: center; display: none;
  animation: fadeInDown .4s ease;
}
.warning-72h.show { display: block; }
.warning-72h h3 { font-size: 1.1rem; margin-bottom: var(--sp-2); }
.warning-72h p { font-size: 0.85rem; margin-bottom: var(--sp-4); }
.warning-72h-actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }
.btn-contact {
  background: var(--c-dark); color: var(--c-yellow);
  padding: var(--sp-3) var(--sp-6); border-radius: var(--r-full);
  font-weight: 700; font-size: 0.9rem; border: none;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: transform .15s;
}
.btn-contact:hover { transform: scale(1.05); }

/* Vehicle Cards */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 520px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vehicle-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 2px solid var(--c-border);
  padding: var(--sp-4);
  transition: all .25s ease-in-out;
  position: relative;
  overflow: hidden;
}
.vehicle-card:hover {
  border-color: var(--c-slate-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.vehicle-card.selected {
  border-color: var(--c-blue);
  background: var(--c-blue-soft);
  box-shadow: 0 4px 12px rgba(59,130,246,.15);
}
.vehicle-card.booked { opacity: .45; filter: grayscale(.8); pointer-events: none; }
.vehicle-card.booked::after {
  content: attr(data-booked-text); position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-12deg);
  background: rgba(239,68,68,.9); color: var(--c-white);
  padding: 6px 18px; font-weight: 700; font-size: 0.85rem;
  border-radius: var(--r-sm); z-index: 5; white-space: nowrap;
}
.vehicle-card.blocked { opacity: .35; filter: grayscale(1); pointer-events: none; }
.vehicle-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-lg);
  background: var(--c-bg);
  flex-shrink: 0;
  margin-bottom: var(--sp-3);
  transition: transform .3s ease;
}
.vehicle-card:hover .vehicle-img {
  transform: scale(1.02);
}
.vehicle-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.vehicle-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.vehicle-tier {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--c-dark);
  color: var(--c-yellow);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  margin-left: 6px;
}
.vehicle-price-detailed {
  margin-top: auto;
  border-top: 1px dashed var(--c-border);
  padding-top: 8px;
  margin-bottom: 8px;
}
.vehicle-price-detailed .price-row {
  display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--c-slate); margin-bottom: 2px;
}
.vehicle-price-detailed .price-row strong { color: var(--c-blue); }
.vehicle-price { font-size: 1.1rem; font-weight: 900; color: var(--c-blue); margin-top: 2px; }
.vehicle-price span { font-size: 0.65rem; color: var(--c-slate); font-weight: 400; }
.vehicle-price .original-price {
  text-decoration: line-through; color: var(--c-slate-light);
  font-size: 0.8rem; font-weight: 400; margin-right: 4px;
}
.vehicle-meta { font-size: 0.65rem; color: var(--c-slate); margin-top: 2px; margin-bottom: 8px; }
.btn-select-vehicle {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: var(--r-md);
  background: var(--c-dark);
  color: var(--c-white);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all .2s ease;
  margin-top: auto;
}
.btn-select-vehicle:hover { background: var(--c-dark-2); }
.vehicle-card.selected .btn-select-vehicle { background: var(--c-blue); }

/* Monthly Plan Cards */
.plan-cards { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.plan-card {
  flex: 1; min-width: 200px; border: 2px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-5); text-align: center;
  cursor: pointer; transition: all .2s;
}
.plan-card.active { border-color: var(--c-blue); background: var(--c-blue-soft); }
.plan-card h4 { font-size: 0.95rem; font-weight: 700; }
.plan-card .plan-price { font-size: 1.3rem; font-weight: 900; color: var(--c-blue); margin: var(--sp-2) 0; }
.plan-card .plan-detail { font-size: 0.7rem; color: var(--c-slate); }

/* Addons & Insurance */
.addon-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.addon-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-3) var(--sp-4); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); transition: background .15s; cursor: pointer;
}
.addon-item:hover { background: var(--c-bg); }
.addon-item label { display: flex; flex-direction: column; cursor: pointer; flex: 1; }
.addon-item .addon-name { font-size: 0.85rem; font-weight: 600; }
.addon-item .addon-desc { font-size: 0.7rem; color: var(--c-slate); }
.addon-item input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--c-blue); }

.insurance-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.insurance-option {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4); border: 2px solid var(--c-border);
  border-radius: var(--r-lg); cursor: pointer; transition: all .15s;
}
.insurance-option:hover { border-color: var(--c-slate-light); }
.insurance-option.active { border-color: var(--c-blue); background: var(--c-blue-soft); }
.insurance-option input[type="radio"] { accent-color: var(--c-blue); width: 18px; height: 18px; }
.insurance-option .ins-label { font-size: 0.85rem; font-weight: 600; }
.insurance-option .ins-price { font-size: 0.7rem; color: var(--c-slate); }

/* Price Summary */
.price-summary {
  background: var(--c-dark); color: var(--c-white);
  border-radius: var(--r-xl); padding: var(--sp-6); margin-bottom: var(--sp-5);
}
.price-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-2) 0; font-size: 0.85rem;
}
.price-line.total {
  border-top: 1px solid var(--c-dark-3); margin-top: var(--sp-2);
  padding-top: var(--sp-3); font-size: 1.2rem; font-weight: 900;
}
.price-line.total .price-value { color: var(--c-yellow); }
.price-note { font-size: 0.65rem; color: var(--c-slate-light); margin-top: var(--sp-2); }

/* Form Fields */
.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 520px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full-width { grid-column: 1 / -1; }
}
.form-group { display: flex; flex-direction: column; }
.form-label { font-size: 0.75rem; font-weight: 600; color: var(--c-dark); margin-bottom: 4px; }
.form-label .required { color: var(--c-red); margin-left: 2px; }
.form-hint { font-size: 0.65rem; color: var(--c-slate); margin-bottom: 4px; }
.form-input {
  border: 2px solid var(--c-border); border-radius: var(--r-md);
  padding: var(--sp-3); font-size: 0.85rem; outline: none;
  transition: border-color .2s; background: var(--c-white);
}
.form-input:focus { border-color: var(--c-blue); }
.form-input.error { border-color: var(--c-red); }

/* Tier Filter Group Styles */
.tier-filter-group {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}
.btn-tier {
  padding: 6px 14px;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  color: var(--c-slate);
}
.btn-tier.active {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: var(--c-blue);
}
.btn-tier:hover:not(.active) {
  background: var(--c-bg);
  border-color: var(--c-slate-light);
}
.form-error { font-size: 0.65rem; color: var(--c-red); margin-top: 2px; display: none; }
.form-input.error + .form-error { display: block; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 200; display: none; align-items: center; justify-content: center;
  padding: var(--sp-4);
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--c-white); border-radius: var(--r-xl);
  width: 100%; max-width: 480px; max-height: 85vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-lg); animation: fadeInUp .3s ease;
}
.modal-header {
  padding: var(--sp-4) var(--sp-6); border-bottom: 1px solid var(--c-border);
  font-weight: 700; font-size: 0.95rem; background: var(--c-bg);
}
.modal-body {
  padding: var(--sp-6); overflow-y: auto; flex: 1;
  font-size: 0.8rem; color: var(--c-dark-3); line-height: 1.8;
}
.modal-body::-webkit-scrollbar { width: 5px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 10px; }
.modal-footer {
  padding: var(--sp-4) var(--sp-6); border-top: 1px solid var(--c-border);
  display: flex; gap: var(--sp-3); background: var(--c-bg);
}
.btn-modal {
  flex: 1; padding: var(--sp-3); border-radius: var(--r-lg);
  font-weight: 700; font-size: 0.9rem; border: none; transition: all .15s;
}
.btn-modal-secondary { background: var(--c-border); color: var(--c-dark); }
.btn-modal-primary { background: var(--c-blue); color: var(--c-white); }
.btn-modal-primary:disabled { opacity: .3; cursor: not-allowed; }

/* Success Page */
.success-page { display: none; padding: var(--sp-5) 0 var(--sp-10); }
.success-page.show { display: block; animation: fadeInUp .5s ease; }

.success-header { text-align: center; margin-bottom: var(--sp-6); }
.success-icon { font-size: 3rem; margin-bottom: var(--sp-2); }
.success-header h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: var(--sp-2); }
.success-subtitle { color: var(--c-slate); font-size: 0.85rem; }

.success-card {
  background: var(--c-white); border-radius: var(--r-xl);
  border: 1px solid var(--c-border); padding: var(--sp-6);
  margin-bottom: var(--sp-5); box-shadow: var(--shadow-sm);
}
.success-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--sp-4); padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
}
.success-label { font-size: 0.75rem; font-weight: 600; color: var(--c-slate); text-transform: uppercase; letter-spacing: 0.5px; }
.success-order-id { font-size: 1.1rem; font-weight: 900; color: var(--c-blue); }

.success-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.success-detail-item { display: flex; flex-direction: column; }
.success-detail-label { font-size: 0.7rem; color: var(--c-slate); margin-bottom: 2px; }
.success-detail-value { font-size: 0.9rem; font-weight: 700; color: var(--c-dark); }

.success-fee-section { margin-top: var(--sp-4); }
.success-fee-highlight {
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: var(--c-dark); padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg); font-weight: 900; font-size: 1.1rem;
}
.success-fee-amount { font-size: 1.4rem; }
.success-fee-hint {
  font-size: 0.7rem; color: var(--c-amber); font-weight: 700;
  text-align: center; margin-top: var(--sp-2); margin-bottom: var(--sp-4);
}
.success-fee-other {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-3) var(--sp-5); background: var(--c-bg);
  border-radius: var(--r-lg); font-weight: 600; font-size: 0.85rem;
  color: var(--c-dark);
}
.success-fee-amount-sub { font-size: 1rem; font-weight: 700; color: var(--c-blue); }
.success-fee-sub-hint {
  font-size: 0.65rem; color: var(--c-slate); text-align: center;
  margin-top: var(--sp-1);
}

/* Success Notice */
.success-notice {
  background: var(--c-blue-soft); border: 1px solid var(--c-blue);
  border-radius: var(--r-lg); padding: var(--sp-5); margin-bottom: var(--sp-5);
}
.success-notice h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: var(--sp-3); }
.success-steps {
  padding-left: var(--sp-5); font-size: 0.8rem; color: var(--c-dark-3);
}
.success-steps li { margin-bottom: var(--sp-2); line-height: 1.6; }

/* Upload Section */
.upload-hint { font-size: 0.75rem; color: var(--c-slate); margin-bottom: var(--sp-4); }
.upload-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-border);
}
.upload-item:last-child { border-bottom: none; }
.upload-label { font-size: 0.85rem; font-weight: 600; cursor: pointer; flex-shrink: 0; }
.upload-input-wrapper { display: flex; align-items: center; gap: var(--sp-2); }
.upload-file-input, .form-upload-file-input {
  max-width: 180px; font-size: 0.75rem;
}
.upload-status { font-size: 0.7rem; white-space: nowrap; }
.upload-pending { color: var(--c-amber); }
.upload-success { color: var(--c-green); font-weight: 700; }
.upload-error { color: var(--c-red); font-weight: 700; }

/* LINE QR Section */
.success-line-section {
  text-align: center; padding: var(--sp-5) 0;
}
.success-line-section p { font-size: 0.8rem; color: var(--c-slate); margin-bottom: var(--sp-3); }
.success-line-qr {
  width: 160px; height: 160px; margin: 0 auto var(--sp-2);
  border-radius: var(--r-lg); border: 2px solid var(--c-border);
}
.success-line-id { font-size: 0.85rem; font-weight: 700; color: var(--c-green); }


/* Sticky Bar */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-dark); color: var(--c-white);
  padding: var(--sp-4) var(--sp-5); z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%); transition: transform .3s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.sticky-bar .bar-info { font-size: 0.65rem; color: var(--c-slate-light); }
.sticky-bar .bar-total { font-size: 1.5rem; font-weight: 900; color: var(--c-yellow); }
.btn-confirm {
  background: var(--c-yellow); color: var(--c-dark);
  padding: var(--sp-3) var(--sp-8); border-radius: var(--r-xl);
  font-weight: 900; font-size: 0.95rem; border: none; transition: all .15s;
}
.btn-confirm:hover { background: var(--c-yellow-hover); }
.btn-confirm:active { transform: scale(.96); }

/* Loading */
.loading-overlay {
  position: fixed; inset: 0; background: rgba(255,255,255,.85);
  z-index: 300; display: none; align-items: center; justify-content: center;
}
.loading-overlay.show { display: flex; }
.spinner {
  width: 36px; height: 36px; border: 3px solid var(--c-border);
  border-top-color: var(--c-blue); border-radius: 50%;
  animation: spin .6s linear infinite;
}

/* Animations */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.hidden { display: none !important; }
.main-content { padding: var(--sp-5) 0 120px; }
