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

:root {
  --accent: #6c63ff;
  --accent-light: #8b85ff;
  --accent-glow: rgba(108, 99, 255, 0.25);
  --dark: #0a0a0f;
  --dark-2: #111118;
  --dark-3: #16161f;
  --surface: #1c1c28;
  --surface-2: #22222f;
  --border: rgba(255,255,255,0.07);
  --text: #e8e8f0;
  --text-muted: #8888a8;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

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

/* ===== KEYFRAMES ===== */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 40px var(--accent-glow); }
  100% { box-shadow: 0 0 20px var(--accent-glow); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 25px var(--accent-glow);
  animation: pulse-glow 4s infinite;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(108, 99, 255, 0.05);
  transform: translateY(-4px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION BASE ===== */
section { padding: 100px 0; }
.section-dark { background: var(--dark-2); }

.section-header { margin-bottom: 60px; }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 { color: var(--white); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.nav-logo-link:hover {
  transform: translateX(4px);
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px var(--accent-glow);
}
.nav-logo svg {
  width: 24px;
  height: 24px;
}
.nav-logo-link:hover .nav-logo {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 8px 25px var(--accent-glow);
}
.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
}
.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--text);
}
.lang-opt.active {
  color: var(--accent);
}
.lang-sep {
  opacity: 0.3;
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: var(--surface);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
}
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: var(--surface); }
.nav-mobile.open { display: flex; }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6c63ff, #9c63ff);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #63b3ff, #63ffea);
  bottom: 50px; left: -80px;
  opacity: 0.2;
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.hero-content { 
  max-width: 800px; 
  margin: 0 auto; 
  text-align: center; 
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 100px;
}
.hero-content h1 { color: var(--white); margin-bottom: 28px; }
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-tagline strong { color: var(--text); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero portrait — spatial right panel */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* Fixed: Combining animations so fadeIn still works */
  animation: fadeIn 1.2s ease-out forwards, float 20s ease-in-out infinite 1.2s;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 12%; /* Tighten focus on face */
  display: block;
  filter: brightness(1.05) contrast(1.1);
  /* The "Magic" to remove white background: 
     A tight mask that keeps the center (you) and fades everything else to 0 opacity */
  -webkit-mask-image: radial-gradient(circle at 50% 35%, black 5%, rgba(0,0,0,0.6) 30%, transparent 55%);
  mask-image: radial-gradient(circle at 50% 35%, black 5%, rgba(0,0,0,0.6) 30%, transparent 55%);
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    /* Purple atmospheric light behind the person */
    radial-gradient(circle at 52% 35%, 
      rgba(108, 99, 255, 0.15) 0%, 
      transparent 50%
    ),
    /* Deep fade from the left (text area) */
    linear-gradient(to right, 
      var(--dark) 0%, 
      var(--dark) 10%,
      rgba(10, 10, 15, 0.8) 25%, 
      transparent 50%
    );
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-photo {
    width: 100%;
    opacity: 0.45;
  }
  .hero-inner { text-align: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-down span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  position: relative;
}
.scroll-down span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollAnim 1.8s ease infinite;
}
@keyframes scrollAnim {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ===== ABOUT ===== */
#about .about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.about-card:hover {
  border-color: rgba(108, 99, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.about-icon { font-size: 2rem; margin-bottom: 16px; }
.about-card h3 { color: var(--white); margin-bottom: 12px; }
.about-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== SKILLS ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.skill-item:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: translateY(-5px) translateX(5px);
  box-shadow: -5px 5px 20px rgba(0,0,0,0.2);
}
.skill-icon { font-size: 1.6rem; flex-shrink: 0; }
.skill-info h4 { color: var(--white); margin-bottom: 6px; }
.skill-info p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ===== EXPERIENCE HEADER ROW ===== */
.experience-header-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 48px;
  margin-bottom: 60px;
}
.experience-header-row .section-header { margin-bottom: 0; }
.experience-feature-photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 500px;
  margin-left: auto;
}
.experience-feature-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.experience-feature-photo:hover img { transform: scale(1.03); }
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(10,10,15,0.9), transparent);
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .experience-header-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .experience-feature-photo {
    max-width: 100%;
    margin-left: 0;
  }
}

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -37px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: var(--transition);
}
.timeline-card:hover {
  border-color: rgba(108, 99, 255, 0.35);
  box-shadow: var(--shadow);
}
.timeline-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.timeline-period { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.timeline-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.timeline-badge.current {
  background: rgba(108, 99, 255, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(108, 99, 255, 0.3);
}
.timeline-card h3 { color: var(--white); margin-bottom: 4px; }
.timeline-company { color: var(--accent); font-size: 0.9rem; font-weight: 500; margin-bottom: 14px; }
.timeline-card ul { display: flex; flex-direction: column; gap: 8px; }
.timeline-card li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
}
.timeline-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== MOMENTS SLIDER ===== */
.moments-slider-container {
  padding: 0 24px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.moments-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0 30px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}
@media (max-width: 1200px) {
  .moments-slider {
    justify-content: flex-start;
  }
}
/* Scrollbar styling */
.moments-slider::-webkit-scrollbar {
  height: 6px;
}
.moments-slider::-webkit-scrollbar-track {
  background: var(--dark-3);
  border-radius: 10px;
}
.moments-slider::-webkit-scrollbar-thumb {
  background: var(--surface-2);
  border-radius: 10px;
}
.moments-slider::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.moment-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  cursor: grab;
  background: var(--surface);
}
.moment-card:active { cursor: grabbing; }

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.moment-card:hover img { transform: scale(1.05); }

.moment-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-icon {
  font-size: 3.5rem;
  opacity: 0.2;
}

.moment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.95) 0%, rgba(10,10,15,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 1; /* Always visible to make mobile friendly, or change to hover only for desktop */
  transition: var(--transition);
}
.moment-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
  background: rgba(108,99,255,0.2);
  border: 1px solid rgba(108,99,255,0.35);
  border-radius: 100px;
  padding: 3px 10px;
  align-self: flex-start;
}
.moment-overlay p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .moment-card {
    flex: 0 0 300px;
  }
}

/* ===== EDUCATION ===== */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.edu-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.edu-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px) scale(1.03);
  background: var(--surface-2);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.edu-icon { font-size: 1.8rem; flex-shrink: 0; color: var(--accent); }
.edu-icon svg { width: 1em; height: 1em; }
.edu-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}
.edu-card h4 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.edu-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== CONTACT CENTERED ===== */
.contact-centered {
  max-width: 800px;
  margin: 0 auto;
}
.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.contact-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contact-card-link:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px var(--accent-glow);
}
.contact-icon-box {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 14px;
  color: var(--accent);
  transition: var(--transition);
}
.contact-card-link:hover .contact-icon-box {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}
.contact-icon-box svg {
  width: 28px;
  height: 28px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 60px 0 100px;
  background: var(--dark);
}
.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.7;
  transition: var(--transition);
}
.partners-grid:hover { opacity: 1; }
.partner-logo {
  height: 40px;
  display: flex;
  align-items: center;
  filter: grayscale(1) brightness(1.2);
  transition: all 0.4s ease;
}
.partner-logo:hover {
  filter: grayscale(0) brightness(1);
  transform: translateY(-5px);
}
.partner-logo svg {
  height: 100%;
  width: auto;
}

/* Specific hover for Google text to make it pop */
.partner-logo.google:hover text:last-child {
  fill: #4285F4;
}

/* Sklik custom badge style */
.partner-logo.sklik {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cert-badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.partner-logo.sklik:hover .cert-badge-text { color: #EE1D23; }

/* Microsoft specific layout */
.partner-logo.microsoft {
  gap: 12px;
}
.partner-logo.microsoft img { height: 26px; }
.ms-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.ms-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}
.ms-cert {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .contact-links-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { gap: 40px; }
  .partner-logo { height: 32px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
}
footer p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .timeline { padding-left: 20px; }
  .timeline-dot { left: -27px; }
  .timeline-card { padding: 20px 22px; }
}

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