/* ============================
   CASA ARTE VIDA — Design System
   ============================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #4f2984;
  --purple-dark: #2d145f;
  --purple-light: #7c4dbb;
  --purple-glow: rgba(79, 41, 132, 0.3);
  --purple-100: #f3ecfa;
  --purple-50: #f9f5fd;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #868e96;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --gray-900: #0d0f12;
  --accent-gold: #f4a261;
  --accent-green: #2a9d8f;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
  --shadow-purple: 0 8px 30px rgba(79, 41, 132, 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);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.section {
  padding: 120px 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section>.container {
  width: 100%;
}

/* --- Typography --- */
h1,
h2,
h3 {
  color: var(--gray-800);
  line-height: 1.15;
}

h1 {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
}

h3 {
  font-weight: 600;
  font-size: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #c8a2f5 0%, #f0d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  background: var(--purple-100);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag-light {
  color: #c8a2f5;
  background: rgba(255, 255, 255, 0.1);
}

.section-title {
  margin-bottom: 20px;
}

.section-title-light {
  color: var(--white);
}

.section-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 640px;
}

.section-text-light {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79, 41, 132, 0.4);
}

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

.btn-ghost {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-white {
  background: var(--white);
  color: var(--purple-dark);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  color: var(--purple);
  border: 1.5px solid var(--purple-100);
  background: transparent;
  font-size: 15px;
  padding: 12px 22px;
}

.btn-outline:hover {
  background: var(--purple-100);
  border-color: var(--purple);
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(45, 20, 95, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 25px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--purple);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
}

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

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-poster {
  transition: opacity 1s ease;
}

.hero-poster.hidden {
  opacity: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  min-width: 120%;
  min-height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 15, 18, 0.88) 0%,
      rgba(45, 20, 95, 0.82) 50%,
      rgba(79, 41, 132, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-headline {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-headline .text-gradient {
  background: linear-gradient(135deg, #c8a2f5 0%, #f0d4ff 50%, #c8a2f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats-wrapper {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.stat-suffix {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    height: 48px;
  }

  50% {
    opacity: 1;
    height: 60px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   CONSTRUCTION BANNER
   ================================ */
.construction-banner {
  background: var(--purple-50);
  border-bottom: 1px solid var(--purple-100);
  padding: 16px 0;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--purple);
}

.banner-inner svg {
  flex-shrink: 0;
}

.banner-inner p {
  font-size: 15px;
  font-weight: 500;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
}

.about-feature strong {
  display: block;
  font-size: 16px;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.03);
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--purple-100);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* ================================
   JOURNEY SECTION
   ================================ */
.section-journey {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-light) 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

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

.journey-header .section-text {
  margin: 0 auto;
}

.journey-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.timeline-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.timeline-content h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.timeline-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  flex-shrink: 0;
  margin-bottom: 60px;
}

/* ================================
   PROJECTS SECTION
   ================================ */
.section-projects {
  background: var(--gray-50);
}

.projects-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.project-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-100);
}

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

.project-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 20px;
}

.project-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.project-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  background: var(--purple-100);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}

/* ================================
   METHODOLOGY SECTION
   ================================ */
.methodology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.methodology-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.methodology-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.pillar:hover {
  background: var(--purple-50);
  border-color: var(--purple-100);
}

.pillar-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--purple-light);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 16px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ================================
   CTA SECTION
   ================================ */
.section-cta {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ================================
   TRANSPARENCY SECTION
   ================================ */
.transparency-header {
  text-align: center;
  margin-bottom: 56px;
}

.transparency-header .section-text {
  margin: 0 auto;
}

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

.transparency-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}

.transparency-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-100);
}

.transparency-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin: 0 auto 24px;
}

.transparency-card h3 {
  font-size: 20px;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.transparency-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.transparency-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--purple-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 32px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links-group a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
}

.footer-links-group a:hover {
  color: var(--white);
}

.footer-links-group svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.footer-bottom {
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

/* ================================
   REVEAL ANIMATIONS
   ================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {

  .about-grid,
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
  }

  .about-img {
    height: 360px;
  }

  .methodology-img {
    height: 360px;
  }

  .transparency-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--purple-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 9999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    z-index: 10000;
  }

  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    padding: 120px 24px 80px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number,
  .stat-suffix {
    font-size: 32px;
  }

  .stat-divider {
    height: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .journey-timeline {
    flex-direction: column;
    gap: 0;
  }

  .timeline-connector {
    width: 2px;
    height: 40px;
    margin-bottom: 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

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

  .hero-sub {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }
}