/* ============================================
   DESIGN SYSTEM — Volcanic Glass + Industrial
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:        #111111;
  --bg-2:      #181818;
  --bg-3:      #1f1f1f;
  --surface:   #242424;
  --border:    rgba(255,255,255,0.08);
  --orange:    #FF6B2B;
  --orange-lt: #FFB088;
  --orange-dk: #cc4e15;
  --text:      #F0EDE8;
  --text-2:    #A8A29E;
  --text-3:    #6B6560;
  --white:     #FFFFFF;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6);
  --shadow-orange: 0 8px 32px rgba(255,107,43,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  margin-top: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin: 12px auto 0;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn--primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,43,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav__logo span { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--text); }

.nav__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav__cta:hover {
  background: var(--orange-dk) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(20px);
  padding: 20px 32px 28px;
  gap: 20px;
  border-top: 1px solid var(--border);
}

.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--orange); }

.nav__mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,107,43,0.08) 0%, transparent 70%),
              linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  background: rgba(255,107,43,0.12);
  border: 1px solid rgba(255,107,43,0.3);
  color: var(--orange-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  transition-delay: 0.1s;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  transition-delay: 0.2s;
}

.hero__name span {
  color: var(--orange);
  display: block;
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  transition-delay: 0.3s;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  transition-delay: 0.4s;
}

.hero__stat {
  font-size: 0.9rem;
  color: var(--text-2);
}

.hero__stat strong {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
}

.hero__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  transition-delay: 0.5s;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__left .section-title {
  margin-bottom: 24px;
}

.about__body {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about__tags span {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition);
}

.about__tags span:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.about__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
}

.about__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.about__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.about__card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.about__card-role {
  font-size: 0.85rem;
  color: var(--orange);
  margin-top: 2px;
}

.about__card-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.about__info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.about__info-row svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.about__info-row a {
  color: var(--orange);
  transition: opacity var(--transition);
}

.about__info-row a:hover { opacity: 0.8; }

.about__lang-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.about__lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about__lang-list span {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(255,107,43,0.1));
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  width: 50%;
  padding-bottom: 60px;
}

.timeline__item--left {
  padding-right: 60px;
  text-align: right;
}

.timeline__item--right {
  padding-left: 60px;
  margin-left: 50%;
}

.timeline__dot {
  position: absolute;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline__item--left .timeline__dot {
  right: -10px;
}

.timeline__item--right .timeline__dot {
  left: -10px;
}

.timeline__dot--edu {
  border-color: var(--text-3);
}

.timeline__dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: dotPulse 2s ease-in-out infinite;
}

.timeline__dot--edu .timeline__dot-inner {
  background: var(--text-3);
  animation: none;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.timeline__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.timeline__card:hover {
  border-color: rgba(255,107,43,0.3);
  box-shadow: var(--shadow-orange);
}

.timeline__card--edu {
  background: var(--surface);
}

.timeline__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.timeline__item--left .timeline__card-header {
  flex-direction: row-reverse;
}

.timeline__period {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

.timeline__badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-3);
  border: 1px solid var(--border);
}

.timeline__badge--current {
  background: rgba(255,107,43,0.12);
  color: var(--orange);
  border-color: rgba(255,107,43,0.3);
}

.timeline__badge--edu {
  background: rgba(168,162,158,0.1);
  color: var(--text-3);
}

.timeline__role {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline__company {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 500;
}

.timeline__item--left .timeline__company {
  justify-content: flex-end;
}

.timeline__company svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.timeline__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline__bullets li {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.timeline__item--left .timeline__bullets li {
  padding-left: 0;
  padding-right: 16px;
  text-align: right;
}

.timeline__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}

.timeline__item--left .timeline__bullets li::before {
  left: auto;
  right: 0;
}

.timeline__bullets li strong {
  color: var(--orange-lt);
  font-weight: 600;
}

/* ============================================
   SKILLS
   ============================================ */
.skills-section {
  padding: 120px 0;
  background: var(--bg);
}

.skills__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.skill-card:hover {
  border-color: rgba(255,107,43,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

.skill-card:hover::after {
  transform: scaleX(1);
}

.skill-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,43,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.skill-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.skill-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.skill-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.skill-card__bar {
  height: 4px;
  background: var(--surface);
  border-radius: 100px;
  overflow: hidden;
}

.skill-card__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: 100px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */
.achievements {
  padding: 120px 0;
  background: var(--bg-2);
}

.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.achievement-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
}

.achievement-card:hover {
  border-color: rgba(255,107,43,0.3);
  transform: translateY(-4px);
}

.achievement-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: inline;
}

.achievement-card__unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-lt);
  display: inline;
}

.achievement-card__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.achievement-card__desc {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.6;
}

.highlight-banner {
  background: linear-gradient(135deg, rgba(255,107,43,0.1), rgba(255,176,136,0.05));
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.highlight-banner__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,107,43,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-banner__icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.highlight-banner__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.highlight-banner__content p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

.highlight-banner__content strong {
  color: var(--orange-lt);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--bg);
}

.contact__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact__inner .section-title {
  margin-bottom: 16px;
}

.contact__sub {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact__cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.contact__card svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact__card:hover {
  border-color: var(--orange);
  color: var(--text);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.footer__logo span { color: var(--orange); }

.footer__copy {
  font-size: 0.85rem;
  color: var(--text-3);
}

.footer__built {
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .skills__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 20px; }

  .hero { padding: 100px 20px 80px; }
  .hero__meta { gap: 16px; }
  .hero__divider { display: none; }

  .about { padding: 80px 0; }

  /* Mobile timeline — single column */
  .timeline__line {
    left: 20px;
  }

  .timeline__item {
    width: 100%;
    padding-left: 56px !important;
    padding-right: 0 !important;
    text-align: left !important;
    margin-left: 0 !important;
  }

  .timeline__item--left .timeline__dot,
  .timeline__item--right .timeline__dot {
    left: 10px;
    right: auto;
  }

  .timeline__item--left .timeline__card-header {
    flex-direction: row;
  }

  .timeline__item--left .timeline__company {
    justify-content: flex-start;
  }

  .timeline__item--left .timeline__bullets li {
    padding-left: 16px;
    padding-right: 0;
    text-align: left;
  }

  .timeline__item--left .timeline__bullets li::before {
    left: 0;
    right: auto;
  }

  .skills-section { padding: 80px 0; }
  .skills__grid { grid-template-columns: 1fr; }

  .achievements { padding: 80px 0; }
  .achievements__grid { grid-template-columns: repeat(2, 1fr); }

  .highlight-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .contact { padding: 80px 0; }
  .contact__cards { flex-direction: column; align-items: center; }

  .footer__inner { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .achievements__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .achievement-card__number { font-size: 2.8rem; }
}