/* ================= GLOBAL VARIABLES ================= */
:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --orange: #e86000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

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

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: 4px;
}

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

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

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

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

/* ================= SECTION LABELS ================= */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  color: var(--navy);
  line-height: 1;
}

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

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

.reveal {
  transform: translateY(32px);
}

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

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

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1,
.d1 {
  transition-delay: 0.1s;
}

.delay-2,
.d2 {
  transition-delay: 0.2s;
}

.delay-3,
.d3 {
  transition-delay: 0.3s;
}

.delay-4,
.d4 {
  transition-delay: 0.4s;
}

.delay-5,
.d5 {
  transition-delay: 0.5s;
}

.delay-6,
.d6 {
  transition-delay: 0.6s;
}

/* ================= PAGE HERO ================= */
#page-hero {
  position: relative;
  background: var(--navy);
  padding: 160px 0 80px;
  overflow: hidden;
}

#page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 15, 30, 0.97) 50%, rgba(10, 15, 30, 0.7) 100%),
    url('../img/banner.webp');
  background-size: cover;
  background-position: center;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--orange);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.breadcrumb a,
.breadcrumb span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

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

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb .current {
  color: var(--orange);
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 9vw, 96px);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 0.9;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}

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

.page-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.page-hero-bg-text {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

/* ================= TICKER ================= */
.ticker {
  background: var(--orange);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================= STORY ================= */
#story {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.story-imagery {
  position: relative;
}

.story-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 580px;
  background: url('../img/intro.webp') center/cover;
  border-radius: 2px;
}

.story-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 56%;
  aspect-ratio: 4/3;
  background: url('../img/logo.webp') center/cover;
  border-radius: 2px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-year-tag {
  position: absolute;
  top: 40px;
  left: -20px;
  background: var(--orange);
  padding: 20px 24px;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(232, 96, 0, 0.4);
}

.story-year-tag .year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--white);
  line-height: 1;
}

.story-year-tag .year-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.story-text {
  padding-bottom: 40px;
}

.story-text .section-title {
  margin-bottom: 28px;
}

.story-lead {
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 24px;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}

.story-body {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}

.story-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ================= STATS BAND ================= */
.stats-band {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 0, 0, 0.04) 20px, rgba(0, 0, 0, 0.04) 21px);
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.sband-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.sband-item:last-child {
  border: none;
}

.sband-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.sband-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* ================= VALUES ================= */
#values {
  padding: 120px 0;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

#values::after {
  content: 'VALUES';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(0, 0, 0, 0.025);
  letter-spacing: 10px;
  pointer-events: none;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-header p {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: 17px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-card {
  background: var(--white);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  cursor: default;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
  transform-origin: left;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.val-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.val-icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 96, 0, 0.07);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.3s;
}

.value-card:hover .val-icon {
  background: rgba(232, 96, 0, 0.12);
}

.val-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ================= TIMELINE ================= */
#timeline {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232, 96, 0, 0.06) 0%, transparent 70%);
}

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.timeline-header p {
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  font-size: 17px;
}

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

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.timeline-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
  position: relative;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-content {
  padding: 0 48px;
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.tl-item.left .tl-content {
  text-align: right;
  transform: translateX(-30px);
  grid-column: 1;
}

.tl-item.right .tl-content {
  text-align: left;
  transform: translateX(30px);
  grid-column: 3;
  grid-row: 1;
}

.tl-item.left .tl-dot {
  grid-column: 2;
  grid-row: 1;
}

.tl-item.right .tl-dot {
  grid-column: 2;
  grid-row: 1;
}

.tl-item.left .tl-spacer {
  grid-column: 3;
  grid-row: 1;
}

.tl-item.right .tl-spacer {
  grid-column: 1;
  grid-row: 1;
}

.tl-content.visible {
  opacity: 1;
  transform: none;
}

.tl-dot {
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
}

.tl-dot-inner {
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--navy);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--orange), 0 0 20px rgba(232, 96, 0, 0.4);
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-top: 6px;
  white-space: nowrap;
}

.tl-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.tl-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ================= PROCESS ================= */
#process {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.process-header {
  margin-bottom: 80px;
}

.process-header p {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: 17px;
  max-width: 500px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--orange);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}

.process-step:hover .step-circle {
  background: var(--orange);
  transform: scale(1.08);
}

.step-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}

.process-step:hover .step-circle svg {
  stroke: white;
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--navy);
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ================= CERTIFICATIONS ================= */
#certs {
  padding: 100px 0;
  background: var(--gray-100);
}

.certs-header {
  text-align: center;
  margin-bottom: 72px;
}

.certs-header p {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: 17px;
}

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

.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.cert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(232, 96, 0, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 14px;
  color: var(--gray-400);
}

/* ================= CTA SECTION ================= */
#cta-about {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#cta-about::before {
  content: 'START TODAY';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: 10px;
  white-space: nowrap;
}

.cta-about-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.cta-about-inner p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-about-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .nav-links {
    gap: 10px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .story-imagery {
    max-width: 600px;
  }

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

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .sband-item {
    border: none;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

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

@media (max-width: 850px) {

  .nav-links,
  .nav-cta,
  .search-container {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .certs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .tl-item {
    grid-template-columns: 1fr;
  }

  .tl-item.left .tl-content,
  .tl-item.right .tl-content {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    padding: 0 0 0 32px;
  }

  .tl-item.left .tl-dot,
  .tl-item.right .tl-dot {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    width: auto;
    padding: 0;
    margin-bottom: 16px;
  }

  .tl-item.left .tl-spacer,
  .tl-item.right .tl-spacer {
    display: none;
  }

  .timeline-line {
    left: 0;
  }

  .story-img-accent {
    display: none;
  }

  .story-year-tag {
    left: 20px;
  }

  .cta-about-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .certs-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-band-grid {
    grid-template-columns: 1fr;
  }

  .sband-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .sband-item:last-child {
    border: none;
    margin: 0;
  }
}