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

:root {
  --orange-main: #ff4d00;
  --orange-light: #ff7a33;
  --orange-soft: #ff9e66;
  --orange-deep: #cc3d00;
  --orange-glow: rgba(255, 77, 0, 0.45);
  --green-neon: #39ff14;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #0f0f14;
  color: #fff;
  overflow-x: hidden;
}
/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 3rem;
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
  backdrop-filter: blur(5px);
}

.navbar.hidden {
  top: -140px;
}

/* ===== LOGO ===== */
.logo {
  position: relative;
  height: 0;
  z-index: 1001;
}

.logo img {
  height: 130px;
  width: auto;
  position: absolute;
  top: -30px;
  left: -30px; /* adjust this number until it looks right */
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* STANDARD NAV LINKS (NOT BUTTONS) */
.nav-links a:not(.btn) {
  position: relative;
  color: #ff4d00;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
}

/* UNDERLINE ONLY FOR NON-BUTTON LINKS */
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ff4d00;
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* ACTIVE PAGE LINK */
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

/* ===== BUTTON LINK ===== */
.nav-links .btn {
  background-color: #39ff14;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(57, 255, 20, 0.65); /* thin neon border */
  transition: all 0.3s ease;

    /* stronger always-on glow */
  box-shadow:
    0 0 6px rgba(57, 255, 20, 0.55),
    0 0 12px rgba(57, 255, 20, 0.35),
    inset 0 0 6px rgba(57, 255, 20, 0.45);}

/* hover = stronger glow */
.nav-links .btn:hover {
  background-color: #39ff14;
  color: #000;
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.75),
    0 0 22px rgba(57, 255, 20, 0.5),
    inset 0 0 10px rgba(57, 255, 20, 0.55);
}



/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }

  .logo {
    height: auto;
  }

  .logo img {
    height: 65px;
    position: static;
    display: block;
    margin-left: -10px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0,0,0,0.95);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    text-align: center;
    gap: 1.5rem;
    padding: 0;
    font-size: 1.2rem;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a:not(.btn) {
    font-size: 1.3rem;
  }

  .nav-links .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
  }

  .nav-links.active {
    max-height: 500px;
    padding: 1rem 0;
  }
}

/* HIDE HAMBURGER ON DESKTOP */
@media (min-width: 865px) {
  .menu-toggle {
    display: none;
  }
}
/* ================= ANIMATIONS ================= */
@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

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

/* ================= SCROLL REVEAL SYSTEM ================= */

/* Everything starts hidden */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When JS adds .visible class */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for child elements */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ================= HERO ================= */
.about-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 8% 80px;
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 77, 0, 0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 122, 51, 0.12), transparent 45%),
    linear-gradient(to bottom, #1a0f0a, #0f0f14);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.2), transparent 70%);
  top: -100px; left: -150px;
  animation-delay: 0.3s;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.08), transparent 70%);
  bottom: -80px; right: -100px;
  animation-delay: 0.6s;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.7s ease forwards;
  animation-delay: 0.2s;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-headline span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.2rem;
  color: #d1d5db;
  max-width: 600px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.2s;
}

.scroll-cue span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7280;
}

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

/* ================= SHARED SECTION STYLES ================= */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-main);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}

.section-title span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= OUR STORY ================= */
.story-section {
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 77, 0, 0.1), transparent 50%),
    linear-gradient(to bottom, #0f0f14, #1a0f0a);
  padding: 100px 0;
}

.story-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-text p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.story-text p:last-child { margin-bottom: 0; }

.story-text strong {
  color: var(--orange-light);
  font-weight: 700;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(255, 77, 0, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 77, 0, 0.15);
}

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

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

/* ================= HOW IT WORKS - STAGGERED ================= */
.how-section {
  position: relative;
  padding: 140px 0 180px;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 77, 0, 0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 122, 51, 0.08), transparent 50%),
    linear-gradient(to bottom, #0f0f14, #1a0f0a);
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: 0;
}

.how-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(255, 77, 0, 0.06) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 77, 0, 0.04) 100%
  );
  z-index: 0;
}

.how-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8%;
  position: relative;
  z-index: 1;
}

.how-header {
  text-align: center;
  margin-bottom: 5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  align-items: start;
}

.steps-grid::before {
  content: '';
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  border-top: 2px dashed rgba(255, 77, 0, 0.25);
  top: 30%;
  pointer-events: none;
  z-index: 0;
}

/* Stagger each card down */
.step-card:nth-child(1) { margin-top: 0; }
.step-card:nth-child(2) { margin-top: 60px; }
.step-card:nth-child(3) { margin-top: 120px; }
.step-card:nth-child(4) { margin-top: 180px; }

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 0, 0.45);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 77, 0, 0.12);
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.step-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 77, 0, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.step-icon::before {
  content: '';
  position: absolute;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.12), transparent 70%);
  border-radius: 50%;
}

.step-icon img {
  width: 80%; height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 20px rgba(255, 77, 0, 0.25));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.step-card:hover .step-icon img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 16px 30px rgba(255, 77, 0, 0.45));
}

.step-icon-placeholder {
  width: 70%; height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed rgba(255, 77, 0, 0.25);
  border-radius: 16px;
  color: rgba(255, 77, 0, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.step-icon-placeholder::before {
  content: '+';
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.step-text {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange-main);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.step-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.step-card p {
  color: #9ca3af;
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
}

/* Equipment callout */
.equipment-callout {
  margin-top: 5rem;
  background: rgba(255, 77, 0, 0.06);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: 28px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.equipment-callout::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.12), transparent 60%);
  top: -100px; right: -100px;
  filter: blur(60px);
}

.equipment-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.equipment-text h3 span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.equipment-text p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.8;
}

.equipment-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.equip-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease;
}

.equip-feature:hover { border-color: rgba(255, 77, 0, 0.3); }

.equip-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.equip-feature-text strong {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.equip-feature-text span {
  color: #9ca3af;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ================= VALUES ================= */
.values-section {
  background:
    radial-gradient(circle at 10% 80%, rgba(255, 77, 0, 0.1), transparent 45%),
    linear-gradient(to bottom, #0f0f14, #1a0f0a);
  padding: 100px 0;
}

.values-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8%;
}

.values-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.value-card:nth-child(5) {
  grid-column: 1 / 3;
  justify-content: center;
  align-items: center;
}

.value-card:nth-child(5) .value-content h3 {
  font-size: 1.2rem;
  font-weight: 700;

}

.value-card:nth-child(5) .value-content {
  text-align: center;
}
.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:nth-child(5) { grid-column: 1 / 3; }

.value-emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
}

.value-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.value-content p {
  color: #9ca3af;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ================= CTA BANNER ================= */
.cta-banner {
  padding: 100px 8%;
  background: linear-gradient(to bottom, #1a0f0a, #0f0f14);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.18), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner h2 span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background-color: #39ff14;
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 1px solid rgba(57, 255, 20, 0.65);
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.55),
    0 0 22px rgba(57, 255, 20, 0.35);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  box-shadow:
    0 0 16px rgba(57, 255, 20, 0.75),
    0 0 35px rgba(57, 255, 20, 0.5);
  transform: translateY(-2px);
}

/* ================= FOOTER ================= */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 5rem 2rem 3rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.footer-column { flex: 1 1 220px; min-width: 220px; }

.footer-column h3 {
  color: #ff4d00;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 0.5rem; }

.footer-column a {
  color: #ff4d00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover { color: #ea580c; }

.footer-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d00, #ff8c42);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
  transition: all 0.25s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff5a00, #ff6600);
  box-shadow:
    0 10px 24px rgba(255, 90, 0, 0.6),
    0 0 15px rgba(255, 133, 0, 0.5);
}

.social-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0; margin: 0;
  list-style: none;
  gap: 1.5rem;
}

.social-links li a svg {
  width: 40px; height: 40px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links li a:hover svg { transform: scale(1.2); opacity: 0.85; }

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(1) { margin-top: 0; }
  .step-card:nth-child(2) { margin-top: 40px; }
  .step-card:nth-child(3) { margin-top: 0; }
  .step-card:nth-child(4) { margin-top: 40px; }
  .steps-grid::before { display: none; }

  .equipment-callout { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card:nth-child(n) { margin-top: 0; }
  .how-section { padding: 100px 0 120px; }
}

@media (max-width: 768px) {
  .about-hero { padding: 120px 6% 80px; }
  .story-inner, .how-inner, .values-inner { padding: 0 6%; }
  .equipment-callout { padding: 2rem; }
  .cta-banner { padding: 80px 6%; }

  .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .footer-column { width: 100%; max-width: 400px; text-align: center; }
  .social-links { justify-content: center; }
  .footer-btn { margin: 1rem auto 0; }
}
