.industry-main {
  overflow-x: hidden;
}

.ind-hero {
  position: relative;
  max-width: 1280px;
  margin: 160px auto;
  padding: 0 20px;
  text-align: center;
}

.ind-hero-glow,
.ind-section.grid-bg::after,
.ind-how-glow,
.ind-cta-wrap::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(255, 79, 1, 0.08), transparent 70%);
}

.ind-hero-glow {
  top: -60px;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translateX(-50%);
}

.ind-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
  padding: 8px 20px;
  border: 1px solid rgba(255, 79, 1, 0.2);
  border-radius: 999px;
  background: rgba(255, 79, 1, 0.1);
  animation: indSlide 0.6s ease-out both;
}

@media (max-width: 600px) {
  .ind-pill {
    gap: 10px;
  max-width: 300px;
  width: 100%;
  }
}

.ind-pill .ball {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4f01;
  animation: indPulse 2s ease-in-out infinite;
}

.ind-pill span {
  color: #ff4f01;
  font-family: var(--font-space);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.ind-hero h1 {
  margin: 24px auto;
  color: #fff;
  font-family: var(--font-space);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  animation: indSlide 0.6s ease-out 0.05s both;
}

.ind-hero h1 span,
.ind-gradient {
  background: linear-gradient(135deg, #ff4f01, #ff6b35);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ind-hero > p,
.ind-section > p,
.ind-how > p {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-space);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.7;
}

.ind-hero > p {
  animation: indSlide 0.6s ease-out 0.1s both;
}

.ind-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 32px auto 0;
  animation: indFade 0.5s ease-out 0.2s both;
}

.ind-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 44px;
  padding: 0 18px;
  border: 2px solid #ff4f01;
  border-radius: 999px;
  color: #ff4f01;
  font-family: var(--font-space);
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ind-outline:hover {
  color: #ff6b35;
  border-color: #ff6b35;
  transform: scale(1.05);
}

.ind-carousel {
  position: relative;
  max-width: 576px;
  margin: 24px auto 0;
  overflow: hidden;
  animation: indSlide 0.6s ease-out 0.3s both;
}

.ind-carousel::before,
.ind-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 64px;
  height: 100%;
  pointer-events: none;
}

.ind-carousel::before {
  left: 0;
  background: linear-gradient(to right, #000 70%, transparent 100%);
}

.ind-carousel::after {
  right: 0;
  background: linear-gradient(to left, #000 70%, transparent 100%);
}

.ind-carousel-track {
  display: flex;
  width: max-content;
  animation: indCarousel 20s linear infinite;
}

.ind-carousel-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 32px;
  color: #fff;
  font-family: var(--font-space);
  font-size: 14px;
  white-space: nowrap;
}

.ind-carousel-item svg {
  width: 20px;
  height: 20px;
  stroke: #ff4f01;
}

.ind-section,
.ind-how,
.ind-cta-wrap,
.ind-related {
  position: relative;
  max-width: 1200px;
  margin: 96px auto;
  padding: 0 16px;
}

.ind-section.grid-bg::before,
.ind-how::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ind-section.grid-bg::after {
  top: 20%;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translateX(-50%);
}

.ind-section > .subtext,
.ind-how > .subtext {
  margin-left: auto;
  margin-right: auto;
}

.ind-section h2,
.ind-how h2 {
  margin: 16px auto 16px;
  color: #fff;
  font-family: var(--font-space);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.02em;
}

.ind-section > p,
.ind-how > p {
  max-width: 700px;
  margin: 20px auto 48px;
  text-align: center;
}

.ind-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "a0 a0 a1" "a2 a3 a3";
  gap: 16px;
}

.ind-area-0 { grid-area: a0; }
.ind-area-1 { grid-area: a1; }
.ind-area-2 { grid-area: a2; }
.ind-area-3 { grid-area: a3; }

.ind-card,
.ind-list-card,
.ind-package-card,
.ind-auto-card,
.ind-proof-card,
.ind-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: #111110;
}

.ind-card {
  min-height: 280px;
  height: 100%;
  padding: 24px 24px 72px;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.ind-card.large {
  min-height: 340px;
  padding: 32px 32px 80px;
}

.ind-card:hover,
.ind-list-card:hover,
.ind-package-card:hover,
.ind-auto-card:hover,
.ind-proof-card:hover {
  border-color: rgba(255, 79, 1, 0.25);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.ind-card-glow,
.ind-card::after,
.ind-list-card::after,
.ind-package-card::after,
.ind-auto-card::after,
.ind-proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 79, 1, 0.07), transparent 60%);
  transition: opacity 0.5s ease;
}

.ind-card-border,
.ind-card::before,
.ind-list-card::before,
.ind-package-card::before,
.ind-auto-card::before,
.ind-proof-card::before,
.ind-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 79, 1, 0.25), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 0.3s ease;
}

.ind-card:hover .ind-card-glow,
.ind-card:hover::after,
.ind-list-card:hover::after,
.ind-package-card:hover::after,
.ind-auto-card:hover::after,
.ind-proof-card:hover::after,
.ind-card:hover .ind-card-border,
.ind-card:hover::before,
.ind-list-card:hover::before,
.ind-package-card:hover::before,
.ind-auto-card:hover::before,
.ind-proof-card:hover::before {
  opacity: 1;
}

.ind-card-body,
.ind-list-content,
.ind-auto-card > *,
.ind-proof-card > *,
.ind-cta > * {
  position: relative;
  z-index: 1;
}

.ind-card-body {
  display: flex;
  flex-direction: column;
  min-height: 184px;
  gap: 16px;
}

.ind-card.large .ind-card-body {
  min-height: 228px;
}

.ind-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ind-badge,
.ind-list-badge,
.ind-green-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  padding: 4px 12px;
  border: 1px solid rgba(255, 79, 1, 0.145);
  border-radius: 6px;
  background: rgba(255, 79, 1, 0.082);
  color: #ff4f01;
  font-family: var(--font-space);
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
}

.ind-green-badge {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.ind-pain-badge {
  gap: 6px;
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.ind-pain-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f87171;
}

.ind-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 79, 1, 0.188);
  border-radius: 14px;
  background: rgba(255, 79, 1, 0.082);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ind-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #ff4f01;
  animation: indWiggle 4s ease-in-out infinite;
}

.ind-card:hover .ind-icon-box,
.ind-auto-card:hover .ind-icon-box {
  transform: scale(1.05);
  box-shadow: 0 8px 24px -8px rgba(255, 79, 1, 0.5);
}

.ind-card h3,
.ind-auto-card h3,
.ind-proof-card h3,
.ind-list-card h3,
.ind-package-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-space);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: transform 0.3s ease;
}

.ind-card.large h3 {
  font-size: 28px;
}

.ind-card:hover h3,
.ind-auto-card:hover h3,
.ind-proof-card:hover h3,
.ind-package-card:hover h3 {
  transform: translateX(2px);
}

.ind-card p,
.ind-package-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-space);
  font-size: 13px;
  line-height: 1.7;
}

.ind-card.large p {
  max-width: 380px;
  font-size: 15px;
}

.ind-visual {
  display: flex;
  align-items: center;
  min-height: 116px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.5);
}

.ind-pain-visual {
  padding: 14px;
}

.ind-card-arrow {
  position: absolute;
  top: calc(100% + 12px);
  right: 20px;
  bottom: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.4s ease, transform 0.4s ease;
}

.ind-card.large .ind-card-arrow {
  right: 28px;
}

.ind-auto-card .ind-card-arrow {
  top: auto;
  right: 20px;
  bottom: 20px;
}

.ind-auto-card.large .ind-card-arrow {
  right: 28px;
  bottom: 28px;
}

.ind-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.5);
  transition: stroke 0.4s ease, transform 0.4s ease;
}

.ind-card:hover .ind-card-arrow,
.ind-auto-card:hover .ind-card-arrow {
  background: rgba(255, 79, 1, 0.18);
  transform: scale(1.1);
}

.ind-card:hover .ind-card-arrow svg,
.ind-auto-card:hover .ind-card-arrow svg {
  stroke: #ff4f01;
  transform: translateX(2px);
}

.ind-lead-visual,
.ind-flow-visual,
.ind-booking-visual,
.ind-bars-visual,
.ind-pain-missed,
.ind-pain-browser,
.ind-pain-leaks,
.ind-pain-reviews {
  width: 100%;
}

.ind-pain-missed,
.ind-pain-leaks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ind-pain-missed div,
.ind-pain-leaks div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.3;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ind-card:hover .ind-pain-missed div,
.ind-card:hover .ind-pain-leaks div {
  opacity: 1;
  transform: translateX(0);
}

.ind-pain-missed div:nth-child(2) {
  border-color: rgba(255, 79, 1, 0.082);
  background: rgba(255, 79, 1, 0.03);
  transition-delay: 0.15s;
}

.ind-pain-missed i,
.ind-pain-leaks i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: indPulse 2s ease-in-out infinite;
}

.ind-pain-missed div:nth-child(2) i,
.ind-pain-leaks div:not(:nth-child(2)) i {
  background: rgba(255, 79, 1, 0.5);
  animation: none;
}

.ind-pain-missed span,
.ind-pain-leaks span {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-space);
  font-size: 9px;
}

.ind-pain-missed div:nth-child(2) span {
  color: #ff4f01;
}

.ind-pain-leaks div:nth-child(2) {
  opacity: 0.2;
  transition-delay: 0.1s;
}

.ind-card:hover .ind-pain-leaks div:nth-child(2) {
  opacity: 0.4;
}

.ind-pain-leaks div:nth-child(3) {
  transition-delay: 0.2s;
}

.ind-pain-leaks em {
  margin-left: auto;
  color: rgba(248, 113, 113, 0.6);
  font-family: var(--font-space);
  font-size: 8px;
  font-style: normal;
}

.ind-pain-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.ind-card:hover .ind-pain-browser {
  opacity: 1;
}

.ind-pain-browser section {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.ind-pain-browser section i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.6;
}

.ind-pain-browser section i:nth-child(1) { background: #ff4f01; }
.ind-pain-browser section i:nth-child(2) { background: #ff6b35; }
.ind-pain-browser section i:nth-child(3) { background: #ffede6; }

.ind-pain-browser section b {
  flex: 1;
  height: 10px;
  margin-left: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.ind-pain-browser div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.ind-pain-browser div span {
  display: block;
  height: 8px;
  border-radius: 2px;
}

.ind-pain-browser div span:nth-child(1) {
  width: 75%;
  background: rgba(255, 255, 255, 0.04);
}

.ind-pain-browser div span:nth-child(2) {
  width: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.ind-pain-browser em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-space);
  font-size: 8px;
  font-style: normal;
  text-align: center;
}

.ind-card:hover .ind-pain-browser em {
  animation: indPainFade 2s ease-in-out infinite;
}

.ind-pain-reviews > div {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-bottom: 8px;
}

.ind-pain-reviews > div span {
  flex: 1;
  height: var(--base);
  border-radius: 2px;
  background: rgba(255, 79, 1, 0.145);
  transition: height 0.5s ease;
  transition-delay: var(--d);
}

.ind-card:hover .ind-pain-reviews > div span {
  height: var(--h);
}

.ind-pain-reviews p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin: 0;
}

.ind-card.large .ind-pain-reviews p,
.ind-card .ind-pain-reviews p {
  width: 100%;
  max-width: none;
}

.ind-pain-reviews p span,
.ind-pain-reviews p b {
  font-family: var(--font-space);
  font-size: 9px;
  font-weight: 400;
}

.ind-pain-reviews p span {
  color: rgba(255, 255, 255, 0.4);
}

.ind-pain-reviews p b {
  color: rgba(255, 79, 1, 0.5);
}

.ind-lead-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ind-lead-visual div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.3;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--d, 0s);
}

.ind-card:hover .ind-lead-visual div,
.ind-step.active .ind-lead-visual div {
  opacity: 1;
  transform: translateX(0);
}

.ind-lead-visual b,
.ind-lead-visual i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 6px;
  background: rgba(255, 79, 1, 0.125);
}

.ind-lead-visual i {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  margin-left: auto;
  background: #ff4f01;
}

.ind-lead-visual svg {
  width: 14px;
  height: 14px;
  stroke: #ff4f01;
}

.ind-lead-visual i svg {
  width: 10px;
  height: 10px;
  stroke: #000;
  stroke-width: 3;
}

.ind-lead-visual strong,
.ind-lead-visual em {
  display: block;
  font-family: var(--font-space);
  font-style: normal;
}

.ind-lead-visual strong {
  color: #fff;
  font-size: 11px;
}

.ind-lead-visual em {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.ind-flow-visual > div {
  display: flex;
  align-items: center;
}

.ind-flow-visual span {
  flex: 1;
  padding: 10px 8px;
  border: 1px solid rgba(255, 79, 1, 0.188);
  border-radius: 8px;
  background: rgba(255, 79, 1, 0.082);
  color: #ff4f01;
  font-family: var(--font-space);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition-delay: var(--d, 0s);
}

.ind-flow-visual i {
  width: 12px;
  height: 2px;
  background: #ff4f01;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  transition-delay: var(--d, 0s);
}

.ind-card:hover .ind-flow-visual span,
.ind-step.active .ind-flow-visual span {
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(255, 79, 1, 0.3);
}

.ind-card:hover .ind-flow-visual i,
.ind-step.active .ind-flow-visual i {
  transform: scaleX(1);
}

.ind-flow-visual p,
.ind-booking-visual p {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: none;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-space);
  font-size: 10px;
  opacity: 0;
  transition: opacity 0.3s ease 0.6s;
}

.ind-flow-visual p b {
  width: 14px;
  height: 14px;
  border: 2px solid #ff4f01;
  border-top-color: transparent;
  border-radius: 50%;
  animation: indSpin 2s linear infinite;
}

.ind-card:hover .ind-flow-visual p,
.ind-step.active .ind-flow-visual p,
.ind-card:hover .ind-booking-visual p,
.ind-step.active .ind-booking-visual p {
  opacity: 1;
}

.ind-booking-visual div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 10px;
}

.ind-booking-visual span {
  padding: 6px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-space);
  font-size: 8px;
  text-align: center;
}

.ind-booking-visual .hot {
  color: #ff4f01;
  border-color: rgba(255, 79, 1, 0.25);
  background: rgba(255, 79, 1, 0.14);
  animation: indGlowCell 1.5s ease-in-out infinite;
}

.ind-booking-visual p {
  border: 1px solid rgba(255, 79, 1, 0.145);
  background: rgba(255, 79, 1, 0.082);
  color: #ff4f01;
  font-weight: 600;
}

.ind-booking-visual p i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4f01;
  animation: indPulse 2s ease-in-out infinite;
}

.ind-bars-visual > div {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 12px;
}

.ind-bars-visual > div span {
  flex: 1;
  height: 0;
  border-radius: 3px;
  background: rgba(255, 79, 1, 0.22);
  transition: height 0.5s ease-out;
  transition-delay: var(--d, 0s);
}

.ind-bars-visual > div span:last-child {
  background: linear-gradient(180deg, #ff4f01, #ff6b35);
}

.ind-card:hover .ind-bars-visual > div span,
.ind-step.active .ind-bars-visual > div span {
  height: var(--h);
}

.ind-bars-visual section {
  display: flex;
  gap: 8px;
}

.ind-bars-visual section p {
  flex: 1;
  max-width: none;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s;
}

.ind-card:hover .ind-bars-visual section p,
.ind-step.active .ind-bars-visual section p {
  opacity: 1;
}

.ind-bars-visual strong,
.ind-bars-visual em {
  display: block;
  font-family: var(--font-space);
  font-style: normal;
}

.ind-bars-visual strong {
  color: #ff4f01;
  font-size: 14px;
}

.ind-bars-visual em {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.ind-two-grid,
.ind-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.ind-list-card,
.ind-package-card {
  padding: 32px;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.ind-list-card.muted .ind-list-badge {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}

.ind-list-card h3,
.ind-package-card h3 {
  margin: 0 0 20px;
}

.ind-list-card .ind-list-badge {
  margin-bottom: 20px;
}

.ind-package-card > .ind-list-content > p {
  max-width: none;
  margin: -10px 0 24px;
}

.ind-package-card .ind-list-badge {
  margin-bottom: 16px;
}

.ind-package-card h3 {
  margin-bottom: 8px;
}

.ind-package-card > .ind-list-content > p {
  margin: 0 0 24px;
}

.ind-list-card ul,
.ind-package-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ind-list-card li,
.ind-package-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-space);
  font-size: 14px;
  line-height: 1.6;
}

.ind-list-card.muted li {
  color: rgba(255, 255, 255, 0.4);
}

.ind-list-card li i,
.ind-package-card li i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(255, 79, 1, 0.125);
}

.ind-list-card.muted li i {
  background: rgba(255, 255, 255, 0.05);
}

.ind-list-card li svg,
.ind-package-card li svg {
  width: 12px;
  height: 12px;
  stroke: #ff4f01;
  stroke-width: 2.5;
}

.ind-list-card.muted li svg {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
}

.ind-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.ind-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.ind-package-card.accent {
  border-color: rgba(255, 79, 1, 0.125);
}

.ind-how {
  max-width: 1300px;
  margin: 24px auto 96px;
  padding: 32px 48px;
  overflow: hidden;
}

.ind-how-glow {
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
}

.ind-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 48px;
}

.ind-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.ind-dots button.active {
  width: 32px;
  background: #ff4f01;
}

.ind-step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ind-step {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px;
  border: 1px solid transparent;
  border-radius: 28px;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.ind-step.active {
  border-color: rgba(255, 79, 1, 0.188);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 40px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(17.5px);
}

.ind-step > div {
  flex: 1;
}

.ind-step-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.ind-step-top span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.ind-step.active .ind-step-top span {
  border-color: rgba(255, 79, 1, 0.25);
  background: rgba(255, 79, 1, 0.125);
}

.ind-step-top svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.5);
}

.ind-step.active .ind-step-top svg {
  stroke: #ff4f01;
}

.ind-step-top b {
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-space);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.ind-step.active .ind-step-top b {
  color: #ff4f01;
}

.ind-step h3 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-space);
  font-size: 1.75rem;
  letter-spacing: -0.01em;
}

.ind-step.active h3 {
  color: #fff;
}

.ind-step > div > p {
  max-width: 400px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-space);
  line-height: 1.7;
}

.ind-step.active > div > p {
  color: rgba(255, 255, 255, 0.7);
}

.ind-step aside {
  width: 320px;
  flex: 0 0 320px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.ind-step.active aside {
  opacity: 1;
}

.ind-step-visual {
  width: 100%;
}

.ind-step-visual.strategy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ind-step-visual.strategy p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--d);
}

.ind-step.active .ind-step-visual.strategy p {
  opacity: 1;
  transform: translateX(0);
}

.ind-step-visual.strategy p > svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #ff4f01;
}

.ind-step-visual.strategy span {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-space);
  font-size: 12px;
}

.ind-step-visual.strategy b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 50%;
  background: #ff4f01;
  transform: scale(1);
}

.ind-step.active .ind-step-visual.strategy b {
  animation: indStepCheckPop 0.3s ease both;
}

.ind-step-visual.strategy b svg {
  width: 10px;
  height: 10px;
  stroke: #000;
  stroke-width: 3;
}

.ind-step-visual.build {
  position: relative;
  width: 100%;
  height: 130px;
}

.ind-step-visual.build > i {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ff4f01, transparent);
  opacity: 0;
}

.ind-step.active .ind-step-visual.build > i {
  animation: indStepScan 2s linear infinite;
}

.ind-step-visual.build > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 100%;
  padding: 10px;
}

.ind-step-visual.build > div span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-space);
  font-size: 10px;
}

.ind-step.active .ind-step-visual.build > div span {
  animation: indStepBuildPulse 1.8s ease-in-out infinite;
  animation-delay: var(--d);
}

.ind-step-visual.build b {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #ff4f01;
  color: #000;
  font-family: var(--font-space);
  font-size: 11px;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease 0.6s, transform 0.4s ease 0.6s;
}

.ind-step.active .ind-step-visual.build b {
  opacity: 1;
  transform: scale(1);
}

.ind-step-visual.build b svg {
  width: 12px;
  height: 12px;
  stroke: #000;
}

.ind-step-visual.build b span {
  color: #000;
}

.ind-step-visual.automate > div {
  display: flex;
  align-items: center;
}

.ind-step-visual.automate span {
  flex: 1;
  padding: 10px 8px;
  border: 1px solid rgba(255, 79, 1, 0.2);
  border-radius: 10px;
  background: rgba(255, 79, 1, 0.08);
  color: #ff4f01;
  font-family: var(--font-space);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.ind-step.active .ind-step-visual.automate > div span {
  animation: indStepNodePulse 0.5s ease both;
  animation-delay: var(--d);
}

.ind-step-visual.automate i {
  width: 16px;
  height: 2px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #ff4f01, #ff6b35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  transition-delay: var(--d);
}

.ind-step.active .ind-step-visual.automate i {
  transform: scaleX(1);
}

.ind-step-visual.automate p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-space);
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.3s ease 0.8s;
}

.ind-step.active .ind-step-visual.automate p {
  opacity: 1;
}

.ind-step-visual.automate p b {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 2px solid #ff4f01;
  border-top-color: transparent;
  border-radius: 50%;
  animation: indSpin 2s linear infinite;
}

.ind-step-visual.automate p span {
  display: inline;
  flex: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 400;
  text-align: left;
}

.ind-step-visual.grow > div {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 12px;
}

.ind-step-visual.grow > div span {
  flex: 1;
  height: 0;
  border-radius: 4px;
  background: rgba(255, 79, 1, 0.22);
  transition: height 0.5s ease-out;
  transition-delay: var(--d);
}

.ind-step-visual.grow > div span:last-child {
  background: linear-gradient(180deg, #ff4f01, #cc3f00);
}

.ind-step.active .ind-step-visual.grow > div span {
  height: var(--h);
}

.ind-step-visual.grow section {
  display: flex;
  gap: 10px;
}

.ind-step-visual.grow section p {
  flex: 1;
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease 0.6s;
}

.ind-step.active .ind-step-visual.grow section p {
  opacity: 1;
}

.ind-step-visual.grow strong,
.ind-step-visual.grow em {
  display: block;
  font-family: var(--font-space);
  font-style: normal;
}

.ind-step-visual.grow strong {
  color: #ff4f01;
  font-size: 16px;
}

.ind-step-visual.grow em {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.ind-auto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "a0 a0 a1" "a2 a3 a3";
  gap: 16px;
}

.ind-auto-area-0 { grid-area: a0; }
.ind-auto-area-1 { grid-area: a1; }
.ind-auto-area-2 { grid-area: a2; }
.ind-auto-area-3 { grid-area: a3; }

.ind-auto-card {
  min-height: 200px;
  height: 100%;
  padding: 24px 24px 72px;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.ind-auto-card.large {
  min-height: 240px;
  padding: 32px 32px 80px;
}

.ind-auto-card .ind-icon-box {
  margin-bottom: 16px;
}

.ind-auto-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.ind-auto-card.large h3 {
  font-size: 22px;
}

.ind-auto-card p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-space);
  font-size: 13px;
  line-height: 1.7;
}

.ind-auto-card.large p {
  font-size: 15px;
}

.ind-proof-grid {
  max-width: 900px;
  margin: 0 auto;
}

.ind-proof-card {
  padding: 32px;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.ind-proof-line {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4f01, transparent);
  opacity: 0.4;
}

.ind-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ind-proof-card h3 {
  margin-bottom: 4px;
}

.ind-proof-card .geo {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-space);
  font-size: 14px;
}

.ind-proof-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 6px;
  color: #ff4f01;
  font-family: var(--font-space);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ind-proof-card strong::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 79, 1, 0.5);
}

.ind-proof-card p {
  margin: 0;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-space);
  font-size: 14px;
  line-height: 1.7;
}

.ind-cta-wrap::before {
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translate(-50%, -50%);
}

.ind-cta {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.ind-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(255, 79, 1, 0.08), transparent 60%);
}

.ind-cta h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-space);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ind-cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-space);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.7;
}

.ind-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 96px;
}

.ind-related p {
  margin: 0 0 16px;
  color: rgba(255, 79, 1, 0.56);
  font-family: var(--font-space);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ind-related a {
  display: block;
  margin-bottom: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-space);
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ind-related a:hover {
  color: #ff4f01;
  border-color: rgba(255, 79, 1, 0.145);
  transform: translateX(4px);
}

.ind-related a.orange {
  color: #ff4f01;
  border-color: transparent;
  background: transparent;
}

.ind-faq {
  margin-top: 96px;
}

@keyframes indSlide {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes indFade {
  from { opacity: 0; transform: translateY(-20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes indPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.25); }
}

@keyframes indPainFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes indCarousel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes indWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
}

@keyframes indSpin {
  to { transform: rotate(360deg); }
}

@keyframes indGlowCell {
  0%, 100% { background: rgba(255, 79, 1, 0.12); }
  50% { background: rgba(255, 79, 1, 0.27); }
}

@keyframes indStepCheckPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes indStepScan {
  0% { opacity: 0.8; transform: translateX(0); }
  100% { opacity: 0.3; transform: translateX(320px); }
}

@keyframes indStepBuildPulse {
  0%, 100% {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
  }
  50% {
    background: rgba(255, 79, 1, 0.145);
    border-color: rgba(255, 79, 1, 0.25);
  }
}

@keyframes indStepNodePulse {
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 79, 1, 0.25);
  }
}

@media (max-width: 767px) {
  .ind-hero {
    margin: 120px auto 96px;
  }

  .ind-actions {
    flex-direction: column;
  }

  .ind-carousel::before,
  .ind-carousel::after {
    width: 24px;
  }

  .ind-bento,
  .ind-auto-grid,
  .ind-package-grid,
  .ind-two-grid,
  .ind-proof-grid,
  .ind-related {
    display: flex;
    flex-direction: column;
  }

  .ind-card,
  .ind-card.large,
  .ind-auto-card,
  .ind-auto-card.large {
    min-height: 280px;
    padding: 24px 24px 72px;
  }

  .ind-how {
    margin: 48px auto;
    padding: 32px 16px;
  }

  .ind-step {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
  }

  .ind-step aside {
    width: 100%;
    flex-basis: auto;
  }
}
