/* ────────────────────────────────────────────────
   HỌP MẶT ĐẦU NĂM 2026 – EVENT LANDING PAGE
   Pure HTML + CSS + Vanilla JS
──────────────────────────────────────────────── */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #3730a3;
  --accent: #06b6d4;
  --accent-2: #8b5cf6;
  --bg-dark: #0a0a14;
  --bg-card: #12121f;
  --bg-card-hover: #1a1a2e;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --glass: rgba(18, 18, 31, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent-2) 50%, var(--accent) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.08));
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-bold {
  font-size: 0.85rem;
  font-weight: 800;
}

.logo-light {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: var(--text);
  background: rgba(79, 70, 229, 0.15);
}

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d1a 50%, var(--bg-dark) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(79, 70, 229, 0.15);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: var(--accent-2);
  bottom: -100px;
  left: -50px;
  animation-delay: -3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  top: 40%;
  left: 50%;
  animation-delay: -5s;
  opacity: 0.15;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-desc strong {
  color: var(--text);
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.meta-icon {
  font-size: 1.5rem;
}

.meta-item div {
  display: flex;
  flex-direction: column;
}

.meta-item strong {
  font-size: 0.9rem;
  color: var(--text);
}

.meta-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  animation: bounce-soft 2.5s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
}

@keyframes bounce-soft {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: none;
  text-align: left;
}

.about-text strong {
  color: var(--text);
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all 0.25s;
}

.highlight-item:hover {
  border-color: var(--primary-light);
  background: rgba(79, 70, 229, 0.1);
  color: var(--text);
}

.highlight-icon {
  font-size: 1rem;
}

.embed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.embed-card:hover {
  border-color: var(--border-hover);
}

.embed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.embed-icon {
  font-size: 1.1rem;
}

.embed-card iframe {
  border: none;
  display: block;
  background: #1a1a2e;
}

/* ══════════════════════════════════════════════
   SCHEDULE / TIMELINE
══════════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--primary) 10%, var(--primary-light) 50%, var(--accent) 90%, transparent);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-time {
  flex: 0 0 120px;
  text-align: right;
  padding-top: 18px;
}

.time-range {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  white-space: nowrap;
}

.timeline-dot {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border: 3px solid var(--bg-dark);
  border-radius: 50%;
  margin-top: 22px;
  z-index: 2;
  box-shadow: 0 0 12px rgba(79, 70, 229, 0.5);
}

.timeline-dot.dot-large {
  width: 20px;
  height: 20px;
  margin-top: 19px;
  background: var(--gradient);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
}

.timeline-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: all 0.3s;
}

.timeline-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.timeline-card.card-highlight {
  border-color: rgba(79, 70, 229, 0.3);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(139, 92, 246, 0.05));
}

.timeline-card.card-highlight:hover {
  border-color: rgba(79, 70, 229, 0.5);
}

.card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-badge.networking {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.card-badge.ceremony {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.card-badge.keynote {
  background: rgba(79, 70, 229, 0.2);
  color: var(--primary-light);
}

.card-badge.session {
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
}

.timeline-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: none;
  text-align: left;
}

.timeline-card ul {
  list-style: none;
  margin-top: 8px;
}

.timeline-card ul li {
  color: var(--text-muted);
  font-size: 0.86rem;
  padding: 5px 0;
  padding-left: 8px;
  border-left: 2px solid var(--border);
  margin-left: 4px;
  transition: border-color 0.2s;
}

.timeline-card ul li:hover {
  border-left-color: var(--primary-light);
}

.card-format {
  color: var(--accent) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  margin-bottom: 6px !important;
}

.timeline-card blockquote {
  margin-top: 16px;
  padding: 14px 20px;
  border-left: 3px solid var(--primary);
  background: rgba(79, 70, 229, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SPONSORSHIP
══════════════════════════════════════════════ */
.sponsor-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.sponsor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
}

.sponsor-card:hover {
  border-color: var(--border-hover);
}

.sponsor-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.sponsor-amount {
  background: var(--gradient-soft);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 24px;
  text-align: left;
  max-width: none;
}

.sponsor-amount strong {
  color: var(--primary-light);
  font-size: 1.1rem;
}

.benefit-list {
  list-style: none;
  margin-bottom: 24px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.deadline-note {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #fbbf24;
  text-align: left;
  max-width: none;
}

.deadline-note strong {
  color: #fde68a;
}

/* Sponsor info card */
.sponsor-info h3 {
  margin-bottom: 24px;
}

.info-block {
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-dim);
}

.info-value {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.account-number {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: var(--primary-light) !important;
  letter-spacing: 2px;
}

.bank-card {
  background: var(--gradient-soft);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.bank-header {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.venue-block {
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius);
  padding: 20px;
}

.venue-block h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text);
}

.venue-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  max-width: none;
  text-align: left;
}

/* ══════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════ */
.partners-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.partner-logo-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.2);
}

.partner-logo-card img {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  filter: brightness(1.1);
  transition: filter 0.3s;
}

.partner-logo-card:hover img {
  filter: brightness(1.3);
}

.partner-logo-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.partner-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--border-hover), transparent);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .logo-icon {
  font-size: 2rem;
}

.footer-brand strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: none;
  text-align: left;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Tablet
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-time {
    flex: 0 0 auto;
    min-width: 0;
  }

  .time-range {
    font-size: 0.78rem;
  }

  .timeline-item {
    gap: 16px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Mobile
══════════════════════════════════════════════ */
@media (max-width: 680px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Nav mobile */
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg-card);
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }

  /* Hero mobile */
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  /* Timeline mobile */
  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 28px;
  }

  .timeline-time {
    flex: 0 0 100%;
    text-align: left;
    padding-top: 0;
  }

  .timeline-dot {
    position: absolute;
    left: -25px;
    margin-top: 4px;
  }

  .timeline-card {
    padding: 18px 20px;
  }

  /* Partners mobile */
  .partners-showcase {
    gap: 24px;
  }

  .partner-logo-card {
    padding: 24px 40px;
  }

  .partner-divider {
    width: 80px;
    height: 1px;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}