/* ===== CSS Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 5%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 5%);
  --primary: hsl(24, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(0, 0%, 96%);
  --secondary-foreground: hsl(0, 0%, 5%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(0, 0%, 45%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(0, 0%, 90%);

  /* Hero/Dark sections */
  --hero-bg: hsl(0, 0%, 3%);
  --hero-foreground: hsl(0, 0%, 98%);
  --hero-muted: hsl(0, 0%, 70%);
  --section-dark: hsl(0, 0%, 5%);
  --section-dark-foreground: hsl(0, 0%, 98%);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(24, 100%, 50%) 0%,
    hsl(30, 100%, 55%) 100%
  );

  /* Shadows */
  --shadow-glow: 0 0 60px hsla(24, 100%, 50%, 0.3);
  --shadow-card: 0 4px 24px hsla(0, 0%, 0%, 0.1);

  /* Fonts */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Radius */
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}
.navbar-inner a img{
    height: 65px;
    width: auto;
}

.brands-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.brands-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.brands-track img {
  height: 70px;
  margin: 0 40px;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
.brands-slider:hover .brands-track {
  animation-play-state: paused;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-wrapper {
  overflow: hidden;
}

.testimonials-grid {
  display: flex;
  transition: transform 0.5s ease;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.prev {
  left: 0;
}
.next {
  right: 0;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.prev {
  left: -20px;
}

.next {
  right: -20px;
}

/* Hover Effect */
.prev:hover,
.next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile Adjust */
@media (max-width: 768px) {
  .prev {
    left: 5px;
  }
  .next {
    right: 5px;
  }
}

.testimonial-track {
  display: flex;
  gap: 15px; /* THIS is safe */
  transition: transform 0.5s ease;
}

.testimonial-viewport {
  overflow: hidden;
}

/* Desktop → 3 cards */
.testimonial-card {
  flex: 0 0 calc((100% - 30px) / 3);
}

/* Tablet → 2 cards */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 15px) / 2);
  }
}

/* Mobile → 1 card */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* ===== Utilities ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-primary {
  color: var(--primary);
}

.text-destructive {
  color: var(--destructive);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon {
  width: 1rem;
  height: 1rem;
}

.arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 40px hsla(24, 100%, 50%, 0.3);
}

.btn-hero:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 60px hsla(24, 100%, 50%, 0.5);
}

.btn-hero-xl {
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 40px hsla(24, 100%, 50%, 0.3);
}

.btn-hero-xl:hover {
  opacity: 0.9;
  transform: translateY(-4px);
  box-shadow: 0 0 60px hsla(24, 100%, 50%, 0.5);
}

.btn-cta {
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.5rem 2.5rem;
  border-radius: 0.75rem;
  width: 100%;
  box-shadow: 0 0 50px hsla(24, 100%, 50%, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-4px);
  box-shadow: 0 0 80px hsla(24, 100%, 50%, 0.6);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 40px hsla(24, 100%, 50%, 0.3);
  }
  50% {
    box-shadow: 0 0 60px hsla(24, 100%, 50%, 0.5);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-fade-up:nth-child(2) {
  animation-delay: 0.1s;
}
.animate-fade-up:nth-child(3) {
  animation-delay: 0.2s;
}
.animate-fade-up:nth-child(4) {
  animation-delay: 0.3s;
}
.animate-fade-up:nth-child(5) {
  animation-delay: 0.4s;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float.delay {
  animation-delay: 1s;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsla(0, 0%, 3%, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(0, 0%, 98%, 0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hero-foreground);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--hero-muted);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--hero-foreground);
}

.nav-links .btn {
  margin-left: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hero-foreground);
  position: relative;
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--hero-foreground);
  left: 0;
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--hero-bg);
  color: var(--hero-foreground);
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: hsla(24, 100%, 50%, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-bg-glow-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: hsla(24, 100%, 50%, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  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;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(24, 100%, 50%, 0.1);
  border: 1px solid hsla(24, 100%, 50%, 0.3);
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--hero-muted);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--hero-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Dashboard Mock */
.dashboard-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--hero-bg), transparent);
  z-index: 10;
  pointer-events: none;
}

.dashboard {
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 100%, 0.1),
    hsla(0, 0%, 100%, 0.02)
  );
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 98%, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid hsla(0, 0%, 98%, 0.1);
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: var(--destructive);
}
.dot.yellow {
  background: hsl(45, 100%, 50%);
}
.dot.green {
  background: hsl(142, 76%, 36%);
}

.dashboard-title {
  font-size: 0.875rem;
  color: var(--hero-muted);
}

.live-badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.dashboard-content {
  padding: 1.5rem;
  background: var(--section-dark);
  border-radius: 0.75rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat-mini {
  background: hsla(0, 0%, 98%, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--hero-muted);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hero-foreground);
}

.stat-value.text-primary {
  color: var(--primary);
}

.stat-change {
  font-size: 0.75rem;
  color: var(--hero-muted);
  margin-top: 0.25rem;
}

.stat-change.positive {
  color: hsl(142, 76%, 50%);
}

.chart-placeholder {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  gap: 0.5rem;
  background: hsla(0, 0%, 98%, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
}

.chart-placeholder .bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), hsla(24, 100%, 50%, 0.5));
  border-radius: 0.25rem;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.floating-badge.left {
  left: -1rem;
  top: 25%;
}

.floating-badge.right {
  right: -1rem;
  top: 33%;
}

.badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon.green {
  background: hsla(142, 76%, 50%, 0.2);
  color: hsl(142, 76%, 50%);
}

.badge-icon.primary {
  background: hsla(24, 100%, 50%, 0.2);
  color: var(--primary);
  font-weight: 700;
}

.badge-icon svg {
  width: 1rem;
  height: 1rem;
}

.badge-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.badge-value {
  font-weight: 700;
  color: var(--foreground);
}

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.light {
  color: var(--hero-foreground);
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.section-header.light .section-description {
  color: var(--hero-muted);
}

/* ===== Social Proof Section ===== */
.social-proof {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top,
    hsla(24, 100%, 50%, 0.05),
    transparent 50%
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: hsla(0, 0%, 100%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 0%, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: hsla(24, 100%, 50%, 0.5);
  box-shadow: 0 0 30px hsla(24, 100%, 50%, 0.1);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsla(24, 100%, 50%, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--foreground);
}

.stat-number span {
  color: var(--primary);
}

.stat-title {
  font-weight: 600;
  margin-top: 0.5rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.brands-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.brands-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  opacity: 0.6;
}

.brands-grid span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.brands-grid span:hover {
  color: var(--foreground);
}

/* ===== This Is For You Section ===== */
.this-is-for-you {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}

.bg-glow.top-right {
  top: 0;
  right: 0;
  background: hsla(24, 100%, 50%, 0.05);
}

.bg-glow.bottom-left {
  bottom: 0;
  left: 0;
  background: hsla(24, 100%, 50%, 0.05);
}

.bg-glow.red {
  background: hsla(0, 84%, 60%, 0.1);
}

.bg-glow.primary {
  background: hsla(24, 100%, 50%, 0.1);
}

.bg-glow.top-left {
  top: 0;
  left: 25%;
}

.bg-glow.bottom-right {
  bottom: 0;
  right: 25%;
}

.bg-glow.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
}

.bg-glow.left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.bg-glow.right {
  bottom: 0;
  right: 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s;
}

.check-item:hover {
  border-color: hsla(24, 100%, 50%, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.check-item.full-width {
  grid-column: 1 / -1;
}

.check-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsla(24, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}

.check-item:hover .check-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.check-icon svg {
  width: 1rem;
  height: 1rem;
}

.check-item p {
  font-weight: 500;
  color: var(--foreground);
}

.solution-box {
  text-align: center;
  background: linear-gradient(
    135deg,
    hsla(24, 100%, 50%, 0.1),
    hsla(24, 100%, 50%, 0.05)
  );
  border: 1px solid hsla(24, 100%, 50%, 0.3);
  border-radius: 1rem;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.solution-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.solution-box p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Problem Section ===== */
.problem-section {
  position: relative;
  padding: 5rem 0;
  background: var(--section-dark);
  color: var(--section-dark-foreground);
  overflow: hidden;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: hsla(0, 84%, 60%, 0.05);
  border: 1px solid hsla(0, 84%, 60%, 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s;
}

.problem-item:hover {
  background: hsla(0, 84%, 60%, 0.1);
}

.problem-item.full-width {
  grid-column: 1 / -1;
}

.problem-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsla(0, 84%, 60%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--destructive);
  transition: background 0.3s;
}

.problem-item:hover .problem-icon {
  background: hsla(0, 84%, 60%, 0.3);
}

.problem-icon svg {
  width: 1rem;
  height: 1rem;
}

.problem-item p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--section-dark-foreground);
}

/* ===== Process Section ===== */
.process-section {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: hsla(24, 100%, 50%, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsla(24, 100%, 50%, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.step-card:hover .step-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.step-features span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 9999px;
}

/* ===== Case Studies Section ===== */
.case-studies {
  position: relative;
  padding: 5rem 0;
  background: var(--section-dark);
  color: var(--section-dark-foreground);
  overflow: hidden;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.case-card {
  position: relative;
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 98%, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.case-card:hover {
  border-color: hsla(24, 100%, 50%, 0.5);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.case-header h3 {
  font-size: 1.5rem;
  color: var(--hero-foreground);
}

.case-industry {
  font-size: 0.875rem;
  color: var(--hero-muted);
}

.case-increase {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(142, 76%, 50%);
  font-weight: 600;
}

.case-increase svg {
  width: 1rem;
  height: 1rem;
}

.case-result {
  margin-bottom: 1.5rem;
}

.result-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
}

.result-desc {
  font-size: 0.875rem;
  color: var(--hero-muted);
  margin-top: 0.5rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(0, 0%, 98%, 0.1);
  text-align: center;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hero-foreground);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--hero-muted);
}

/* Testimonials */
.testimonials {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 98%, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: hsla(24, 100%, 50%, 0.3);
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: hsla(24, 100%, 50%, 0.5);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--hero-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsla(24, 100%, 50%, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.author-name {
  font-weight: 600;
  color: var(--hero-foreground);
}

.author-role {
  font-size: 0.875rem;
  color: var(--hero-muted);
}

/* ===== Qualification Section ===== */
.qualification {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s;
}

.qual-item:hover {
  border-color: hsla(24, 100%, 50%, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.qual-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsla(24, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}

.qual-item:hover .qual-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.qual-icon svg {
  width: 1rem;
  height: 1rem;
}

.qual-item p {
  font-weight: 500;
}

.qual-cta-box {
  text-align: center;
  background: linear-gradient(
    135deg,
    hsla(24, 100%, 50%, 0.1),
    hsla(24, 100%, 50%, 0.05)
  );
  border: 1px solid hsla(24, 100%, 50%, 0.3);
  border-radius: 1rem;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.qual-cta-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.qual-cta-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* ===== Why Us Section ===== */
.why-us {
  position: relative;
  padding: 5rem 0;
  background: var(--section-dark);
  color: var(--section-dark-foreground);
  overflow: hidden;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.reason-card {
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 98%, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.reason-card:hover {
  border-color: hsla(24, 100%, 50%, 0.5);
}

.reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsla(24, 100%, 50%, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.reason-card:hover .reason-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.reason-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.reason-card h3 {
  font-size: 1.25rem;
  color: var(--hero-foreground);
  margin-bottom: 0.75rem;
}

.reason-card p {
  color: var(--hero-muted);
}

.why-us-statement {
  text-align: center;
  margin-top: 4rem;
}

.why-us-statement p {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hero-foreground);
}

/* ===== Final CTA Section ===== */
.final-cta {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.cta-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
}

.cta-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.cta-card {
  background: linear-gradient(
    135deg,
    hsla(24, 100%, 50%, 0.1),
    hsla(24, 100%, 50%, 0.05)
  );
  border: 1px solid hsla(24, 100%, 50%, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
}

.cta-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-card-header p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.cta-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== Footer ===== */
.footer {
  background: var(--section-dark);
  color: var(--section-dark-foreground);
  border-top: 1px solid hsla(0, 0%, 98%, 0.1);
}

.footer .container {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: block;
}

.footer-brand > p {
  color: var(--hero-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsla(0, 0%, 98%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-muted);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links h4,
.footer-contact h4 {
  font-weight: 700;
  color: var(--hero-foreground);
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--hero-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hero-muted);
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--hero-muted);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid hsla(0, 0%, 98%, 0.1);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--hero-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--hero-muted);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-studies-grid,
  .testimonials-grid,
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-links {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background: var(--hero-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid hsla(0, 0%, 98%, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links .btn {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 2fr);
  }

  .checklist-grid,
  .problems-grid,
  .steps-grid,
  .qual-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-grid,
  .testimonials-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-badge {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .why-us-statement p {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-cta .btn {
    width: 100%;
  }

  .solution-box,
  .qual-cta-box,
  .cta-card {
    padding: 1.5rem;
  }

  .case-metrics {
    gap: 0.5rem;
  }
}
