* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-noto);
      background: #fff;
      color: #1a2340;
      line-height: 1.5;
    }

    .text-gold {
      color: #c9a84c;
    }

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


/* Base nav container */
.site-nav {
  background: #1a2d4a;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.nav-logo img:hover {
  opacity: 0.85;
}

/* Desktop navigation links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-noto);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
  position: relative;
}

/* Hover state — gold */
.nav-links a:hover {
  color: #c9a84c;
}

/* Active state — gold with subtle underline */
.nav-links a.active {
  color: #c9a84c;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c9a84c;
  border-radius: 2px;
}

/* Work with me button */
.nav-work-btn {
  background: none;
  border: 1.5px solid #c9a84c;
  color: #c9a84c;
  font-size: 13px;
  padding: 8px 24px;
  border-radius: 40px;
  font-family: var(--font-noto);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  min-width: 135px;
  text-align: center;
}

.nav-work-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #e2bc5e;
  border-color: #e2bc5e;
  transform: translateY(-1px);
}

/* Mobile menu toggle (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: 0.2s;
  border-radius: 2px;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Responsive styles */
@media (max-width: 900px) {
  .nav-container {
    padding: 0 24px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 12px;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .nav-work-btn {
    margin-top: 4px;
    text-align: center;
    width: auto;
    display: inline-block;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 20px;
  }
}

    /* ----- HERO SECTION ----- */
    .hero-building {
      background: linear-gradient(135deg, #fefaf5 0%, #fff 100%);
      border-bottom: 1px solid #f0e7dc;
    }

    .hero-building-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 48px 64px;
      display: flex;
      gap: 60px;
      align-items: center;
    }

    .hero-text {
      flex: 1;
    }

    .hero-label {
      color: #c9a84c;
      font-size: 10px;
      letter-spacing: 0.18em;
      font-family: var(--font-noto);
      margin-bottom: 18px;
      text-transform: uppercase;
    }

    .hero-building h1 {
      font-size: 52px;
      font-weight: 700;
      color: #1a2d4a;
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .hero-building p {
      font-size: 18px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.7;
    }

    .hero-dashboard {
  flex: 1;
  border-radius: 24px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hero-dashboard img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

    /* Section Headers */
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-tag {
      font-size: 12px;
      letter-spacing: 0.2em;
      font-family: var(--font-noto);
      color: #c9a84c;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .section-header h2 {
      font-size: 32px;
      font-weight: 700;
      color: #1a2d4a;
    }

    /* Problem Section (slightly reduced size) */
    .problem-section {
      padding: 50px 0 60px;
      border-bottom: 1px solid #eef2f7;
    }

    .problem-card {
      background: #fefbf7;
      border-radius: 24px;
      padding: 28px 36px;
      border: 1px solid #f0e7dc;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .problem-card p {
      font-size: 17px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.6;
    }

    /* Timeline (Where we are) */
    .timeline-section {
      padding: 70px 0 50px;
      border-bottom: 1px solid #eef2f7;
      background: #ffffff;
    }

    .timeline-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin: 36px auto 16px;
      max-width: 980px;
      counter-reset: timeline-step;
    }

    .timeline-item {
      counter-increment: timeline-step;
      position: relative;
      min-height: 118px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: #ffffff;
      border-radius: 8px;
      padding: 18px 18px 18px 20px;
      border: 1px solid #e8edf5;
      border-left: 4px solid #c9a84c;
      transition: all 0.2s ease;
      text-align: left;
      box-shadow: 0 10px 24px rgba(26, 45, 74, 0.045);
    }

    .timeline-item::before {
      content: counter(timeline-step, decimal-leading-zero);
      position: absolute;
      right: 16px;
      top: 16px;
      color: #8a7440;
      font-family: var(--font-noto);
      font-size: 10px;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: 0.08em;
      padding: 5px 8px;
      border-radius: 999px;
      background: rgba(201, 168, 76, 0.14);
    }

    .timeline-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 30px rgba(26, 45, 74, 0.09);
      border-color: rgba(201, 168, 76, 0.45);
    }

    .timeline-icon {
      width: 46px;
      height: 46px;
      flex: 0 0 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c9a84c;
      background: #1a2d4a;
      border: 1px solid rgba(26, 45, 74, 0.12);
      border-radius: 12px;
      box-shadow: 0 8px 18px rgba(26, 45, 74, 0.12);
    }

    .timeline-icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .timeline-event {
      font-size: 15px;
      font-weight: 800;
      color: #1a2d4a;
      font-family: var(--font-noto);
      margin: 28px 0 0;
      padding-right: 24px;
      line-height: 1.45;
    }

    .timeline-date {
      width: fit-content;
      font-size: 10px;
      font-family: var(--font-noto);
      color: #c9a84c;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0;
      border-radius: 0;
      background: transparent;
      position: absolute;
      left: 82px;
      top: 20px;
    }

    /* Traction stats */
    .stats-section {
      padding: 40px 0 60px;
      border-bottom: 1px solid #eef2f7;
    }

    .stats-showcase {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      max-width: 820px;
      margin: 32px auto 20px;
      background: #ffffff;
      border: 1px solid #eef2f7;
      border-radius: 18px;
      box-shadow: 0 14px 34px rgba(26, 45, 74, 0.05);
      overflow: hidden;
    }

    .stat-block {
      text-align: center;
      background: transparent;
      padding: 20px 18px;
      border-radius: 0;
      min-width: 0;
      border: 0;
      border-right: 2px solid #c9a84c;
      box-shadow: none;
    }

    .stat-block:last-child {
      border-right: 0;
    }

    .stat-number {
      font-size: 34px;
      font-weight: 700;
      color: #c9a84c;
      font-family: var(--font-noto);
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      font-family: var(--font-noto);
      color: #4a6080;
      margin-top: 6px;
      line-height: 1.35;
    }

    /* Solution Section */
    .solution-section {
      padding: 70px 0;
      border-bottom: 1px solid #eef2f7;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    .solution-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 0;
  border: 1px solid #f0e7dc;
  transition: transform 0.2s ease;
  overflow: hidden;
}

    .solution-card:hover {
      transform: translateY(-4px);
    }

    .solution-icon {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .solution-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 16px;
    }

    .solution-card p {
      font-size: 15px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.65;
      margin-bottom: 16px;
    }

    
.solution-card-image {
  width: 100%;
  height: 280px;
  background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  margin: 0;
  padding: 8px;
  box-sizing: border-box;
}

.solution-card-content {
  padding: 24px 28px 28px;
}

    .feature-list {
      list-style: none;
      margin-top: 16px;
    }

    .feature-list li {
      font-size: 14px;
      font-family: var(--font-noto);
      color: #1a2d4a;
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .feature-list li::before {
      content: "✓";
      color: #c9a84c;
      font-weight: bold;
    }

    /* Key learnings to date (timeline style) */
    .learnings-section {
      padding: 70px 0;
      border-bottom: 1px solid #eef2f7;
    }

    .learnings-timeline {
      max-width: 800px;
      margin: 0 auto;
    }

    .learning-item {
      display: flex;
      gap: 24px;
      margin-bottom: 32px;
      padding: 20px 0;
      border-bottom: 1px solid #f0e7dc;
    }

    .learning-year {
      min-width: 100px;
      font-weight: 700;
      font-size: 18px;
      color: #c9a84c;
      font-family: var(--font-noto);
    }

    .learning-content p {
      font-size: 16px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.6;
    }

    /* What I'm learning - 4 columns */
    .key-learnings-section {
      padding: 70px 0;
      border-bottom: 1px solid #eef2f7;
    }

    .key-learnings-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .learning-card {
      background: #ffffff;
      border: 1px solid #f0e7dc;
      border-radius: 20px;
      padding: 28px 20px;
      text-align: center;
      transition: all 0.2s ease;
    }

    .learning-card:hover {
      transform: translateY(-4px);
      border-color: #e0d5c5;
    }

    .learning-icon {
      font-size: 38px;
      margin-bottom: 16px;
    }

    .learning-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 12px;
      font-family: var(--font-noto);
    }

    .learning-card p {
      font-size: 13px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.6;
    }


/* Testimonials Slideshow */
.testimonials-slideshow {
  padding: 60px 0 40px;
  border-bottom: 1px solid #eef2f7;
}

.testimonials-slideshow .section-header {
  margin-bottom: 32px;
}

.testimonials-slideshow .section-header h2 {
  font-size: 28px;
}

.testimonials-carousel-mini {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials-track-mini {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 16px;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-slide img {
  width: 80%;
  height: auto;
  max-width: 600px;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

/* Slideshow controls */
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 45, 74, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.slideshow-btn:hover {
  background: #c9a84c;
  border-color: #c9a84c;
}

.slideshow-btn svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.slideshow-btn:hover svg {
  stroke: #1a2d4a;
}

.slideshow-btn-prev {
  left: 12px;
}

.slideshow-btn-next {
  right: 12px;
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d8e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slideshow-dot.active {
  background: #c9a84c;
  transform: scale(1.2);
}

.slideshow-dot:hover {
  background: #c9a84c;
}

@media (max-width: 640px) {
  .slideshow-btn {
    width: 32px;
    height: 32px;
  }
  
  .slideshow-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .slideshow-btn-prev {
    left: 8px;
  }
  
  .slideshow-btn-next {
    right: 8px;
  }
}

/* FOOTER */
.footer-cta{background:#1a2d4a;}
.footer-inner{max-width:1100px;margin:0 auto;padding:80px;text-align:center;}
.footer-h2{color:#fff;font-size:34px;font-weight:700;margin-bottom:12px;}
.footer-sub{color:#8a9bb5;font-size:15px;font-family:Arial,sans-serif;margin-bottom:32px;max-width:560px;margin-left:auto;margin-right:auto;line-height:1.8;}

.btn-gold {
  background: #c9a84c;
  color: #1a2d4a;
  font-size: 13px;
  padding: 16px 36px;
  border: none;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.btn-gold:hover {
  background: #b89432;
  transform: translateY(-2px);
}

.footer-bottom{border-top:1px solid #253e60;margin-top:48px;padding-top:28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:24px;}

.footer-left {
  text-align: left;
}

.footer-copy{color:#4a6080;font-size:12px;font-family:Arial,sans-serif;margin-bottom:12px;}
.footer-links{display:flex;gap:24px;flex-wrap:wrap;}
.footer-links a{color:#4a6080;font-size:12px;font-family:Arial,sans-serif;text-decoration:none;transition:color 0.2s ease;}
.footer-links a:hover{color:#c8d8e8;}

.footer-social {
  text-align: right;
}

.social-label {
  color:#4a6080;
  font-size:11px;
  font-family:Arial,sans-serif;
  letter-spacing:0.1em;
  margin-bottom:12px;
  display:block;
  text-transform:uppercase;
}

.social-icons {
  display:flex;
  gap:16px;
  justify-content:flex-end;
}

.footer-social-link {
  width:36px;
  height:36px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s ease;
}

.footer-social-link svg {
  width:18px;
  height:18px;
  stroke:#8a9bb5;
  stroke-width:1.5;
  fill:none;
}

.footer-social-link:hover {
  background:#c9a84c;
  transform:translateY(-2px);
}

.footer-social-link:hover svg {
  stroke:#1a2d4a;
}

    @media (max-width: 900px) {
      .container {
        padding: 0 24px;
      }
      .hero-building-inner {
        flex-direction: column;
        padding: 48px 24px;
      }
      .hero-building h1 {
        font-size: 36px;
      }
      .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .solution-grid {
        grid-template-columns: 1fr;
      }
      .key-learnings-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .learning-item {
        flex-direction: column;
        gap: 8px;
      }
      .learning-year {
        min-width: auto;
      }
      .footer-inner {
        padding: 48px 24px;
      }
      .nav-inner {
        padding: 0 24px;
        justify-content: center;
      }
    }

    @media (max-width: 550px) {
      .key-learnings-grid {
        grid-template-columns: 1fr;
      }
    }

    /* WHAT I'M BUILDING RESPONSIVE DESIGN */
    @media (max-width: 1100px) {
      .nav-container,
      .container,
      .hero-building-inner,
      .footer-inner {
        padding-left: 48px;
        padding-right: 48px;
      }

      .nav-links {
        gap: 20px;
      }

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

      .key-learnings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      body {
        overflow-x: hidden;
      }

      .nav-container {
        justify-content: space-between;
        padding: 14px 28px;
        gap: 0;
      }

      .nav-logo {
        justify-content: flex-start;
        width: auto;
      }

      .nav-logo img {
        height: 50px;
      }

      .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 6px;
        flex-shrink: 0;
      }

      .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
        margin: 3px 0;
        border-radius: 2px;
        transform-origin: center;
      }

      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 16px 0 4px;
        margin-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
      }

      .nav-toggle:checked ~ .nav-links {
        display: flex;
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        width: 100%;
        padding: 11px 0;
        font-size: 13px;
      }

      .nav-work-btn {
        min-width: 0;
        margin-top: 8px;
        padding: 10px 18px;
        width: fit-content;
      }

      .hero-building-inner {
        flex-direction: column;
        padding: 64px 48px 56px;
        gap: 36px;
        text-align: center;
      }

      .hero-building h1 {
        font-size: 42px;
      }

      .hero-building p {
        max-width: 650px;
        margin: 0 auto;
        font-size: 16px;
      }

      .hero-dashboard {
        width: min(520px, 100%);
        min-height: 300px;
        flex: none;
      }

      .problem-section,
      .timeline-section,
      .stats-section,
      .solution-section,
      .learnings-section,
      .key-learnings-section {
        padding: 56px 0;
      }

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

      .section-header h2 {
        font-size: 30px;
      }

      .problem-card {
        padding: 28px;
      }

      .timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .stats-showcase {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
      }

      .stat-block:nth-child(2) {
        border-right: 0;
      }

      .stat-block:nth-child(-n + 2) {
        border-bottom: 1px solid #eef2f7;
      }

      .solution-grid,
      .key-learnings-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
      }

      .learning-item {
        flex-direction: column;
        gap: 10px;
      }

      .learning-year {
        min-width: 0;
      }

      .footer-inner {
        padding: 64px 48px 36px;
      }

      .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
      }
    }

    @media (max-width: 640px) {
      .nav-container,
      .container,
      .hero-building-inner,
      .footer-inner {
        padding-left: 24px;
        padding-right: 24px;
      }

      .nav-container {
        padding-top: 12px;
        padding-bottom: 12px;
      }

      .nav-links a {
        font-size: 12px;
      }

      .nav-work-btn {
        padding: 9px 14px;
      }

      .hero-building-inner {
        padding-top: 52px;
        padding-bottom: 48px;
      }

      .hero-label,
      .section-tag {
        line-height: 1.5;
      }

      .hero-building h1 {
        font-size: 36px;
      }

      .hero-building p,
      .problem-card p,
      .solution-card p,
      .learning-content p,
      .footer-sub {
        font-size: 15px;
      }

      .hero-dashboard {
        min-height: 240px;
        border-radius: 18px;
      }

      .problem-section,
      .timeline-section,
      .stats-section,
      .solution-section,
      .learnings-section,
      .key-learnings-section {
        padding: 48px 0;
      }

      .section-header h2,
      .footer-h2 {
        font-size: 26px;
      }

      .problem-card,
      .solution-card,
      .learning-card {
        border-radius: 16px;
        padding: 24px 20px;
      }

      .timeline-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 28px 0 10px;
      }

      .timeline-item {
        min-height: 0;
        border-radius: 8px;
        padding: 16px 16px 16px 18px;
        gap: 14px;
      }

      .timeline-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
      }

      .timeline-icon svg {
        width: 21px;
        height: 21px;
      }

      .timeline-event {
        font-size: 13px;
        margin-top: 24px;
        padding-right: 18px;
      }

      .timeline-date {
        font-size: 10px;
        left: 76px;
        top: 18px;
      }

      .stats-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 24px 0 12px;
        border-radius: 14px;
      }

      .stat-block {
        min-width: 0;
        padding: 14px 12px;
        border-right: 2px solid #c9a84c;
      }

      .stat-number {
        font-size: 30px;
        line-height: 1;
      }

      .stat-label {
        font-size: 11px;
        margin-top: 5px;
        line-height: 1.3;
      }

      .feature-list li {
        align-items: flex-start;
      }

      .learnings-timeline {
        max-width: 100%;
      }

      .learning-item {
        margin-bottom: 22px;
        padding: 18px 0;
      }

      .btn-gold {
        width: 100%;
      }

      .footer-links {
        flex-direction: column;
        gap: 10px;
      }
    }

    @media (max-width: 420px) {
      .nav-container,
      .container,
      .hero-building-inner,
      .footer-inner {
        padding-left: 18px;
        padding-right: 18px;
      }

      .hero-building h1 {
        font-size: 32px;
      }

      .hero-dashboard {
        min-height: 210px;
      }

      .problem-card,
      .solution-card,
      .learning-card {
        padding: 22px 18px;
      }
    }

/* Shared mobile nav polish */
.nav-icon {
  display: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-links {
    border-top: 0 !important;
    padding: 16px 0 8px !important;
  }

  .nav-links a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100%;
  }

  .nav-links a.active::after {
    display: none !important;
  }

  .nav-icon {
    display: inline-block;
  }

  .nav-work-btn {
    justify-content: center !important;
    min-width: 0;
    margin: 18px auto 0 !important;
    padding: 12px 22px !important;
    width: min(100%, 360px) !important;
    text-align: center;
  }
}
