* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

:root {
  --nav-offset: 70px;
}

html {
  scroll-behavior: smooth;
    scroll-padding-top: var(--nav-offset);
}

body {
  background: #0b0b0b;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;

}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
    padding-top: var(--nav-offset);
}

/* BACKGROUND GRADIENT */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(255, 140, 0, 0.25), transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(255, 94, 0, 0.2), transparent 60%);
  filter: blur(80px);
  z-index: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero .badge,
.hero h1,
.hero p,
.hero .cta-group,
.hero .stats-box {
  opacity: 0;
  transform: translateY(14px);
}

.hero.hero-animate h1 {
  animation: heroPop 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.12s;
}

.hero.hero-animate .badge {
  animation: heroPop 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.34s;
}

.hero.hero-animate p {
  animation: heroPop 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.46s;
}

.hero.hero-animate .cta-group {
  animation: heroPop 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.58s;
}

.hero.hero-animate .stats-box {
  animation: heroPop 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.7s;
}

.hero-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 40, 0.22);
  background: linear-gradient(145deg, rgba(44, 28, 6, 0.72), rgba(22, 15, 5, 0.88));
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.42), 0 0 24px rgba(255, 145, 30, 0.1);
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translateY(18px) scale(0.88);
}

.hero-float-left {
  top: 20%;
  left: max(16px, 4.4vw);
}

.hero-float-right {
  top: 65%;
  right: max(16px, 4.4vw);
}

.hero-float-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1px solid rgba(255, 190, 70, 0.26);
  background: rgba(255, 155, 30, 0.14);
  color: #f7b93f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.hero-float-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.hero-float-copy strong {
  color: #f2f2f2;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-float-copy small {
  color: #a9a9a9;
  font-size: 11px;
  line-height: 1.1;
}

.hero.hero-animate .hero-float-left {
  animation: heroFloatPop 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 1.02s;
}

.hero.hero-animate .hero-float-right {
  animation: heroFloatPop 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 1.2s;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(255, 200, 80, 0.15),
    rgba(255, 140, 0, 0.05)
  );

  border: 1px solid rgba(255, 180, 60, 0.3);

  color: #ffcc66;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  backdrop-filter: blur(6px);

  /* subtle glow */
  box-shadow: 0 0 20px rgba(255, 180, 60, 0.15);

  margin-bottom: 20px;
}

.badge:hover {
  border-color: rgba(255, 200, 80, 0.6);
  box-shadow: 0 0 25px rgba(255, 200, 80, 0.25);
}

/* HEADLINE */
.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

.hero.hero-animate h1 span::after {
  animation: underlineReveal 0.6s ease forwards;
  animation-delay: 1.05s;
}

@keyframes heroPop {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  70% {
    opacity: 0.92;
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineReveal {
  0% {
    opacity: 1;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes heroFloatPop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.88);
  }
  65% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .badge,
  .hero h1,
  .hero p,
  .hero .cta-group,
  .hero .stats-box,
  .hero .hero-float {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero h1 span::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* TEXT */
.hero p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  padding: 14px 26px;
  border-radius: 15px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 94, 0, 0.4);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 26px;
  border-radius: 15px;
  text-decoration: none;
  color: rgb(221, 221, 221);
  transition: 0.3s;
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: rgb(255, 136, 0);
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
}

.stats h3 {
  font-size: 28px;
  color: #ff8c00;
}

.stats p {
  font-size: 14px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-float {
    display: none;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .cta-group {
    flex-direction: column;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 10px 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff8c00, #ff5e00);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.logo-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 8px;

  /* subtle glow */
  box-shadow: 0 0 15px rgba(255, 180, 60, 0.3);

  /* slight border */
  border: 1px solid rgba(255, 180, 60, 0.2);
}

.logo span b {
  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: white;
}

/* CTA BUTTON */
.nav-cta {
  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 600;
}

.nav-toggle,
.nav-close {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 0, 0.25);
  background: rgba(255,255,255,0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span,
.nav-close span {
  display: block;
  background: white;
  border-radius: 999px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
}

.nav-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-popup-panel {
  width: min(100%, 340px);
  margin-top: 4px;
  padding: 20px;
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(10, 10, 10, 0.98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(-12px) scale(0.98);
  transition: transform 0.25s ease;
}

.nav-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-popup {
  font-size: 15px;
}

.nav-close {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
}

.nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-popup-menu {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.nav-popup-menu a,
.nav-popup-cta {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
}

.nav-popup-menu a {
  color: #e7e7e7;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.nav-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  color: white;
  font-weight: 600;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav-popup {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .nav-popup-panel {
  transform: translateY(0) scale(1);
}

@media (max-width: 900px) {
  .nav-container {
    gap: 12px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-cta {
    padding: 9px 16px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 8px 0;
  }

  .logo {
    font-size: 15px;
  }

  .logo-img {
    width: 28px;
    height: 28px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-toggle,
  .nav-close {
    display: inline-flex;
  }
}

.stats-box {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(100%, 700px);
  margin-left: auto;
  margin-right: auto;

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;

  background: rgba(255,255,255,0.02);
}

.stat-item {
  padding: 20px 10px 5px 10px;
  text-align: center;
  position: relative;
}

/* Divider */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px;
  height: 50%;
  background: rgba(255,255,255,0.08);
}

/* Text */
.stat-item h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;

  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.5px;
}

.stat-item:hover {
  background: rgba(255, 140, 0, 0.05);
}

@media (max-width: 768px) {
  .stats-box {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .stat-item {
    padding: 18px 20px;
  }

  .stat-item:not(:last-child)::after {
    right: 12%;
    left: 12%;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }
}


.deliverables {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  margin: 20px 0;
}

.section-header span {
  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.deliverables .card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(255, 140, 0, 0.12) 0%,
    rgba(255, 94, 0, 0.06) 45%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255,140,0,0.22);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.65s ease, box-shadow 0.65s ease, background 0.65s ease;
}

.deliverables .card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 170, 55, 0.7);
  background: linear-gradient(
    160deg,
    rgba(255, 150, 35, 0.24) 0%,
    rgba(255, 98, 0, 0.14) 48%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: 0 18px 44px rgba(255, 115, 0, 0.24), 0 0 28px rgba(255, 145, 35, 0.2);
}

/* ICON */
.card .icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #f0c246;
  border-radius: 12px;
  background: rgba(240, 194, 70, 0.16);
}

.card .icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TITLE */
.card h3 {
  margin-bottom: 5px;
}

/* SUBTITLE */
.subtitle {
  color: #ff8c00;
  font-size: 14px;
  margin-bottom: 15px;
}

/* LIST */
.card ul {
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ccc;
  font-size: 14px;
}

.card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff8c00;
}

.quote-box {
  margin-top: 50px;
  padding: 30px 40px;
  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(255,140,0,0.12),
    rgba(255,94,0,0.04)
  );

  border: 1px solid rgba(255,140,0,0.2);

  text-align: center;

  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quote-box h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}

.quote-box span {
  color: #ff8c00;
}

.quote-box p {
  font-size: 13px;
  color: #888;
}


@media (max-width: 768px) {
  .quote-box {
    padding: 25px 20px;
  }

  .quote-box h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 30px;
  }

}

.roadmap {
  padding: 120px 0;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1), transparent 70%);
}

.timeline {
  position: relative;
  margin-top: 80px;
}

/* vertical line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ff8c00, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item.left .content {
  width: 45%;
}

.timeline-item.right {
  flex-direction: row-reverse;
}

.timeline-item.right .content {
  width: 45%;
}

.content {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,140,0,0.2);
  border-radius: 16px;
  padding: 25px;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.65s ease, box-shadow 0.65s ease, background 0.65s ease;
}

.roadmap .content:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 170, 55, 0.7);
  background: linear-gradient(
    160deg,
    rgba(255, 150, 35, 0.24) 0%,
    rgba(255, 98, 0, 0.14) 48%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: 0 18px 44px rgba(255, 115, 0, 0.24), 0 0 28px rgba(255, 145, 35, 0.2);
}

.phase {
  font-size: 11px;
  color: #ff8c00;
  letter-spacing: 1px;
}

.content h3 {
  margin: 10px 0;
}

.content ul {
  padding-left: 18px;
}

.content li {
  margin-bottom: 6px;
  color: #ccc;
}

.circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;

  background: linear-gradient(135deg, #ff8c00, #ff5e00);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  color: white;

  box-shadow: 0 0 20px rgba(255,140,0,0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.92s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.92s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 34px), 0) scale(var(--reveal-scale, 0.982));
  filter: blur(var(--reveal-blur, 8px)) saturate(0.9);
  transition: opacity var(--reveal-duration, 0.9s) cubic-bezier(0.16, 1, 0.3, 1), transform var(--reveal-duration, 0.9s) cubic-bezier(0.16, 1, 0.3, 1), filter var(--reveal-duration, 0.9s) cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0) saturate(1);
}

.testimonials .section-header.scroll-reveal,
.clients-copy.section-header.scroll-reveal {
  --reveal-y: 26px;
  --reveal-blur: 5px;
  --reveal-scale: 0.99;
  --reveal-duration: 0.8s;
}

.clients-copy.section-header.scroll-reveal {
  --reveal-delay: 0ms;
}

.testimonials .testi-grid .testi-card.scroll-reveal,
.clients-grid .client-card.scroll-reveal {
  --reveal-y: 32px;
  --reveal-blur: 9px;
  --reveal-scale: 0.975;
  --reveal-duration: 0.86s;
}

.clients-grid .client-card.scroll-reveal {
  --reveal-delay: 180ms;
}

.clients-grid .client-card:nth-child(1) { --reveal-delay: 180ms; }
.clients-grid .client-card:nth-child(2) { --reveal-delay: 240ms; }
.clients-grid .client-card:nth-child(3) { --reveal-delay: 300ms; }
.clients-grid .client-card:nth-child(4) { --reveal-delay: 360ms; }
.clients-grid .client-card:nth-child(5) { --reveal-delay: 420ms; }
.clients-grid .client-card:nth-child(6) { --reveal-delay: 480ms; }
.clients-grid .client-card:nth-child(7) { --reveal-delay: 540ms; }
.clients-grid .client-card:nth-child(8) { --reveal-delay: 600ms; }

.deliverables .section-header.scroll-reveal {
  transition-duration: 0.72s;
}

.deliverables .card-grid .card.scroll-reveal {
  transition-duration: 0.78s;
}

.deliverables .card-grid .card:nth-child(1) {
  --reveal-delay: 0ms;
}

.deliverables .card-grid .card:nth-child(2) {
  --reveal-delay: 70ms;
}

.deliverables .card-grid .card:nth-child(3) {
  --reveal-delay: 140ms;
}

.testimonials .testi-grid .testi-card:nth-child(1),
.philosophy .philo-grid .philo-card:nth-child(1) {
  --reveal-delay: 50ms;
}

.deliverables .card-grid .card:nth-child(2),
.testimonials .testi-grid .testi-card:nth-child(2),
.philosophy .philo-grid .philo-card:nth-child(2) {
  --reveal-delay: 145ms;
}

.deliverables .card-grid .card:nth-child(3),
.testimonials .testi-grid .testi-card:nth-child(3) {
  --reveal-delay: 240ms;
}

@media (max-width: 768px) {

  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-item.right {
    flex-direction: column;
  }

  .timeline-item.left .content,
  .timeline-item.right .content {
    width: 100%;
  }

  .phase {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .circle {
    left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.testi-scroll-wrapper {
  position: relative;
}

.testimonials {
  position: sticky;
  top: var(--nav-offset);
  height: calc(100vh - var(--nav-offset));
  overflow: hidden;
  padding: 60px 0 0;
}

.testi-track-outer {
  margin-top: 40px;
  padding-left: 5%;
  padding-right: 5%;
}

@media (min-width: 1334px) {
  .testi-track-outer {
    padding-left: calc((100vw - 1200px) / 2);
  }
}

.testi-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 34px;
  will-change: transform;
  transition: transform 0.08s linear;
}

.testi-card {
  position: relative;
  flex: 0 0 clamp(520px, 46vw, 620px);
  width: clamp(520px, 46vw, 620px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(9, 9, 9, 0.98)),
    radial-gradient(circle at top right, rgba(255, 137, 31, 0.16), transparent 45%);
  border: 1px solid rgba(255, 150, 40, 0.18);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.testi-card.scroll-reveal {
  transition:
    opacity var(--reveal-duration, 0.86s) cubic-bezier(0.16, 1, 0.3, 1),
    transform var(--reveal-duration, 0.86s) cubic-bezier(0.16, 1, 0.3, 1),
    filter var(--reveal-duration, 0.86s) cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

.testi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 146, 44, 0.2), rgba(255, 94, 0, 0.02) 36%, transparent 72%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testi-card > * {
  position: relative;
  z-index: 1;
}

.testi-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 171, 74, 0.42);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 159, 64, 0.08);
}

.testi-card:hover::before {
  opacity: 1;
}

.testi-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px 22px 0;
}

.testi-shot {
  position: relative;
  aspect-ratio: 25 / 7;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 163, 70, 0.16);
  background: linear-gradient(180deg, #0a0a0a, #141414);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.testi-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.52));
}

.testi-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.45s ease;
}

.testi-shot-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 100, 0.22);
  background: rgba(0, 0, 0, 0.58);
  color: #ffe2b7;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testi-card:hover .testi-shot img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.testi-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-content p {
  font-size: 14px;
  color: #c4c4c4;
  line-height: 1.72;
}


@media (max-width: 768px) {
  .testi-scroll-wrapper {
    height: auto !important;
  }

  .testimonials {
    position: static;
    height: auto;
    overflow: visible;
    padding: 80px 0;
  }

  .testi-track-outer {
    margin-top: 32px;
    padding-left: 5%;
    padding-right: 5%;
    overflow-x: visible;
  }

  .testi-grid {
    flex-direction: column;
    width: 100%;
    transform: none !important;
    transition: none;
    gap: 24px;
  }

  .testi-card {
    flex: none;
    width: 100%;
  }
}


.testi-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testi-metric-item {
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 158, 60, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.testi-metric-item-accent {
  border-color: rgba(255, 156, 50, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 141, 33, 0.24), rgba(255, 94, 0, 0.11)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 0 0 1px rgba(255, 180, 86, 0.12), 0 12px 28px rgba(255, 94, 0, 0.18);
}

.testi-metric-label {
  display: block;
  margin-bottom: 8px;
  color: #9e9e9e;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testi-metric-item strong {
  display: block;
  color: #fff1df;
  font-size: 17px;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .testi-metrics {
    grid-template-columns: 1fr;
  }
}

.clients-showcase {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.clients-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 140, 0, 0.2), transparent 44%),
    radial-gradient(circle at 84% 76%, rgba(255, 94, 0, 0.14), transparent 40%);
  opacity: 0.9;
  pointer-events: none;
}

.clients-showcase .container {
  z-index: 1;
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 28px;
}

.clients-copy.section-header {
  text-align: left;
  margin: 0;
  max-width: none;
  position: sticky;
  top: 92px;
}

.clients-copy.section-header h2 {
  font-size: clamp(28px, 2.4vw, 36px);
  margin: 16px 0 14px;
}

.clients-copy.section-header p {
  font-size: 15px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.client-card {
  position: relative;
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(160deg, rgba(255, 143, 32, 0.16), rgba(255, 88, 0, 0.09) 50%, rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(9, 9, 9, 0.98));
  border: 1px solid rgba(255, 160, 55, 0.22);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  animation: clientDrift 9.5s ease-in-out infinite;
  transition: transform 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.client-card.scroll-reveal {
  animation-play-state: paused;
  transition:
    opacity var(--reveal-duration, 0.86s) cubic-bezier(0.16, 1, 0.3, 1),
    transform var(--reveal-duration, 0.86s) cubic-bezier(0.16, 1, 0.3, 1),
    filter var(--reveal-duration, 0.86s) cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

.client-card.scroll-reveal.is-visible {
  animation-play-state: running;
}

.client-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 169, 74, 0.14), transparent 38%, transparent 62%, rgba(255, 112, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.client-card:nth-child(2n) {
  animation-duration: 11.5s;
}

.client-card:nth-child(3n) {
  animation-duration: 12.5s;
}

.client-card:nth-child(1) { animation-delay: -1.3s; }
.client-card:nth-child(2) { animation-delay: -2.2s; }
.client-card:nth-child(3) { animation-delay: -0.7s; }
.client-card:nth-child(4) { animation-delay: -3.4s; }
.client-card:nth-child(5) { animation-delay: -2.6s; }
.client-card:nth-child(6) { animation-delay: -1.1s; }
.client-card:nth-child(7) { animation-delay: -3.1s; }
.client-card:nth-child(8) { animation-delay: -0.3s; }

.client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 182, 88, 0.64);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 157, 50, 0.14);
}

.client-card:hover::after {
  opacity: 1;
}

.client-logo-shell {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 178, 84, 0.24);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.client-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.client-card h3 {
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  font-weight: 600;
  color: #f2f2f2;
}

.client-logo-shell-1 { background: #755857; }
.client-logo-shell-2 { background: #2d3035; }
.client-logo-shell-3 { background: #ffffff; }
.client-logo-shell-4 { background: #a7a7a7; }
.client-logo-shell-5 { background: #efefef; }
.client-logo-shell-6 { background: #ffffff; }
.client-logo-shell-7 { background: #efe1e4; }
.client-logo-shell-8 { background: #ececec; }

@keyframes clientDrift {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .clients-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .clients-copy.section-header {
    text-align: center;
    position: static;
  }

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .clients-showcase {
    padding-bottom: 70px;
  }

  .clients-grid {
    gap: 12px;
  }

  .client-card {
    border-radius: 14px;
    padding: 9px;
    animation-duration: 13s;
  }

  .client-logo-shell {
    border-radius: 10px;
    padding: 9px;
    margin-bottom: 7px;
  }

  .client-card h3 {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-card {
    animation: none;
  }
}

.support-slider {
  --support-card-width: 340px;
  --support-scroll-distance: 0px;
  --support-scroll-duration: 24s;
  position: relative;
  overflow: hidden;
  width: min(1200px, 90%);
  margin: 50px auto 0;
  padding: 20px 0 46px;
}

.support-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: supportLoop var(--support-scroll-duration) linear infinite;
  animation-play-state: paused;
}

@keyframes supportLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--support-scroll-distance)));
  }
}

.support-card {
  flex: 0 0 var(--support-card-width);
  min-width: var(--support-card-width);
  padding: 20px;
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,140,0,0.15);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);

  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  background: linear-gradient(135deg, rgba(255, 173, 67, 0.26), rgba(255, 110, 24, 0.2) 58%, rgba(255,255,255,0.04));
  border-color: rgba(255, 170, 60, 0.62);
  box-shadow: 0 18px 40px rgba(255, 111, 0, 0.2), 0 0 30px rgba(255, 145, 30, 0.18);
  transform: translateY(-8px);
  z-index: 1;
}

.support-card-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 170, 60, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 210, 140, 0.08);
}

.support-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #f5bf42;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.support-card-copy {
  min-width: 0;
  padding-top: 2px;
}

.support-card:hover .support-card-icon {
  background: rgba(255, 184, 77, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 223, 165, 0.12), 0 10px 20px rgba(255, 132, 0, 0.16);
}

.support-card:hover .support-card-icon svg {
  stroke: #ffd36b;
}

.support-card h4 {
  margin-bottom: 8px;
  font-size: 15px;
  white-space: nowrap;
}

.support-card p {
  font-size: 13px;
  color: #aaa;
  white-space: nowrap;
}

.support-slider.is-visible .support-track {
  animation-play-state: running;
}

.support-slider:hover .support-track {
  animation-play-state: paused;
}

.support-slider::before,
.support-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(28px, 5vw, 72px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.support-slider::before {
  left: 0;
  background: linear-gradient(to right, #0b0b0b, transparent);
}

.support-slider::after {
  right: 0;
  background: linear-gradient(to left, #0b0b0b, transparent);
}

.philosophy {
  padding: 120px 0 80px;
}

.support-title {
  text-align: center;
  width: min(1200px, 90%);
  margin: 60px auto 20px;
  font-weight: 600;
  color: #ccc;
}

.philo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.philo-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,140,0,0.15);
  border-radius: 18px;
  padding: 30px;
}

.philo-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,140,0,0.15);
  border-radius: 18px;
  padding: 30px;
}

.philo-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.philo-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.philo-header h3 {
  margin-bottom: 3px;
}

.philo-header p {
  color: #b9b9b9;
  font-size: 14px;
  line-height: 1.4;
}

.philo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 140, 0, 0.15);
  color: #ffb347;
}

.philo-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 12px;
  border-radius: 12px;

  background: linear-gradient(
    135deg,
    rgba(255,140,0,0.08),
    rgba(255,140,0,0.02)
  );

  border: 1px solid rgba(255,140,0,0.15);

  transition: 0.3s;
}

.philo-item .icon {
  width: 30px;
  height: 30px;

  border-radius: 8px;
  background: rgba(255,140,0,0.15);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;

  font-size: 13px;
}

.philo-item span {
  font-size: 14px;
  color: #ddd;
  line-height: 1.35;
}

.philo-icon.negative {
  background: rgba(255, 80, 80, 0.15);
  color: #ff5e5e;
}

.philo-negative {
  border: 1px solid rgba(255, 80, 80, 0.15);
}

.philo-item.negative {
  background: rgba(255,255,255,0.01);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 10px 0;
}

.philo-item.negative .icon {
  background: rgba(255, 80, 80, 0.15);
  color: #ff5e5e;
}

.philo-item.negative:hover {
  transform: translateX(5px);
  background: rgba(255, 80, 80, 0.05);
}

@media (max-width: 900px) {
  .philo-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  margin-top: 120px;
  padding-top: 60px;
  padding-bottom: 30px;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.footer-brand p {
  margin-top: 15px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
}

.footer-links h4,
.footer-highlight h4 {
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-highlight {
  background: linear-gradient(145deg, rgba(255, 150, 35, 0.14), rgba(255, 90, 0, 0.08));
  border: 1px solid rgba(255, 160, 45, 0.26);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
}

.footer-highlight p {
  font-size: 14px;
  color: #d4d4d4;
  line-height: 1.6;
}

.footer-highlight ul {
  list-style: none;
  margin: 16px 0 0;
}

.footer-highlight li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #e7e7e7;
  font-size: 13px;
}

.footer-highlight li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffae4a;
}

.footer-cta {
  display: inline-block;
  margin-top: 14px;

  background: linear-gradient(90deg, #ff8c00, #ff5e00);
  padding: 10px 18px;
  border-radius: 999px;

  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  transition: 0.3s;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: #666;
}

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
  }

}

@media(max-width: 768px) {
  .calendly-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}


/* ===== Firefox ===== */
* {
  scrollbar-width: thin; /* auto | thin | none */
  scrollbar-color: #ff5e00 #2e1900; /* thumb track */
}

/* ===== Chrome, Edge, Safari ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #2e1900;
}

::-webkit-scrollbar-thumb {
  background: #ff5e00;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff8c00;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .testi-scroll-wrapper {
    height: auto !important;
  }

  .testimonials {
    position: static;
    height: auto;
    overflow: visible;
    padding: 90px 0;
  }

  .testi-track-outer {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .testi-grid {
    width: max-content;
    transform: none !important;
    transition: none;
  }

  .testi-card {
    flex: 0 0 clamp(420px, 82vw, 560px);
    width: clamp(420px, 82vw, 560px);
    scroll-snap-align: start;
  }
}